This is an automated email from the ASF dual-hosted git repository.
hgruszecki pushed a change to branch pedantic-consensus
in repository https://gitbox.apache.org/repos/asf/iggy.git
discard 0312c6a4f chore(consensus): enable clippy pedantic/nursery and fix all
warnings
discard 5cb2ffb96 feat(metadata): thread STM response into consensus Reply body
add 5ec0d73c8 fix(cluster): fix type mismatch for variadic plane impl
(#2857)
add 118ab6a76 ci(go): improve go bdd Dockerfile to leverage Docker layer
caching (#2862)
add 50423db99 feat(consensus): Add metadata and partition handles for
MuxPlane (#2855)
add 11295b3fe feat(shard): Implement shard router (#2853)
add 654d94cfe ci: add --no-format to cargo sort check (#2864)
add 79caf940e perf: make IggyMessagesBatch::last_offset O(1) (#2840)
add 62f7256e2 fix(ci): fix gnome-keyring locking mid-test in CI (#2868)
add 13ff0f53a fix(ci): use cargo-llvm-cov properly for Python SDK coverage
in Codecov (#2867)
new 4bf90f5da feat(metadata): thread STM response into consensus Reply body
new 86c4bc97a chore(consensus): enable clippy pedantic/nursery and fix all
warnings
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 (0312c6a4f)
\
N -- N -- N refs/heads/pedantic-consensus (86c4bc97a)
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:
.../actions/python-maturin/pre-merge/action.yml | 50 +++---
.github/actions/rust/pre-merge/action.yml | 8 +-
.github/workflows/post-merge.yml | 53 +++---
.pre-commit-config.yaml | 2 +-
Cargo.lock | 19 ++-
Cargo.toml | 40 +----
DEPENDENCIES.md | 1 +
bdd/go/Dockerfile | 19 ++-
core/common/src/macros.rs | 8 +-
core/common/src/types/consensus/header.rs | 40 +++++
.../common/src/types/message/message_boundaries.rs | 83 ++++++++++
core/common/src/types/message/message_view.rs | 88 +++++++++-
core/common/src/types/message/messages_batch.rs | 53 ++----
.../common/src/types/message/messages_batch_mut.rs | 42 +++--
core/common/src/types/message/mod.rs | 1 +
core/consensus/src/plane_mux.rs | 52 ++++++
core/metadata/src/impls/metadata.rs | 40 +----
core/partitions/src/iggy_partitions.rs | 25 +--
core/shard/Cargo.toml | 5 +
core/shard/src/lib.rs | 138 ++++++++++++----
core/shard/src/router.rs | 184 +++++++++++++++++++++
core/shard/src/shards_table.rs | 93 +++++++++++
core/simulator/src/replica.rs | 6 +-
23 files changed, 798 insertions(+), 252 deletions(-)
create mode 100644 core/common/src/types/message/message_boundaries.rs
create mode 100644 core/shard/src/router.rs
create mode 100644 core/shard/src/shards_table.rs