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

krishvishal pushed a change to branch vsr-dvc-headers
in repository https://gitbox.apache.org/repos/asf/iggy.git


    omit e2819a567 fix: address review comment
    omit d93940ef3 Merge branch 'master' into vsr-dvc-headers
    omit d4b4d3046 fix(consensus): stop view change discarding committed ops
     add 0604cca7b chore(deps): Update testcontainers requirement from 
<5.0,>=3.7.0 to >=4.15.0,<5.0 in /bdd/python (#3826)
     add 125a82e8b feat(partitions): implement state transfer (#3808)
     add 1dda50399 fix(consensus): stop view change discarding committed ops
     add 9ffff1eb0 fix: address review comment

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   (e2819a567)
            \
             N -- N -- N   refs/heads/vsr-dvc-headers (9ffff1eb0)

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 +
 bdd/python/uv.lock                                 |    6 +-
 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                        |   10 +-
 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 ++
 .../server/scenarios/purge_delete_scenario.rs      |   95 +-
 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                |  149 +-
 core/metadata/src/impls/recovery.rs                |    1 +
 core/metadata/src/lib.rs                           |    4 +
 core/partitions/Cargo.toml                         |    1 +
 core/partitions/src/iggy_partition.rs              | 1503 ++++++++-
 core/partitions/src/iggy_partitions.rs             |   32 +-
 core/partitions/src/journal.rs                     |  102 +-
 core/partitions/src/lib.rs                         |    6 +-
 core/partitions/src/offset_storage.rs              |   21 +-
 core/partitions/src/state_transfer.rs              | 3002 +++++++++++++++++
 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                    |  245 +-
 core/server-ng/src/consumer_group.rs               |   21 +-
 core/server-ng/src/dispatch.rs                     |  193 +-
 core/server-ng/src/dispatch/authz.rs               |   61 +-
 core/server-ng/src/partition_helpers.rs            |  300 +-
 core/server-ng/src/partition_reconciler.rs         |   50 +-
 core/server-ng/src/responses.rs                    |   94 +-
 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                              | 3395 +++++++++++++++++---
 core/shard/src/metrics.rs                          |   22 +
 core/shard/src/router.rs                           |   99 +-
 core/simulator/src/lib.rs                          |  110 +-
 core/simulator/src/replica.rs                      |   13 +-
 examples/python/uv.lock                            |    4 +-
 foreign/python/pyproject.toml                      |    4 +-
 foreign/python/uv.lock                             |   12 +-
 60 files changed, 10973 insertions(+), 1156 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