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

gkoszyk pushed a change to branch io_uring_tpc
in repository https://gitbox.apache.org/repos/asf/iggy.git


 discard b1bb34ce fix state initialization with gate
 discard 2e27a628 refactors
 discard 3faeb0bc todos
 discard 53eac15a begin shard init
 discard 058cf798 feat(io_uring): load server_config (#1798)
 discard 7641644c feat(io_uring): bootstrap the main function (#1788)
 discard 0952097a initial setup and migration of shards
     add 559e4d66 chore(ci): publish java-sdk SNAPSHOTs to maven (#1883)
     add 09cadc2e chore(ci): publish java-sdk to maven (#1885)
     add 9aed3715 fix(server): fix index saving issue on server restart, fix ci 
(#1887)
     add d90fb768 chore(ci): add workflow for publishing bench and connectors 
(#1881)
     add 83dbe5c4 chore(repo): add markdown linter to CI (#1879)
     add 4ca83c42 chore(repo): reorganize examples directory structure (#1888)
     add 53974171 chore(ci): fix test output capture and rustup command syntax 
(#1894)
     new 6d1eea7b initial setup and migration of shards
     new 6d20274b feat(io_uring): bootstrap the main function (#1788)
     new 8605d8a2 feat(io_uring): load server_config (#1798)
     new e5c939f8 begin shard init
     new 1f7e1008 todos
     new cbbd3517 refactors
     new 3c07044e fix state initialization with gate

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (b1bb34ce)
            \
             N -- N -- N   refs/heads/io_uring_tpc (3c07044e)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 7 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/changed-files-config.json                  |   6 +-
 .github/scripts/detect-changed-files.sh            |  25 +-
 .github/workflows/ci-check-common.yml              |  25 +-
 .github/workflows/ci-check-rust.yml                |   1 +
 .github/workflows/ci-test-rust.yml                 |   2 +-
 .../{publish_cli.yml => publish_bench.yml}         |  38 ++-
 .../{publish_cli.yml => publish_connectors.yml}    |  38 ++-
 ...publish_csharp_sdk.yml => publish_java_sdk.yml} |  70 +++---
 .github/workflows/publish_java_sdk_snapshots.yml   |  61 +++++
 .../{publish_sdk.yml => publish_rust_sdk.yml}      |   8 +-
 .../{release_cli.yml => release_bench.yml}         |  68 ++---
 .../{release_cli.yml => release_connectors.yml}    |  68 ++---
 .github/workflows/security.yml                     |   2 +-
 .markdownlint.json                                 |   3 +
 CONTRIBUTING.md                                    |   4 +-
 Cargo.lock                                         | 115 +++++----
 Cargo.toml                                         |   2 +-
 DEPENDENCIES.md                                    |   6 +-
 README.md                                          |  40 +--
 core/bench/Cargo.toml                              |   7 +-
 core/connectors/README.md                          |  19 +-
 core/connectors/runtime/Cargo.toml                 |   6 +-
 core/connectors/sdk/README.md                      |   1 -
 core/connectors/sinks/README.md                    |   1 -
 core/connectors/sinks/quickwit_sink/README.md      |   2 +-
 core/connectors/sources/README.md                  |   2 +-
 core/integration/Cargo.toml                        |   1 -
 core/integration/src/test_server.rs                |  21 +-
 core/integration/tests/server/scenarios/mod.rs     |   1 +
 .../server/scenarios/server_restart_scenario.rs    | 280 +++++++++++++++++++++
 .../scenarios/stream_size_validation_scenario.rs   |   7 -
 core/integration/tests/server/tcp_server.rs        |  50 +++-
 core/server/src/streaming/partitions/storage.rs    |  24 +-
 .../src/streaming/segments/indexes/index_reader.rs |  15 +-
 .../src/streaming/segments/reading_messages.rs     |   3 +-
 core/server/src/streaming/segments/segment.rs      |   7 +-
 core/server/src/streaming/utils/memory_pool.rs     |   1 -
 {core/examples => examples/rust}/Cargo.toml        |   0
 {core/examples => examples/rust}/README.md         |   6 +-
 .../rust}/src/basic/consumer/main.rs               |   0
 .../rust}/src/basic/producer/main.rs               |   0
 .../rust}/src/getting-started/consumer/main.rs     |   0
 .../rust}/src/getting-started/producer/main.rs     |   0
 {core/examples => examples/rust}/src/lib.rs        |   0
 .../rust}/src/message-envelope/consumer/main.rs    |   0
 .../rust}/src/message-envelope/producer/main.rs    |   0
 .../rust}/src/message-headers/consumer/main.rs     |   0
 .../rust}/src/message-headers/producer/main.rs     |   0
 .../rust}/src/multi-tenant/consumer/main.rs        |   0
 .../rust}/src/multi-tenant/producer/main.rs        |   0
 .../rust}/src/new-sdk/consumer/main.rs             |   0
 .../rust}/src/new-sdk/producer/main.rs             |   0
 .../examples => examples/rust}/src/shared/args.rs  |   0
 .../rust}/src/shared/client.rs                     |   0
 .../rust}/src/shared/messages.rs                   |   0
 .../rust}/src/shared/messages_generator.rs         |   0
 {core/examples => examples/rust}/src/shared/mod.rs |   0
 .../rust}/src/shared/stream.rs                     |   0
 .../rust}/src/shared/system.rs                     |   0
 .../src/sink-data-producer/docker-compose.yml      |   0
 .../rust}/src/sink-data-producer/main.rs           |   0
 .../rust}/src/stream-builder/stream-basic/main.rs  |   0
 .../stream-builder/stream-consumer-config/main.rs  |   0
 .../src/stream-builder/stream-consumer/main.rs     |   0
 .../stream-builder/stream-producer-config/main.rs  |   0
 .../src/stream-builder/stream-producer/main.rs     |   0
 foreign/cpp/CONTRIBUTORS.md                        |  26 +-
 foreign/csharp/DEPENDENCIES.md                     |   4 +-
 foreign/csharp/README.md                           |  58 +++--
 foreign/go/samples/README.md                       |   4 +-
 foreign/go/samples/consumer/README.md              |  15 +-
 foreign/go/samples/producer/README.md              |  15 +-
 foreign/java/README.md                             |   6 +-
 foreign/java/java-sdk/build.gradle.kts             |   1 -
 foreign/node/CHANGELOG.md                          |  12 +-
 foreign/node/README.md                             |  30 +--
 foreign/python/CONTRIBUTING.md                     |  22 +-
 foreign/python/README.md                           |  13 +-
 foreign/python/python_examples/README.md           |  12 +-
 justfile                                           |   5 +-
 scripts/licenses-list.sh                           |  19 +-
 ...-readme.sh => run-rust-examples-from-readme.sh} |  10 +-
 82 files changed, 840 insertions(+), 448 deletions(-)
 copy .github/workflows/{publish_cli.yml => publish_bench.yml} (75%)
 copy .github/workflows/{publish_cli.yml => publish_connectors.yml} (75%)
 copy .github/workflows/{publish_csharp_sdk.yml => publish_java_sdk.yml} (54%)
 create mode 100644 .github/workflows/publish_java_sdk_snapshots.yml
 rename .github/workflows/{publish_sdk.yml => publish_rust_sdk.yml} (96%)
 copy .github/workflows/{release_cli.yml => release_bench.yml} (67%)
 copy .github/workflows/{release_cli.yml => release_connectors.yml} (67%)
 create mode 100644 
core/integration/tests/server/scenarios/server_restart_scenario.rs
 rename {core/examples => examples/rust}/Cargo.toml (100%)
 rename {core/examples => examples/rust}/README.md (93%)
 rename {core/examples => examples/rust}/src/basic/consumer/main.rs (100%)
 rename {core/examples => examples/rust}/src/basic/producer/main.rs (100%)
 rename {core/examples => examples/rust}/src/getting-started/consumer/main.rs 
(100%)
 rename {core/examples => examples/rust}/src/getting-started/producer/main.rs 
(100%)
 rename {core/examples => examples/rust}/src/lib.rs (100%)
 rename {core/examples => examples/rust}/src/message-envelope/consumer/main.rs 
(100%)
 rename {core/examples => examples/rust}/src/message-envelope/producer/main.rs 
(100%)
 rename {core/examples => examples/rust}/src/message-headers/consumer/main.rs 
(100%)
 rename {core/examples => examples/rust}/src/message-headers/producer/main.rs 
(100%)
 rename {core/examples => examples/rust}/src/multi-tenant/consumer/main.rs 
(100%)
 rename {core/examples => examples/rust}/src/multi-tenant/producer/main.rs 
(100%)
 rename {core/examples => examples/rust}/src/new-sdk/consumer/main.rs (100%)
 rename {core/examples => examples/rust}/src/new-sdk/producer/main.rs (100%)
 rename {core/examples => examples/rust}/src/shared/args.rs (100%)
 rename {core/examples => examples/rust}/src/shared/client.rs (100%)
 rename {core/examples => examples/rust}/src/shared/messages.rs (100%)
 rename {core/examples => examples/rust}/src/shared/messages_generator.rs (100%)
 rename {core/examples => examples/rust}/src/shared/mod.rs (100%)
 rename {core/examples => examples/rust}/src/shared/stream.rs (100%)
 rename {core/examples => examples/rust}/src/shared/system.rs (100%)
 rename {core/examples => 
examples/rust}/src/sink-data-producer/docker-compose.yml (100%)
 rename {core/examples => examples/rust}/src/sink-data-producer/main.rs (100%)
 rename {core/examples => 
examples/rust}/src/stream-builder/stream-basic/main.rs (100%)
 rename {core/examples => 
examples/rust}/src/stream-builder/stream-consumer-config/main.rs (100%)
 rename {core/examples => 
examples/rust}/src/stream-builder/stream-consumer/main.rs (100%)
 rename {core/examples => 
examples/rust}/src/stream-builder/stream-producer-config/main.rs (100%)
 rename {core/examples => 
examples/rust}/src/stream-builder/stream-producer/main.rs (100%)
 rename scripts/{run-examples-from-readme.sh => 
run-rust-examples-from-readme.sh} (93%)

Reply via email to