This is an automated email from the ASF dual-hosted git repository.
hgruszecki pushed a change to branch bus
in repository https://gitbox.apache.org/repos/asf/iggy.git
discard 93a8d4640 feat(message_bus): async fire-and-forget transport for VSR
consensus
add 6d445213d feat(partitions): add consensus per partition and extra
(#3071)
add 2d6562b7f feat(consensus): add session registration protocol with
combined login+register (#3108)
add c223852c1 feat(message_bus): async fire-and-forget transport for VSR
consensus
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 (93a8d4640)
\
N -- N -- N refs/heads/bus (c223852c1)
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/Cargo.toml | 1 +
core/binary_protocol/src/codes.rs | 4 +
core/binary_protocol/src/consensus/header.rs | 98 +-
core/binary_protocol/src/consensus/operation.rs | 44 +-
core/binary_protocol/src/dispatch.rs | 113 +-
core/binary_protocol/src/framing.rs | 342 ++++-
core/binary_protocol/src/lib.rs | 2 +-
.../src/requests/users/login_register.rs | 216 +++
.../src/requests/users/login_register_with_pat.rs | 203 +++
core/binary_protocol/src/requests/users/mod.rs | 4 +
.../users/{login_user.rs => login_register.rs} | 59 +-
core/binary_protocol/src/responses/users/mod.rs | 2 +
core/consensus/src/client_table.rs | 496 +++++--
core/consensus/src/lib.rs | 2 -
core/consensus/src/namespaced_pipeline.rs | 628 ---------
core/consensus/src/observability.rs | 232 ++++
core/consensus/src/plane_helpers.rs | 55 +-
.../server/scenarios/authentication_scenario.rs | 8 +-
core/metadata/src/impls/metadata.rs | 107 +-
core/partitions/src/iggy_partition.rs | 1387 +++++++++++++++++++-
core/partitions/src/iggy_partitions.rs | 1348 +------------------
core/partitions/src/journal.rs | 5 +
core/partitions/src/lib.rs | 1 +
core/partitions/src/offset_storage.rs | 64 +
core/partitions/src/types.rs | 55 +-
core/sdk/src/lib.rs | 1 +
core/sdk/src/session.rs | 252 ++++
core/server-ng/src/lib.rs | 3 +
core/server-ng/src/login_register.rs | 467 +++++++
core/server-ng/src/session_manager.rs | 432 ++++++
core/shard/src/lib.rs | 426 ++++--
core/shard/src/router.rs | 14 +-
core/simulator/src/client.rs | 73 +-
core/simulator/src/lib.rs | 103 +-
core/simulator/src/replica.rs | 25 +-
36 files changed, 4904 insertions(+), 2369 deletions(-)
create mode 100644 core/binary_protocol/src/requests/users/login_register.rs
create mode 100644
core/binary_protocol/src/requests/users/login_register_with_pat.rs
copy core/binary_protocol/src/responses/users/{login_user.rs =>
login_register.rs} (51%)
delete mode 100644 core/consensus/src/namespaced_pipeline.rs
create mode 100644 core/partitions/src/offset_storage.rs
create mode 100644 core/sdk/src/session.rs
create mode 100644 core/server-ng/src/login_register.rs
create mode 100644 core/server-ng/src/session_manager.rs