This is an automated email from the ASF dual-hosted git repository.

hubcio pushed a change to branch fix/server-ng-sdk-behavior-gaps
in repository https://gitbox.apache.org/repos/asf/iggy.git


    omit d2b0f1182 fix(server-ng): close server-ng SDK-visible behavior gaps
     add 125a82e8b feat(partitions): implement state transfer (#3808)
     add 8b09f19d1 chore(deps): Bump rules_rust from 0.71.3 to 0.72.0 in 
/foreign/cpp in the cpp group across 1 directory (#3829)
     add 2e1cbfa45 chore(deps): Bump the node group across 2 directories with 2 
updates (#3830)
     add 50518c448 chore(deps): Bump the web group across 1 directory with 5 
updates (#3831)
     new 4f5b088cf fix(server-ng): close server-ng SDK-visible behavior gaps
     new be93463d1 fix(server-ng): close remaining purge data-loss and 
typed-error gaps

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   (d2b0f1182)
            \
             N -- N -- N   refs/heads/fix/server-ng-sdk-behavior-gaps 
(be93463d1)

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                                         |    1 +
 core/bench/Cargo.toml                              |   12 +
 core/bench/src/main.rs                             |   14 +
 core/binary_protocol/src/consensus/header.rs       |   58 +-
 core/binary_protocol/src/consensus/operation.rs    |   15 +
 core/configs/src/server_ng_config/defaults.rs      |    5 +
 core/configs/src/server_ng_config/displays.rs      |   20 +-
 core/configs/src/server_ng_config/partition.rs     |   76 +
 core/configs/src/server_ng_config/validators.rs    |   28 +
 core/consensus/src/impls.rs                        |   16 +-
 core/consensus/src/lib.rs                          |    9 +-
 core/consensus/src/state_manifest.rs               |   36 +-
 core/consensus/src/state_transfer.rs               |  279 ++
 core/consensus/src/vsr_state.rs                    |  112 +-
 core/integration/src/bench_utils.rs                |   94 +-
 .../src/harness/orchestrator/harness.rs            |   31 +
 core/integration/tests/cluster/mod.rs              |    1 +
 .../tests/cluster/partition_state_transfer.rs      |  599 ++++
 .../data_integrity/verify_after_server_restart.rs  |   75 +-
 core/integration/tests/sdk/hello_world.rs          |    1 -
 .../tests/server/cluster_view_durability_vsr.rs    |   17 +-
 core/integration/tests/server/mod.rs               |    4 +
 .../tests/server/partition_view_durability_vsr.rs  |  330 ++
 .../integration/tests/server/poll_semantics_vsr.rs |   63 +-
 .../server/scenarios/purge_delete_scenario.rs      |   96 +-
 .../tests/server/topic_admission_vsr.rs            |   16 +
 core/journal/src/lib.rs                            |    1 +
 core/journal/src/local_gate.rs                     |  207 ++
 core/journal/src/superblock.rs                     |   68 +-
 core/metadata/src/impls/metadata.rs                |  159 +-
 core/metadata/src/impls/recovery.rs                |    1 +
 core/metadata/src/lib.rs                           |    4 +
 core/metadata/src/stm/stream.rs                    |   83 +-
 core/partitions/Cargo.toml                         |    1 +
 core/partitions/src/iggy_partition.rs              | 1980 ++++++++++-
 core/partitions/src/iggy_partitions.rs             |   32 +-
 core/partitions/src/journal.rs                     |  133 +-
 core/partitions/src/lib.rs                         |    6 +-
 core/partitions/src/offset_storage.rs              |  186 +-
 core/partitions/src/state_transfer.rs              | 3035 +++++++++++++++++
 core/partitions/src/types.rs                       |   21 +
 core/server-ng/config.toml                         |   30 +
 core/server-ng/src/auth.rs                         |   31 +-
 core/server-ng/src/bootstrap.rs                    |  249 +-
 core/server-ng/src/consumer_group.rs               |   21 +-
 core/server-ng/src/dispatch.rs                     |  263 +-
 core/server-ng/src/dispatch/authz.rs               |   61 +-
 core/server-ng/src/http/handlers.rs                |   11 +-
 core/server-ng/src/partition_helpers.rs            |  307 +-
 core/server-ng/src/partition_reconciler.rs         |   61 +-
 core/server-ng/src/responses.rs                    |  146 +-
 core/server-ng/src/segment_cleaner.rs              |   98 +-
 core/server-ng/src/segment_recovery.rs             |  269 +-
 core/server-ng/src/server_error.rs                 |  104 +
 core/server-ng/src/users.rs                        |    6 +-
 core/shard/src/builder.rs                          |   20 +-
 core/shard/src/lib.rs                              | 3428 +++++++++++++++++---
 core/shard/src/metrics.rs                          |   41 +
 core/shard/src/router.rs                           |  117 +-
 core/simulator/src/lib.rs                          |  110 +-
 core/simulator/src/replica.rs                      |   13 +-
 examples/node/package-lock.json                    |   26 +-
 examples/node/package.json                         |    2 +-
 foreign/cpp/MODULE.bazel                           |    2 +-
 foreign/cpp/MODULE.bazel.lock                      |    4 +-
 foreign/node/package-lock.json                     |    8 +-
 foreign/node/package.json                          |    2 +-
 web/package-lock.json                              |  544 +++-
 web/package.json                                   |   10 +-
 69 files changed, 12425 insertions(+), 1484 deletions(-)
 create mode 100644 core/consensus/src/state_transfer.rs
 create mode 100644 core/integration/tests/cluster/partition_state_transfer.rs
 create mode 100644 
core/integration/tests/server/partition_view_durability_vsr.rs
 create mode 100644 core/journal/src/local_gate.rs
 create mode 100644 core/partitions/src/state_transfer.rs

Reply via email to