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

krishvishal pushed a change to branch partitions-async-ub
in repository https://gitbox.apache.org/repos/asf/iggy.git


    from ec86d0640 chore(partitions): gate debug-only Cell import behind cfg
     add 3b9ba2f93 fix(security): require read_servers permission for system 
snapshot (#3579)
     add 1f18a8f08 feat(connectors): add S3 sink connector (#3103)
     new 202906dca Merge branch 'master' into partitions-async-ub

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .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 +
 .../s3_sink}/Cargo.toml                            |  20 +-
 core/connectors/sinks/s3_sink/README.md            | 164 +++++
 .../sinks/s3_sink/config.toml}                     |  49 +-
 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/{delta => s3}/mod.rs |   2 +-
 core/integration/tests/connectors/mod.rs           |   1 +
 .../tests/connectors/s3/mod.rs}                    |   1 +
 core/integration/tests/connectors/s3/s3_sink.rs    | 196 ++++++
 .../tests/connectors/{http => s3}/sink.toml        |   2 +-
 .../{http/sink.toml => s3/sink_rotation.toml}      |   2 +-
 .../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, 3211 insertions(+), 81 deletions(-)
 copy core/connectors/{sources/elasticsearch_source => 
sinks/s3_sink}/Cargo.toml (80%)
 create mode 100644 core/connectors/sinks/s3_sink/README.md
 copy core/{integration/tests/connectors/influxdb_sink.toml => 
connectors/sinks/s3_sink/config.toml} (51%)
 create mode 100644 core/connectors/sinks/s3_sink/src/buffer.rs
 create mode 100644 core/connectors/sinks/s3_sink/src/client.rs
 create mode 100644 core/connectors/sinks/s3_sink/src/formatter.rs
 create mode 100644 core/connectors/sinks/s3_sink/src/lib.rs
 create mode 100644 core/connectors/sinks/s3_sink/src/path.rs
 create mode 100644 core/connectors/sinks/s3_sink/src/sink.rs
 create mode 100644 core/integration/tests/connectors/fixtures/s3/fixture.rs
 copy core/integration/tests/connectors/fixtures/{delta => s3}/mod.rs (92%)
 copy core/{partitions/src/send_messages2.rs => 
integration/tests/connectors/s3/mod.rs} (98%)
 create mode 100644 core/integration/tests/connectors/s3/s3_sink.rs
 copy core/integration/tests/connectors/{http => s3}/sink.toml (94%)
 copy core/integration/tests/connectors/{http/sink.toml => 
s3/sink_rotation.toml} (94%)

Reply via email to