This is an automated email from the ASF dual-hosted git repository.
hgruszecki pushed a change to branch global-metadata-leftright
in repository https://gitbox.apache.org/repos/asf/iggy.git
omit 2d20028a5 refactor concurrent scenario, check messages order
omit c9f2d16ca refactor(server): replace slab ECS with LeftRight-based
global metadata
add 871b18397 feat(metadata): impl states for streams,users,
consumer_groups in metadata module (#2582)
new 26c65d5fe refactor(server): replace slab ECS with LeftRight-based
global metadata
new 0e81d8fb2 refactor concurrent scenario, check messages order
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 (2d20028a5)
\
N -- N -- N refs/heads/global-metadata-leftright (0e81d8fb2)
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 2 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 | 3 +-
Cargo.toml | 1 +
.../consumer_groups/create_consumer_group.rs | 2 +-
.../consumer_groups/delete_consumer_group.rs | 2 +-
.../src/commands/partitions/create_partitions.rs | 2 +-
.../src/commands/partitions/delete_partitions.rs | 2 +-
.../create_personal_access_token.rs | 2 +-
.../delete_personal_access_token.rs | 2 +-
.../src/commands/segments/delete_segments.rs | 2 +-
core/common/src/commands/streams/create_stream.rs | 2 +-
core/common/src/commands/streams/delete_stream.rs | 2 +-
core/common/src/commands/streams/purge_stream.rs | 2 +-
core/common/src/commands/streams/update_stream.rs | 2 +-
core/common/src/commands/topics/create_topic.rs | 2 +-
core/common/src/commands/topics/delete_topic.rs | 2 +-
core/common/src/commands/topics/purge_topic.rs | 2 +-
core/common/src/commands/topics/update_topic.rs | 2 +-
core/common/src/commands/users/change_password.rs | 2 +-
core/common/src/commands/users/create_user.rs | 2 +-
core/common/src/commands/users/delete_user.rs | 2 +-
.../src/commands/users/update_permissions.rs | 2 +-
core/common/src/commands/users/update_user.rs | 2 +-
core/common/src/types/consensus/message.rs | 16 +
core/metadata/Cargo.toml | 3 +-
core/metadata/src/impls/metadata.rs | 220 ++++---
core/metadata/src/stm/consumer_group.rs | 321 +++++-----
core/metadata/src/stm/mod.rs | 304 +++++++---
core/metadata/src/stm/mux.rs | 12 +-
core/metadata/src/stm/stream.rs | 672 +++++++++------------
core/metadata/src/stm/user.rs | 401 +++++-------
core/server/Cargo.toml | 2 +-
31 files changed, 1020 insertions(+), 975 deletions(-)