This is an automated email from the ASF dual-hosted git repository.
hubcio pushed a change to branch partitions-async-ub
in repository https://gitbox.apache.org/repos/asf/iggy.git
omit 6064f971b fix(partitions): stop holding partition refs across .await
add 7c6d899b4 feat(ci,rust): declare MSRV 1.95 and enforce it in CI (#3558)
add 8a19837b7 chore: remove `once_cell` in favor of the standard library
(#3524)
add 1932014c7 feat(server-ng): port consumer group (#3527)
add bc68827ae chore(deps): bump gradle wrapper to 9.6.0 (#3563)
add 3e075d654 fix(partitions): stop holding partition refs across .await
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 (6064f971b)
\
N -- N -- N refs/heads/partitions-async-ub (3e075d654)
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/rust/pre-merge/action.yml | 24 +-
.github/config/components.yml | 16 +
Cargo.lock | 15 +-
Cargo.toml | 6 +-
bdd/java/Dockerfile | 2 +-
bdd/java/gradle/wrapper/gradle-wrapper.properties | 2 +-
bdd/java/gradlew | 2 +-
core/binary_protocol/Cargo.toml | 1 +
core/binary_protocol/src/codes.rs | 2 +
core/binary_protocol/src/consensus/header.rs | 4 +
core/binary_protocol/src/consensus/operation.rs | 21 +-
core/binary_protocol/src/dispatch.rs | 22 +-
core/binary_protocol/src/lib.rs | 2 +-
core/binary_protocol/src/primitives/consumer.rs | 4 +-
.../src/requests/consumer_groups/mod.rs | 2 +
...in_consumer_group.rs => sync_consumer_group.rs} | 32 +-
.../src/responses/consumer_groups/mod.rs | 2 +
.../consumer_groups/sync_consumer_group.rs | 114 +++
core/cli/Cargo.toml | 1 +
core/common/Cargo.toml | 1 +
core/common/src/consumer_group_client_state.rs | 219 +++++
core/common/src/error/iggy_error.rs | 4 +
core/common/src/lib.rs | 13 +
.../src/traits/binary_impls/consumer_groups.rs | 13 +
core/common/src/traits/binary_impls/messages.rs | 237 +++++
core/common/src/traits/binary_impls/system.rs | 5 +
core/common/src/traits/binary_transport.rs | 8 +
core/common/src/traits/system_client.rs | 7 +
core/connectors/runtime/Cargo.toml | 1 -
core/connectors/runtime/src/source.rs | 6 +-
core/connectors/sdk/Cargo.toml | 1 -
core/connectors/sdk/src/lib.rs | 7 +-
core/connectors/sdk/src/sink.rs | 5 +-
core/connectors/sdk/src/source.rs | 5 +-
core/connectors/sinks/README.md | 1 -
core/connectors/sinks/delta_sink/Cargo.toml | 3 +-
.../connectors/sinks/elasticsearch_sink/Cargo.toml | 3 +-
core/connectors/sinks/iceberg_sink/Cargo.toml | 3 +-
core/connectors/sinks/postgres_sink/Cargo.toml | 3 +-
core/connectors/sinks/quickwit_sink/Cargo.toml | 3 +-
core/connectors/sinks/stdout_sink/Cargo.toml | 3 +-
core/connectors/sources/README.md | 1 -
.../sources/elasticsearch_source/Cargo.toml | 3 +-
core/connectors/sources/influxdb_source/Cargo.toml | 15 +-
.../sources/influxdb_source/dependencies.md | 1 -
core/connectors/sources/postgres_source/Cargo.toml | 3 +-
core/connectors/sources/random_source/Cargo.toml | 3 +-
core/consensus/src/observability.rs | 4 +
core/integration/Cargo.toml | 1 -
core/integration/src/harness/context.rs | 8 +-
core/integration/src/harness/port_reserver.rs | 180 ++--
core/integration/tests/data_integrity/mod.rs | 13 +-
core/integration/tests/mod.rs | 28 +-
core/integration/tests/server/{cg.rs => cg_vsr.rs} | 39 +-
core/integration/tests/server/mod.rs | 5 +-
.../server/scenarios/authentication_scenario.rs | 12 +-
...onsumer_group_duplicate_name_create_scenario.rs | 118 +++
.../server/scenarios/log_rotation_scenario.rs | 4 +-
core/integration/tests/server/scenarios/mod.rs | 13 +-
core/metadata/src/impls/metadata.rs | 153 +++-
core/metadata/src/stm/consumer_group.rs | 971 +++++++++++++++------
core/metadata/src/stm/mux.rs | 23 +-
core/metadata/src/stm/snapshot.rs | 12 +-
core/metadata/src/stm/stream.rs | 536 +++++++++++-
core/partitions/Cargo.toml | 1 +
core/partitions/src/iggy_partition.rs | 101 ++-
core/partitions/src/iggy_partitions.rs | 21 +
core/partitions/src/poll_plan.rs | 122 ++-
core/sdk/Cargo.toml | 1 +
.../src/client_wrappers/binary_system_client.rs | 12 +
core/sdk/src/clients/client.rs | 7 +
core/sdk/src/quic/quic_client.rs | 9 +
core/sdk/src/tcp/tcp_client.rs | 9 +
core/sdk/src/vsr.rs | 1 +
core/sdk/src/websocket/websocket_client.rs | 9 +
core/server-ng/src/bootstrap.rs | 28 +-
core/server-ng/src/consumer_group.rs | 257 ++++++
core/server-ng/src/dispatch.rs | 354 +++++++-
core/server-ng/src/lib.rs | 1 +
core/server-ng/src/partition_reconciler.rs | 386 +++++++-
core/server-ng/src/responses.rs | 221 ++++-
core/server-ng/src/session_manager.rs | 55 +-
core/server_common/Cargo.toml | 1 -
core/server_common/src/memory_pool.rs | 5 +-
core/shard/src/lib.rs | 41 +
core/shard/src/router.rs | 20 +-
core/simulator/src/deps.rs | 3 +-
core/simulator/src/replica.rs | 4 +-
.../java/gradle/wrapper/gradle-wrapper.properties | 2 +-
examples/java/gradlew | 2 +-
foreign/java/build.gradle.kts | 4 +-
.../java/gradle/wrapper/gradle-wrapper.properties | 2 +-
foreign/java/gradlew | 2 +-
scripts/verify-crates-publish.sh | 29 +
94 files changed, 4043 insertions(+), 638 deletions(-)
copy core/binary_protocol/src/requests/consumer_groups/{join_consumer_group.rs
=> sync_consumer_group.rs} (76%)
create mode 100644
core/binary_protocol/src/responses/consumer_groups/sync_consumer_group.rs
create mode 100644 core/common/src/consumer_group_client_state.rs
copy core/integration/tests/server/{cg.rs => cg_vsr.rs} (73%)
create mode 100644
core/integration/tests/server/scenarios/consumer_group_duplicate_name_create_scenario.rs
create mode 100644 core/server-ng/src/consumer_group.rs