This is an automated email from the ASF dual-hosted git repository.
hubcio pushed a change to branch bus
in repository https://gitbox.apache.org/repos/asf/iggy.git
omit d3d93fa33 feat(message_bus): async fire-and-forget transport for VSR
consensus
add 36307999b feat(consensus): impl consensus group mechanism (#3138)
add 88ac8878b feat(message_bus): async fire-and-forget transport for VSR
consensus
add 9ca1b4a95 refactor(configs): flatten cluster config to
identical-on-every-node roster
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 (d3d93fa33)
\
N -- N -- N refs/heads/bus (9ca1b4a95)
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:
.github/actions/node-npm/pre-merge/action.yml | 2 -
bdd/docker-compose.yml | 70 +--
core/binary_protocol/src/consensus/operation.rs | 50 ++-
core/binary_protocol/src/dispatch.rs | 5 +-
core/binary_protocol/src/lib.rs | 1 +
core/binary_protocol/src/primitives/mod.rs | 1 +
.../partition_assignment.rs} | 60 +--
.../create_partitions_with_assignments.rs | 126 ++++++
.../binary_protocol/src/requests/partitions/mod.rs | 3 +
.../topics/create_topic_with_assignments.rs | 131 ++++++
core/binary_protocol/src/requests/topics/mod.rs | 2 +
core/configs/src/server_config/cluster.rs | 38 +-
core/configs/src/server_config/defaults.rs | 40 +-
core/configs/src/server_config/validators.rs | 108 ++---
core/consensus/src/observability.rs | 2 +
core/integration/src/harness/handle/server.rs | 7 +
.../src/harness/orchestrator/builder.rs | 43 +-
core/integration/tests/config_provider/mod.rs | 469 ++++++++-------------
core/metadata/Cargo.toml | 2 +-
core/metadata/src/impls/metadata.rs | 280 ++++++++++--
core/metadata/src/stm/mod.rs | 41 ++
core/metadata/src/stm/mux.rs | 5 +
core/metadata/src/stm/snapshot.rs | 33 +-
core/metadata/src/stm/stream.rs | 238 ++++++++++-
core/server-ng/config.toml | 29 +-
core/server/config.toml | 39 +-
core/server/src/args.rs | 16 +
core/server/src/main.rs | 40 ++
core/server/src/shard/builder.rs | 10 +
core/server/src/shard/mod.rs | 4 +
core/server/src/shard/system/cluster.rs | 163 ++++---
core/shard/src/lib.rs | 17 +-
core/shard/src/router.rs | 5 +-
.../Fixtures/IggyClusterFixture.cs | 48 ++-
34 files changed, 1421 insertions(+), 707 deletions(-)
copy core/binary_protocol/src/{responses/system/get_snapshot.rs =>
primitives/partition_assignment.rs} (51%)
create mode 100644
core/binary_protocol/src/requests/partitions/create_partitions_with_assignments.rs
create mode 100644
core/binary_protocol/src/requests/topics/create_topic_with_assignments.rs