This is an automated email from the ASF dual-hosted git repository.
krishvishal pushed a change to branch part-mat-barrier
in repository https://gitbox.apache.org/repos/asf/iggy.git
omit f0fbc0437 Merge branch 'master' into part-mat-barrier
omit 2c2610eb2 feat(server-ng): close the partition materialisation race at
the owner
add 102484af2 feat(python): expose Permissions and remaining user auth
methods (#3727)
add 1453114da feat(metadata): state transfer for snapshot and client table
(#3765)
add 78d872bef feat(server-ng): close the partition materialisation race at
the owner
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 (f0fbc0437)
\
N -- N -- N refs/heads/part-mat-barrier (78d872bef)
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 +
core/binary_protocol/src/consensus/command.rs | 19 +-
core/binary_protocol/src/consensus/header.rs | 296 ++++
core/binary_protocol/src/consensus/mod.rs | 3 +-
core/binary_protocol/src/lib.rs | 5 +-
core/configs/src/server_ng_config/cluster.rs | 6 +
core/configs/src/server_ng_config/validators.rs | 13 +
core/connectors/sinks/s3_sink/Cargo.toml | 6 +
core/consensus/Cargo.toml | 1 +
core/consensus/src/client_table.rs | 475 +++++-
core/consensus/src/impls.rs | 395 ++++-
core/consensus/src/le_cursor.rs | 115 ++
core/consensus/src/lib.rs | 10 +-
core/consensus/src/metadata_helpers.rs | 27 +-
core/consensus/src/observability.rs | 4 +-
core/consensus/src/plane_helpers.rs | 15 +-
core/consensus/src/state_manifest.rs | 309 ++++
core/integration/Cargo.toml | 5 +-
core/integration/src/harness/config/resolve.rs | 7 +-
core/integration/src/harness/handle/server.rs | 83 +-
.../src/harness/orchestrator/harness.rs | 26 +
.../cli/message/test_message_flush_command.rs | 5 +
.../tests/cluster/client_table_restart.rs | 14 +-
.../tests/cluster/metadata_checkpoint_restart.rs | 276 +++
.../tests/cluster/metadata_state_transfer.rs | 406 +++++
core/integration/tests/cluster/mod.rs | 2 +
core/integration/tests/data_integrity/mod.rs | 11 +-
.../data_integrity/verify_after_server_restart.rs | 31 +
core/integration/tests/server/flush_vsr.rs | 4 +
.../scenarios/segment_rotation_race_scenario.rs | 9 -
core/journal/src/lib.rs | 16 +
core/journal/src/prepare_journal.rs | 13 +
core/metadata/src/impls/metadata.rs | 628 ++++++-
core/metadata/src/impls/recovery.rs | 21 +-
core/metadata/src/lib.rs | 3 +-
core/metadata/src/stm/mod.rs | 10 +
core/metadata/src/stm/mux.rs | 40 +-
core/metadata/src/stm/snapshot.rs | 104 +-
core/metadata/src/stm/stream.rs | 166 +-
core/metadata/src/stm/user.rs | 26 +-
core/partitions/src/iggy_partition.rs | 8 +-
core/partitions/src/iggy_partitions.rs | 2 +-
core/partitions/src/journal.rs | 10 +
core/partitions/src/log.rs | 24 +
core/server-ng/src/bootstrap.rs | 16 +
core/server-ng/src/dispatch.rs | 2 +-
core/server-ng/src/responses.rs | 17 +-
core/server_common/src/consensus_message.rs | 34 +-
core/shard/src/lib.rs | 1761 +++++++++++++++++---
core/shard/src/router.rs | 32 +-
core/simulator/src/deps.rs | 10 +
core/simulator/src/replica.rs | 10 +-
foreign/python/apache_iggy.pyi | 334 +++-
foreign/python/src/client.rs | 103 +-
foreign/python/src/lib.rs | 6 +
foreign/python/src/permissions.rs | 458 +++++
foreign/python/src/user.rs | 9 +
foreign/python/tests/test_permissions.py | 695 ++++++++
foreign/python/tests/test_user.py | 113 +-
foreign/python/tests/utils.py | 23 +
60 files changed, 6887 insertions(+), 386 deletions(-)
create mode 100644 core/consensus/src/le_cursor.rs
create mode 100644 core/consensus/src/state_manifest.rs
create mode 100644
core/integration/tests/cluster/metadata_checkpoint_restart.rs
create mode 100644 core/integration/tests/cluster/metadata_state_transfer.rs
create mode 100644 foreign/python/src/permissions.rs
create mode 100644 foreign/python/tests/test_permissions.py