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 26ec032d temp
 discard 4b4dab7f fix state initialization with gate
 discard cbbd3517 refactors
 discard 1f7e1008 todos
 discard e5c939f8 begin shard init
 discard 8605d8a2 feat(io_uring): load server_config (#1798)
 discard 6d20274b feat(io_uring): bootstrap the main function (#1788)
 discard 6d1eea7b initial setup and migration of shards
     add bb42b6fe chore(ci): fix redundant builds in CI test script (#1895)
     add b6c1cffd chore(server): remove OpenSSL dependency and switch to Rustls 
for TLS (#1896)
     add 6ba21540 chore(python): refactor Python SDK for compatibility with 
Rust SDK (#1853)
     add db9d16f8 refactor(server): add segment cache index variants to server 
restart test (#1900)
     add c4373346 chore(sdk): support zero copy schema in Go SDK (#1897)
     add deb9ff71 refactor(integration): consolidate server tests using test 
matrices (#1901)
     add 3f69440a feat(js): return message id as bigint instead of uuid string 
(#1902)
     new d765fc44 initial setup and migration of shards
     new a435b97d feat(io_uring): bootstrap the main function (#1788)
     new 309d505a feat(io_uring): load server_config (#1798)
     new d4215002 begin shard init
     new 99aaccf2 todos
     new a0736342 refactors
     new fc3f0fdb fix state initialization with gate
     new 9c6b9ffc temp

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   (26ec032d)
            \
             N -- N -- N   refs/heads/io_uring_tpc (9c6b9ffc)

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 8 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:
 .dockerignore                                      |    2 -
 .github/changed-files-config.json                  |    5 +
 .github/workflows/ci-check-pr.yml                  |    2 +-
 .github/workflows/ci-check-python-sdk.yml          |   27 +-
 .github/workflows/ci-test-rust.yml                 |    2 +-
 .gitignore                                         |    3 +-
 Cargo.lock                                         |  426 +--
 Cargo.toml                                         |   10 +-
 DEPENDENCIES.md                                    |   42 +-
 Dockerfile                                         |    6 +-
 Dockerfile => Dockerfile.debug                     |   16 +-
 core/bench/runner/Cargo.toml                       |    4 +-
 core/configs/server.toml                           |    8 +-
 core/integration/Cargo.toml                        |    1 +
 .../{tests/bench/mod.rs => src/bench_utils.rs}     |   53 +-
 core/integration/src/http_client.rs                |   10 +-
 core/integration/src/lib.rs                        |    2 +
 core/integration/src/quic_client.rs                |   10 +-
 core/integration/src/tcp_client.rs                 |   10 +-
 core/integration/src/test_server.rs                |    2 +
 core/integration/src/test_tls_utils.rs             |   52 +
 core/integration/tests/bench/http.rs               |   64 -
 core/integration/tests/bench/quic.rs               |   64 -
 core/integration/tests/bench/tcp.rs                |   64 -
 .../data_integrity/verify_after_server_restart.rs  |   95 +-
 core/integration/tests/mod.rs                      |    1 -
 .../json.h => core/integration/tests/server/cg.rs  |   42 +-
 .../integration/tests/server/general.rs            |   42 +-
 core/integration/tests/server/http_server.rs       |   73 -
 core/integration/tests/server/mod.rs               |   84 +-
 core/integration/tests/server/quic_server.rs       |  105 -
 .../tests/server/scenarios/bench_scenario.rs}      |   16 +-
 .../server/scenarios/delete_segments_scenario.rs   |    5 +-
 core/integration/tests/server/scenarios/mod.rs     |   13 +-
 .../server/scenarios/server_restart_scenario.rs    |  280 --
 .../tests/server/scenarios/tcp_tls_scenario.rs     |   96 +
 core/integration/tests/server/specific.rs          |  110 +
 core/integration/tests/server/tcp_server.rs        |  210 --
 .../tests/streaming/get_by_timestamp.rs            |   14 +-
 core/sdk/src/prelude.rs                            |    6 +-
 core/sdk/src/tcp/tcp_client.rs                     |    6 +-
 core/server/Cargo.toml                             |    3 +-
 core/server/src/binary/sender.rs                   |    1 +
 core/server/src/configs/defaults.rs                |    4 +-
 core/server/src/configs/displays.rs                |    4 +-
 core/server/src/configs/tcp.rs                     |    4 +-
 core/server/src/tcp/tcp_tls_listener.rs            |   68 +-
 foreign/go/README.md                               |    3 +
 .../go/benchmarks/send_messages_benchmark_test.go  |    6 +-
 .../binary_response_deserializer.go                |  142 +-
 .../create_stream_serializer.go                    |    1 +
 .../fetch_messages_request_serializer.go           |    1 +
 .../fetch_messages_request_serializer_test.go      |   95 +-
 .../send_messages_request_serializer.go            |  119 +-
 .../send_messages_request_serializer_test.go       |   82 +
 foreign/go/contracts/message_header.go             |   88 +-
 foreign/go/contracts/message_polling.go            |    2 +-
 foreign/go/contracts/messages.go                   |   64 +-
 foreign/go/contracts/user_headers.go               |  152 +
 foreign/go/e2e/tcp_test/messages_feature_send.go   |    2 +-
 foreign/go/e2e/tcp_test/messages_steps.go          |   17 +-
 foreign/go/e2e/tcp_test/tcp_suite_test.go          |    2 +-
 foreign/go/e2e/tcp_test/test_helpers.go            |    5 +-
 foreign/go/errors/errors.go                        |    8 +
 foreign/go/go.mod                                  |   10 +-
 foreign/go/go.sum                                  |   12 +-
 foreign/go/samples/consumer/consumer.go            |   10 +-
 foreign/go/samples/producer/producer.go            |   12 +-
 foreign/go/tcp/tcp_core.go                         |    1 +
 foreign/node/src/bdd/message.ts                    |   11 +-
 foreign/node/src/tcp.sm.utils.ts                   |   17 +-
 foreign/node/src/wire/message/iggy-header.utils.ts |   10 +-
 foreign/node/src/wire/message/message.utils.ts     |   19 +-
 .../src/wire/message/send-messages.command.test.ts |   20 +-
 foreign/node/src/wire/number.utils.ts              |   14 +-
 foreign/python/.gitignore                          |    5 +-
 foreign/python/CONTRIBUTING.md                     |   46 -
 foreign/python/Cargo.lock                          | 3867 --------------------
 foreign/python/Cargo.toml                          |   18 +-
 foreign/python/Dockerfile.test                     |   73 +
 foreign/python/README.md                           |   58 +-
 foreign/python/docker-compose.test.yml             |   67 +
 foreign/python/pyproject.toml                      |   82 +-
 foreign/python/scripts/test.sh                     |  107 +
 foreign/python/src/client.rs                       |   17 +-
 foreign/python/src/lib.rs                          |    3 +-
 foreign/python/src/receive_message.rs              |   40 +-
 foreign/python/src/send_message.rs                 |   24 +-
 foreign/python/src/stream.rs                       |    2 +-
 foreign/python/src/topic.rs                        |    2 +-
 foreign/python/tests/conftest.py                   |  186 +-
 foreign/python/tests/test_client.py                |   57 -
 foreign/python/tests/test_iggy_sdk.py              |  368 ++
 scripts/run-rust-examples-from-readme.sh           |   41 +-
 94 files changed, 2365 insertions(+), 5790 deletions(-)
 copy Dockerfile => Dockerfile.debug (69%)
 rename core/integration/{tests/bench/mod.rs => src/bench_utils.rs} (77%)
 create mode 100644 core/integration/src/test_tls_utils.rs
 delete mode 100644 core/integration/tests/bench/http.rs
 delete mode 100644 core/integration/tests/bench/quic.rs
 delete mode 100644 core/integration/tests/bench/tcp.rs
 copy foreign/cpp/sdk/json.h => core/integration/tests/server/cg.rs (58%)
 copy foreign/go/contracts/offets.go => 
core/integration/tests/server/general.rs (53%)
 delete mode 100644 core/integration/tests/server/http_server.rs
 delete mode 100644 core/integration/tests/server/quic_server.rs
 copy core/{bdd/tests/basic_messaging.rs => 
integration/tests/server/scenarios/bench_scenario.rs} (61%)
 delete mode 100644 
core/integration/tests/server/scenarios/server_restart_scenario.rs
 create mode 100644 core/integration/tests/server/scenarios/tcp_tls_scenario.rs
 create mode 100644 core/integration/tests/server/specific.rs
 delete mode 100644 core/integration/tests/server/tcp_server.rs
 create mode 100644 foreign/go/README.md
 create mode 100644 
foreign/go/binary_serialization/send_messages_request_serializer_test.go
 create mode 100644 foreign/go/contracts/user_headers.go
 delete mode 100644 foreign/python/CONTRIBUTING.md
 delete mode 100644 foreign/python/Cargo.lock
 create mode 100644 foreign/python/Dockerfile.test
 create mode 100644 foreign/python/docker-compose.test.yml
 create mode 100755 foreign/python/scripts/test.sh
 delete mode 100644 foreign/python/tests/test_client.py
 create mode 100644 foreign/python/tests/test_iggy_sdk.py

Reply via email to