This is an automated email from the ASF dual-hosted git repository.
krishvishal pushed a change to branch correctness-issues
in repository https://gitbox.apache.org/repos/asf/iggy.git
discard 531d66fef test(integration): batch sends in the message-cleanup
scenarios
discard d7812eed6 test(integration): stop slab-reuse wait from evicting its
own client
discard 4b80e2c4d test(ci): charge harness-backed tests their real thread cost
add 2afd4b12b feat(consensus): persist metadata VSR state in a durable
superblock (#3767)
add 102484af2 feat(python): expose Permissions and remaining user auth
methods (#3727)
new cbba14cd3 test(ci): charge harness-backed tests their real thread cost
new 500620a20 test(integration): stop slab-reuse wait from evicting its
own client
new a39ff8da3 test(integration): batch sends in the message-cleanup
scenarios
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 (531d66fef)
\
N -- N -- N refs/heads/correctness-issues (a39ff8da3)
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 3 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:
Cargo.lock | 5 +
core/binary_protocol/src/consensus/header.rs | 41 +-
core/consensus/Cargo.toml | 1 +
core/consensus/src/client_table.rs | 514 ++++++++++-
core/consensus/src/impls.rs | 445 +++++++++-
core/consensus/src/lib.rs | 7 +-
core/consensus/src/vsr_state.rs | 224 +++++
core/integration/Cargo.toml | 8 +-
.../tests/server/cluster_view_durability_vsr.rs | 266 ++++++
.../server/metadata_checkpoint_recovery_vsr.rs | 138 +++
core/integration/tests/server/mod.rs | 8 +
core/journal/Cargo.toml | 2 +
core/journal/src/lib.rs | 15 +
core/journal/src/prepare_journal.rs | 495 ++++++++++-
core/journal/src/superblock.rs | 824 +++++++++++++++++
core/metadata/src/impls/metadata.rs | 777 +++++++++++++---
core/metadata/src/impls/recovery.rs | 976 +++++++++++++++++++--
core/metadata/src/lib.rs | 4 +-
core/metadata/src/stm/snapshot.rs | 25 +-
core/metadata/src/stm/stream.rs | 86 ++
core/metadata/src/stm/user.rs | 5 +
core/server-ng/src/bootstrap.rs | 224 +++--
core/server-ng/src/dispatch.rs | 7 +-
core/server-ng/src/partition_reconciler.rs | 2 +-
core/shard/src/lib.rs | 94 +-
core/simulator/src/deps.rs | 121 +++
core/simulator/src/lib.rs | 517 ++++++++++-
core/simulator/src/replica.rs | 114 ++-
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 +
36 files changed, 7282 insertions(+), 404 deletions(-)
create mode 100644 core/consensus/src/vsr_state.rs
create mode 100644 core/integration/tests/server/cluster_view_durability_vsr.rs
create mode 100644
core/integration/tests/server/metadata_checkpoint_recovery_vsr.rs
create mode 100644 core/journal/src/superblock.rs
create mode 100644 foreign/python/src/permissions.rs
create mode 100644 foreign/python/tests/test_permissions.py