This is an automated email from the ASF dual-hosted git repository. krishvishal pushed a commit to branch partitions-async-ub in repository https://gitbox.apache.org/repos/asf/iggy.git
commit 202906dca3f57d0860b244ba92745da8ccade62e Merge: ec86d0640 1f18a8f08 Author: Krishna Vishal <[email protected]> AuthorDate: Mon Jun 29 22:29:16 2026 +0530 Merge branch 'master' into partitions-async-ub .github/workflows/_build_rust_artifacts.yml | 2 +- .github/workflows/edge-release.yml | 1 + Cargo.lock | 349 +++++++++-- Cargo.toml | 1 + core/connectors/README.md | 1 + core/connectors/sinks/README.md | 1 + core/connectors/sinks/s3_sink/Cargo.toml | 52 ++ core/connectors/sinks/s3_sink/README.md | 164 +++++ core/connectors/sinks/s3_sink/config.toml | 50 ++ core/connectors/sinks/s3_sink/src/buffer.rs | 182 ++++++ core/connectors/sinks/s3_sink/src/client.rs | 169 ++++++ core/connectors/sinks/s3_sink/src/formatter.rs | 393 ++++++++++++ core/connectors/sinks/s3_sink/src/lib.rs | 498 ++++++++++++++++ core/connectors/sinks/s3_sink/src/path.rs | 245 ++++++++ core/connectors/sinks/s3_sink/src/sink.rs | 662 +++++++++++++++++++++ core/integration/Cargo.toml | 1 + core/integration/tests/cli/common/keyring.rs | 1 + core/integration/tests/cli/common/mod.rs | 1 + core/integration/tests/connectors/fixtures/mod.rs | 2 + .../tests/connectors/fixtures/s3/fixture.rs | 308 ++++++++++ .../tests/connectors/fixtures/s3/mod.rs | 20 + core/integration/tests/connectors/mod.rs | 1 + core/integration/tests/connectors/s3/mod.rs | 18 + core/integration/tests/connectors/s3/s3_sink.rs | 196 ++++++ core/integration/tests/connectors/s3/sink.toml | 20 + .../tests/connectors/s3/sink_rotation.toml | 20 + .../tests/server/scenarios/permissions_scenario.rs | 26 + .../binary/handlers/system/get_snapshot_handler.rs | 1 + core/server/src/http/system.rs | 7 +- core/server/src/metadata/reader.rs | 4 + 30 files changed, 3354 insertions(+), 42 deletions(-)
