This is an automated email from the ASF dual-hosted git repository.

ryerraguntla pushed a change to branch kafka-record-codec
in repository https://gitbox.apache.org/repos/asf/iggy.git


    from 18c5b1a64 Merge branch 'master' into kafka-record-codec
     add ddbe222c2 chore(deps): Bump the csharp group with 11 updates (#4254)
     add 74614ed05 feat(server): warn when listener binds loopback inside a 
container (#4218)
     add fa8070494 fix(cluster): stop partition repair asking for an inverted 
op range (#4246)
     add 2cacea5b1 fix(partitions): sync checkpoints through original writers 
(#4253)
     add 7bae8ec84 fix(connectors): tag sink batches with the payload's schema 
(#4204)
     add e110b04bd Merge branch 'master' into kafka-record-codec

No new revisions were added by this update.

Summary of changes:
 .claude/skills/connector-runtime/SKILL.md          |   5 +-
 .claude/skills/connector-sdk/SKILL.md              |  17 +-
 .claude/skills/connector-sink/SKILL.md             |   2 +-
 Cargo.lock                                         |   8 +-
 Cargo.toml                                         |   2 +-
 core/configs/src/server_config/validators.rs       | 293 ++++++++-
 core/connectors/runtime/Cargo.toml                 |   4 +
 core/connectors/runtime/README.md                  |   5 +-
 core/connectors/runtime/src/benchmark.rs           |   5 +-
 core/connectors/runtime/src/metrics.rs             |  34 +-
 core/connectors/runtime/src/sink.rs                | 669 +++++++++++++++++++--
 core/connectors/sdk/Cargo.toml                     |   2 +-
 core/connectors/sdk/README.md                      |  15 +-
 core/connectors/sdk/src/lib.rs                     | 334 +++++++++-
 core/connectors/sdk/src/sink.rs                    | 149 ++++-
 .../sdk/src/transforms/flatbuffer_convert.rs       |  23 +-
 .../connectors/sdk/src/transforms/proto_convert.rs |  65 +-
 core/connectors/sinks/README.md                    |   8 +
 core/connectors/sinks/clickhouse_sink/README.md    |   8 +-
 core/connectors/sinks/clickhouse_sink/src/body.rs  | 110 +++-
 core/connectors/sinks/delta_sink/Cargo.toml        |   3 +
 core/connectors/sinks/delta_sink/src/sink.rs       |  81 ++-
 core/connectors/sinks/doris_sink/README.md         |   3 +-
 core/connectors/sinks/doris_sink/src/lib.rs        |  87 ++-
 .../connectors/sinks/elasticsearch_sink/src/lib.rs |  80 ++-
 core/connectors/sinks/http_sink/README.md          |   3 +-
 core/connectors/sinks/http_sink/src/lib.rs         |  37 +-
 .../iceberg_sink/src/router/dynamic_router.rs      |  58 +-
 .../sinks/iceberg_sink/src/router/mod.rs           |  43 +-
 .../connectors/sinks/influxdb_sink/dependencies.md |   2 +-
 core/connectors/sinks/meilisearch_sink/README.md   |  13 +-
 core/connectors/sinks/meilisearch_sink/src/lib.rs  |  38 +-
 core/connectors/sinks/quickwit_sink/README.md      |   2 +-
 core/connectors/sinks/quickwit_sink/src/lib.rs     |  22 +-
 core/connectors/sinks/s3_sink/README.md            |   2 +-
 core/connectors/sinks/s3_sink/src/formatter.rs     |  28 +-
 core/connectors/sinks/surrealdb_sink/README.md     |  11 +-
 core/connectors/sinks/surrealdb_sink/src/lib.rs    |  17 +
 .../sources/influxdb_source/dependencies.md        |   2 +-
 core/integration/Cargo.toml                        |   1 +
 .../integration/tests/connectors/clickhouse/mod.rs |   2 +
 .../tests/connectors/clickhouse/proto_text.rs      | 113 ++++
 .../sink.toml => clickhouse/proto_text.toml}       |   2 +-
 .../proto_text_config}/clickhouse_sink.toml        |  43 +-
 core/integration/tests/connectors/doris/mod.rs     |   1 +
 .../meilisearch_sink.rs => doris/proto_text.rs}    |  56 +-
 .../{delta/sink.toml => doris/proto_text.toml}     |   2 +-
 .../proto_text_config/doris_sink.toml}             |  35 +-
 .../tests/connectors/elasticsearch/mod.rs          |   1 +
 .../tests/connectors/elasticsearch/proto_text.rs   | 126 ++++
 .../sink.toml => elasticsearch/proto_text.toml}    |   2 +-
 .../proto_text_config/elasticsearch_sink.toml}     |  23 +-
 core/integration/tests/connectors/runtime/mod.rs   |   1 +
 .../tests/connectors/runtime/schema_tagging.rs     | 134 +++++
 .../sink.toml => runtime/schema_tagging.toml}      |   2 +-
 .../stdout_sink.toml}                              |  15 +-
 core/partitions/Cargo.toml                         |   9 +-
 core/partitions/src/iggy_index_writer.rs           |   4 +
 core/partitions/src/iggy_partition.rs              | 108 +++-
 core/partitions/src/lib.rs                         |   2 +
 core/partitions/src/persistence.rs                 |  49 +-
 core/server/src/partition_reconciler.rs            |  67 +++
 core/shard/src/lib.rs                              |  30 +-
 core/simulator/src/storage/tests.rs                |  93 ++-
 .../Iggy_SDK.Examples.Basic.Consumer.csproj        |   8 +-
 .../Iggy_SDK.Examples.Basic.Producer.csproj        |  10 +-
 ...ggy_SDK.Examples.GettingStarted.Consumer.csproj |   4 +-
 ...ggy_SDK.Examples.GettingStarted.Producer.csproj |   4 +-
 .../Iggy_SDK.Examples.Shared.csproj                |   2 +-
 ...gy_SDK.Examples.MessageEnvelope.Consumer.csproj |  10 +-
 ...gy_SDK.Examples.MessageEnvelope.Producer.csproj |  10 +-
 ...ggy_SDK.Examples.MessageHeaders.Consumer.csproj |   4 +-
 ...ggy_SDK.Examples.MessageHeaders.Producer.csproj |   4 +-
 .../Iggy_SDK.Examples.NewSdk.Consumer.csproj       |  10 +-
 .../Iggy_SDK.Examples.NewSdk.Producer.csproj       |  10 +-
 .../Iggy_SDK.Examples.TcpTls.Consumer.csproj       |   4 +-
 .../Iggy_SDK.Examples.TcpTls.Producer.csproj       |   4 +-
 foreign/csharp/Directory.Packages.props            |  12 +-
 78 files changed, 2913 insertions(+), 394 deletions(-)
 create mode 100644 core/integration/tests/connectors/clickhouse/proto_text.rs
 copy core/integration/tests/connectors/{delta/sink.toml => 
clickhouse/proto_text.toml} (93%)
 copy core/{connectors/runtime/example_config/connectors => 
integration/tests/connectors/clickhouse/proto_text_config}/clickhouse_sink.toml 
(54%)
 copy core/integration/tests/connectors/{meilisearch/meilisearch_sink.rs => 
doris/proto_text.rs} (55%)
 copy core/integration/tests/connectors/{delta/sink.toml => 
doris/proto_text.toml} (93%)
 copy 
core/integration/tests/connectors/{runtime/sink_transform_error_config/stdout.toml
 => doris/proto_text_config/doris_sink.toml} (60%)
 create mode 100644 
core/integration/tests/connectors/elasticsearch/proto_text.rs
 copy core/integration/tests/connectors/{delta/sink.toml => 
elasticsearch/proto_text.toml} (92%)
 copy core/{connectors/sinks/elasticsearch_sink/config.toml => 
integration/tests/connectors/elasticsearch/proto_text_config/elasticsearch_sink.toml}
 (60%)
 create mode 100644 core/integration/tests/connectors/runtime/schema_tagging.rs
 copy core/integration/tests/connectors/{delta/sink.toml => 
runtime/schema_tagging.toml} (92%)
 copy 
core/integration/tests/connectors/runtime/{sink_invalid_config/stdout_valid.toml
 => schema_tagging_config/stdout_sink.toml} (76%)

Reply via email to