Skip to content

feat(connectors): add OpenSearch sink connector - #3873

Open
mattp5657 wants to merge 9 commits into
apache:masterfrom
mattp5657:feat/connectors-opensearch-sink
Open

feat(connectors): add OpenSearch sink connector#3873
mattp5657 wants to merge 9 commits into
apache:masterfrom
mattp5657:feat/connectors-opensearch-sink

Conversation

@mattp5657

@mattp5657 mattp5657 commented Aug 12, 2026

Copy link
Copy Markdown
Contributor

Which issue does this PR address?

Closes #3504

Rationale

Iggy connectors ship sinks for several external systems but not for OpenSearch, a widely used search/analytics backend. This adds one, modeled on the existing elasticsearch_sink shape but closing a retry gap that sink still has (see Known trade-offs).

What changed?

Adds core/connectors/sinks/opensearch_sink/, following the sink lifecycle end to end:

  • open(): validates config (URL shape, credential pairing, document_id_field constraints), then retry_on_open-wraps a cluster health check, an index-exists check, and, when create_index_if_not_exists (default true), index creation with an optional custom mapping. Capped at max_open_retries with exponential backoff and jitter (shared retry helpers).
  • consume(): batches incoming messages into batch_size chunks, builds an iggy_*-enriched document per message (hashed or field-derived _id), and hands each chunk to index_chunk.
  • index_chunk(): POSTs a _bulk request and loops up to max_retries with the same backoff. _bulk answers 200 even when individual documents fail, so each response is parsed per item rather than trusting the top-level status: permanent failures (4xx, e.g. a mapping conflict) are recorded immediately, while transient ones (429/5xx) shrink the pending set to just the rejected documents and get resent, so a partial rejection under load doesn't re-index or lose the rest of the chunk. Counts from earlier attempts are merged into the outcome so a later failure doesn't erase already-indexed documents from the tally.
  • close(): drops the client, no special teardown.

Integration tests (core/integration/tests/connectors/opensearch/) run against a real container (testcontainers-modules, reused across tests via ReuseDirective::Always, per-test-unique index names for isolation), covering the happy path plus a static mapping conflict, a missing index with index-creation disabled, and confirming a failing chunk doesn't block chunks queued behind it.

Credentials: HTTP Basic auth only (username/password, both-or-neither validated at config time); password is a SecretString, never logged or serialized. AWS SigV4 (AWS-managed OpenSearch / Serverless) is not supported.

Known trade-offs, deliberately out of scope here, verified against current master:

  • elasticsearch_sink has the same gap this PR fixes for OpenSearch: bulk_index_documents (elasticsearch_sink/src/lib.rs:205-219) tallies per-item _bulk failures into errors_count but never retries the transient subset (e.g. 429 es_rejected_execution_exception). Worth a follow-up issue rather than folding into this PR.
  • The connectors runtime discards a sink's consume() return value: core/connectors/runtime/src/sink.rs:740-748 invokes the FFI consume callback as a bare statement, never binding its i32 result, so process_messages always returns Ok. Combined with offsets auto-committing at poll time (sink.rs:522), a plugin-level failure never reaches connector status, last_error, or /stats, and the batch is never redelivered. Pre-existing, repo-wide, affects every sink.
  • meilisearch_sink (lib.rs:451-454) and elasticsearch_sink (lib.rs:319-328) both silently drop iggy_headers/_iggy_headers: BTreeMap<HeaderKey, HeaderValue> can't serialize as a JSON object (serde_json requires string keys), and both sinks swallow that error via if let Ok(...) instead of surfacing it. core/common even ships a serialize_headers workaround for this exact case that neither sink uses.
  • Single-node transport: like elasticsearch_source, the client is built on SingleNodeConnectionPool (lib.rs:208) with no cluster sniffing or multi-node failover. A dead configured node fails every request rather than routing around it.

Local Execution

  • Passed
  • Pre-commit hooks ran

AI Usage

  1. Tools: Claude
  2. Use Used for scaffolding and iteration.
  3. Verification: Full local compilation, extensive integration testing against a live container.
  4. Reviewed and can explain every line if asked.

@github-actions

Copy link
Copy Markdown

Thanks for the PR. It is labeled S-waiting-on-review and queued for review.

Slash commands (own line, regular comment) move it around the queue:

  • /ready - back to S-waiting-on-review after addressing feedback
  • /author - flip to S-waiting-on-author while you finish changes
  • /request-review @user-or-team - request a reviewer

See CONTRIBUTING.md for details.

@github-actions github-actions Bot added the S-waiting-on-review PR is waiting on a reviewer label Aug 12, 2026
@codecov

codecov Bot commented Aug 12, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 83.91%. Comparing base (cc269ef) to head (8fbad8f).

Additional details and impacted files
@@             Coverage Diff              @@
##             master    #3873      +/-   ##
============================================
+ Coverage     83.85%   83.91%   +0.05%     
  Complexity     1358     1358              
============================================
  Files          1212     1213       +1     
  Lines        166843   168701    +1858     
  Branches     134304   136288    +1984     
============================================
+ Hits         139905   141559    +1654     
- Misses        23298    23320      +22     
- Partials       3640     3822     +182     
Components Coverage Δ
Rust Core 84.78% <ø> (+0.15%) ⬆️
Java SDK 66.67% <ø> (ø)
C# SDK 74.91% <ø> (-1.62%) ⬇️
Python SDK 90.13% <ø> (ø)
PHP SDK 84.48% <ø> (ø)
Node SDK 95.94% <ø> (+0.09%) ⬆️
Go SDK 68.32% <ø> (-0.05%) ⬇️
Files with missing lines Coverage Δ
core/connectors/sinks/opensearch_sink/src/lib.rs 94.01% <ø> (ø)

... and 71 files with indirect coverage changes

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@mattp5657

mattp5657 commented Aug 12, 2026

Copy link
Copy Markdown
Contributor Author

Getting some errors with a 503 returned when they passed locally, for example for Typo. Will try running again later:

  Connecting to github.com (github.com)|140.82.112.4|:443... connected.
  HTTP request sent, awaiting response... 503 Service Unavailable
  2026-08-12 19:30:09 ERROR 503: Service Unavailable.

Update: These seem to have resolved.

Comment thread core/connectors/sinks/opensearch_sink/src/lib.rs Outdated
Comment thread core/connectors/sinks/opensearch_sink/src/lib.rs Outdated
Comment thread core/connectors/sinks/opensearch_sink/src/lib.rs Outdated
Comment thread core/connectors/sinks/opensearch_sink/src/lib.rs Outdated
Comment thread core/connectors/sinks/opensearch_sink/src/lib.rs Outdated
Comment thread core/integration/tests/connectors/fixtures/opensearch/container.rs
@github-actions github-actions Bot added S-waiting-on-author PR is waiting on author response and removed S-waiting-on-review PR is waiting on a reviewer labels Aug 16, 2026
@mattp5657

Copy link
Copy Markdown
Contributor Author

/ready

@github-actions github-actions Bot added S-waiting-on-review PR is waiting on a reviewer and removed S-waiting-on-author PR is waiting on author response labels Aug 22, 2026
Comment on lines +955 to +963
// The top-level flag lets a clean batch skip the per-item scan entirely.
if !response
.get("errors")
.and_then(Value::as_bool)
.unwrap_or(true)
{
return Ok(BulkAttempt {
indexed: items.len(),
..BulkAttempt::default()

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This fast path still accepts malformed item entries without validating them. For example, {"errors":false,"items":[{}]} passes the length check and is reported as one indexed document, even though the response contains no recognizable index result or successful status. That leaves the malformed-response fix incomplete, and the runtime will commit the offset for a document that was never actually accounted for. Please validate that every item contains the expected operation result and a 2xx status before returning success, and add an errors: false regression case with a malformed item.


[package]
name = "iggy_connector_opensearch_sink"
version = "0.5.0-edge.1"

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

update to "0.5.0-edge.4"

Comment on lines +109 to +120
impl std::fmt::Debug for OpenSearchSink {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
f.debug_struct("OpenSearchSink")
.field("id", &self.id)
.field("config", &self.config)
.field("client", &self.client.is_some())
.field("invocations_count", &self.invocations_count)
.field("documents_indexed", &self.documents_indexed)
.field("errors_count", &self.errors_count)
.finish()
}
}

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This hides the authenticated client and relies on SecretString for the dedicated password field, but it still prints self.config.url verbatim through self.config. Since embedded URL credentials are rejected only later in open(), formatting a newly constructed sink from https://admin:hunter2@host exposes hunter2. Let's redact or sanitize the URL in the resolved config's Debug output.

secrecy = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
simd-json = { workspace = true }

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

simd-json is used only by test fixtures inside the #[cfg(test)] module. It should be under [dev-dependencies].

@github-actions github-actions Bot added S-waiting-on-author PR is waiting on author response and removed S-waiting-on-review PR is waiting on a reviewer labels Aug 23, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

S-waiting-on-author PR is waiting on author response

Projects

None yet

Development

Successfully merging this pull request may close these issues.

feat(connector): Add Opensearch sink connector

2 participants