This is an automated email from the ASF dual-hosted git repository.
hubcio pushed a change to branch fix/docs-audit-clients
in repository https://gitbox.apache.org/repos/asf/iggy.git
omit a236d0812 fix(sdk): correct partition selection and client cleanup
omit dd35f3f34 fix(sdk): preserve consumer progress and client error
handling
add bb5ed1702 fix(server): preserve write responses and validate CLI input
(#4150)
add 2f241418f fix(sdk): preserve consumer progress and client error
handling
add ace55b477 fix(sdk): correct partition selection and client cleanup
add 22d3e0b22 docs(python): restore version bullet required by CI
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 (a236d0812)
\
N -- N -- N refs/heads/fix/docs-audit-clients (22d3e0b22)
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.
No new revisions were added by this update.
Summary of changes:
Cargo.lock | 1 +
README.md | 10 +-
core/bench/Cargo.toml | 1 +
core/bench/src/benchmarks/common.rs | 4 +-
core/bench/src/utils/mod.rs | 14 ++-
core/binary_protocol/src/consensus/header.rs | 43 ++++----
core/binary_protocol/src/consensus/operation.rs | 2 +-
.../src/requests/topics/update_topic.rs | 14 +--
.../src/responses/messages/send_messages.rs | 16 ++-
core/binary_protocol/src/version.rs | 4 +-
core/cli/src/args/consumer_group.rs | 6 +-
core/cli/src/args/consumer_offset.rs | 4 +-
core/cli/src/args/message.rs | 56 +++++++---
core/cli/src/args/mod.rs | 4 +-
core/cli/src/args/personal_access_token.rs | 4 +-
core/cli/src/args/segment.rs | 37 ++++++-
core/cli/src/args/stream.rs | 4 +-
core/cli/src/args/system.rs | 2 +-
core/cli/src/args/topic.rs | 30 +++---
.../src/commands/binary_message/send_messages.rs | 23 ++---
core/common/src/traits/binary_impls/messages.rs | 7 +-
core/common/src/traits/client.rs | 2 +-
core/common/src/types/args/mod.rs | 6 +-
core/common/src/types/message/partitioning.rs | 12 ++-
core/common/src/types/message/partitioning_kind.rs | 4 +-
core/common/src/types/options/mod.rs | 31 ++----
core/consensus/src/impls.rs | 12 +--
core/cpu_allocation/src/lib.rs | 4 +-
core/integration/src/bench_utils.rs | 2 +-
core/integration/tests/bench.rs | 114 +++++++++++++++++++++
.../test_consumer_group_create_command.rs | 10 +-
.../test_consumer_group_help_command.rs | 2 +-
.../test_consumer_offset_get_command.rs | 4 +-
.../test_consumer_offset_set_command.rs | 4 +-
.../tests/cli/general/test_help_command.rs | 8 +-
.../cli/message/test_message_flush_command.rs | 30 +++---
.../tests/cli/message/test_message_help_command.rs | 2 +-
.../tests/cli/message/test_message_send_command.rs | 44 +++++++-
.../test_pat_create_command.rs | 4 +-
.../tests/cli/stream/test_stream_create_command.rs | 6 +-
.../tests/cli/system/test_me_command.rs | 2 +-
.../tests/cli/system/test_snapshot_cmd.rs | 2 +-
.../tests/cli/topic/test_topic_create_command.rs | 16 +--
.../tests/cli/topic/test_topic_update_command.rs | 20 ++--
.../tests/cluster/fast_primary_rejoin.rs | 9 ++
core/integration/tests/mod.rs | 1 +
core/integration/tests/server/mod.rs | 1 +
core/integration/tests/server/telemetry.rs | 63 ++++++++++++
.../tests/server/topic_admission_vsr.rs | 20 ++--
core/metadata/src/stm/snapshot.rs | 30 ++----
core/metadata/src/stm/stream.rs | 99 ++++++++++++++++--
core/sdk/src/vsr.rs | 55 ++++------
core/server/config.toml | 30 +++---
core/server/src/args.rs | 10 +-
core/server/src/dispatch/partition.rs | 2 +-
core/server/src/http/forward.rs | 24 +++--
core/server/src/http/handlers.rs | 2 +-
core/server/src/responses.rs | 22 ++--
core/server/src/shard_allocator.rs | 4 +-
core/server_common/src/consensus_message.rs | 6 +-
core/server_common/src/log/logger.rs | 8 +-
core/server_common/src/memory_pool.rs | 4 +-
core/server_common/src/send_messages.rs | 4 +-
foreign/python/README.md | 7 +-
64 files changed, 689 insertions(+), 339 deletions(-)
create mode 100644 core/integration/tests/bench.rs
create mode 100644 core/integration/tests/server/telemetry.rs