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

piotr pushed a change to branch bench-tls
in repository https://gitbox.apache.org/repos/asf/iggy.git


    omit 95bc6741 feat(bench): add TCP TLS support to `iggy-bench`
     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 a484f8d2 feat(bench): add TCP TLS support to `iggy-bench`

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   (95bc6741)
            \
             N -- N -- N   refs/heads/bench-tls (a484f8d2)

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 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:
 .gitignore                                         |   2 +-
 Cargo.lock                                         |   8 +-
 Cargo.toml                                         |   4 +-
 core/configs/server.toml                           |  12 +-
 core/connectors/runtime/README.md                  |   4 +-
 core/connectors/runtime/config.toml                |   4 +-
 .../{tests/bench/mod.rs => src/bench_utils.rs}     |  53 ++--
 core/integration/src/http_client.rs                |  10 +-
 core/integration/src/lib.rs                        |   1 +
 core/integration/src/quic_client.rs                |  10 +-
 core/integration/src/tcp_client.rs                 |  10 +-
 core/integration/src/test_server.rs                |   2 +
 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     |  12 +-
 .../server/scenarios/server_restart_scenario.rs    | 280 -------------------
 .../tests/server/scenarios/tcp_tls_scenario.rs     |   2 +
 core/integration/tests/server/specific.rs          | 145 ++++++++++
 core/integration/tests/server/tcp_server.rs        | 296 ---------------------
 .../tests/streaming/get_by_timestamp.rs            |  14 +-
 core/integration/tests/streaming/messages.rs       | 153 -----------
 foreign/cpp/tests/e2e/server.toml                  |   8 +-
 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 +-
 60 files changed, 1013 insertions(+), 1597 deletions(-)
 rename core/integration/{tests/bench/mod.rs => src/bench_utils.rs} (77%)
 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/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

Reply via email to