This is an automated email from the ASF dual-hosted git repository.
hubcio pushed a change to branch crossfire-server-ng
in repository https://gitbox.apache.org/repos/asf/iggy.git
omit 4ee1f2358 feat(cluster): wire multi-shard cross-shard communication
for server-ng
add ca2b10a2f ci: add github-actions ecosystem to dependabot (#3271)
add 645a4e9d4 fix(go): add bounds checking to DeserializeStreams for
payloads > 64KB (#3165)
add a86be3a61 fix(server): warn and skip non-numeric filenames in consumer
offset directories instead of panicking (#3135)
add 29caa3da9 chore(deps): update workspace deps (#3280)
add b03978e9f ci: collapse status into finalize_pr, fix cancel hang (#3282)
add cb5d576a0 ci: run PR triage on ubuntu-24.04-arm for faster pickup
(#3270)
add 3628cec26 fix(ci): disable bazel cache for cpp linting (#3281)
add e04d90d24 fix(ci): stop stale bot from re-marking PRs each week (#3283)
add 99c82b870 chore(deps): bump softprops/action-gh-release from 2 to 3
(#3274)
add 7ef14ed58 feat(cluster): wire multi-shard cross-shard communication
for server-ng
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 (4ee1f2358)
\
N -- N -- N refs/heads/crossfire-server-ng (7ef14ed58)
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:
.github/actions/cpp-bazel/pre-merge/action.yml | 1 +
.github/dependabot.yml | 19 +
.github/workflows/_common.yml | 2 +-
.github/workflows/edge-release.yml | 2 +-
.github/workflows/pr-triage-apply.yml | 2 +-
.github/workflows/pr-triage-collect.yml | 2 +-
.github/workflows/pre-merge.yml | 19 +-
.github/workflows/publish.yml | 8 +-
.github/workflows/stale-prs-unmark-on-activity.yml | 111 ++
.github/workflows/stale-prs-unmark.yml | 54 +
.github/workflows/stale-prs.yml | 5 +-
Cargo.lock | 619 +++++------
Cargo.toml | 42 +-
bdd/python/uv.lock | 358 +++----
core/configs/src/server_config/sharding.rs | 64 ++
core/configs/src/server_config/validators.rs | 111 +-
core/integration/tests/mod.rs | 1 +
core/integration/tests/storage/consumer_offsets.rs | 180 ++++
.../tests/storage}/mod.rs | 2 +-
core/journal/src/prepare_journal.rs | 368 ++++++-
core/metadata/src/impls/metadata.rs | 40 +-
core/metadata/src/stm/mod.rs | 128 ++-
core/server-ng/config.toml | 14 +
core/server-ng/src/bootstrap.rs | 316 ++++--
core/server-ng/src/server_error.rs | 95 ++
core/server/src/streaming/partitions/storage.rs | 148 ++-
core/shard/Cargo.toml | 1 +
core/shard/src/builder.rs | 34 +-
core/shard/src/coordinator.rs | 88 +-
core/shard/src/lib.rs | 121 ++-
core/shard/src/metrics.rs | 111 +-
core/shard/src/router.rs | 110 +-
foreign/cpp/Cargo.toml | 2 +-
.../binary_response_deserializer.go | 39 +-
.../binary_response_deserializer_test.go | 160 +++
foreign/go/client/tcp/tcp_stream_management.go | 2 +-
foreign/python/Cargo.toml | 6 +-
foreign/python/uv.lock | 1076 ++++++++++----------
38 files changed, 3039 insertions(+), 1422 deletions(-)
create mode 100644 .github/workflows/stale-prs-unmark-on-activity.yml
create mode 100644 .github/workflows/stale-prs-unmark.yml
create mode 100644 core/integration/tests/storage/consumer_offsets.rs
copy core/{server/src/streaming/diagnostics =>
integration/tests/storage}/mod.rs (97%)