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


    omit 8148854fd feat(message_bus): async fire-and-forget transport for VSR 
consensus
     add 72b928f0e 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   (8148854fd)
            \
             N -- N -- N   refs/heads/bus (72b928f0e)

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                                         |   2 +-
 DEPENDENCIES.md                                    |  32 ++---
 core/binary_protocol/src/consensus/iobuf.rs        |  61 ++++++++-
 core/configs/src/server_config/cluster.rs          |  16 ++-
 core/configs/src/server_config/defaults.rs         |   5 +-
 core/configs/src/server_config/validators.rs       | 123 ++++++++++++++++++
 core/consensus/src/plane_helpers.rs                |   6 +
 core/message_bus/Cargo.toml                        |   2 +-
 core/message_bus/src/client_listener.rs            | 100 +++++++++------
 core/message_bus/src/connector.rs                  |  80 +++++-------
 core/message_bus/src/error.rs                      |   3 -
 core/message_bus/src/framing.rs                    |  91 +++++++------
 core/message_bus/src/lib.rs                        | 103 ++++++++++-----
 .../src/lifecycle/connection_registry.rs           |  72 ++++++++++-
 core/message_bus/src/replica_io.rs                 | 141 +++++++++++++++++++++
 core/message_bus/src/replica_listener.rs           |  84 ++++++------
 core/message_bus/src/socket_opts.rs                |  61 +++++++++
 core/message_bus/src/socket_split.rs               |  51 --------
 core/message_bus/src/transports/mod.rs             |  52 +-------
 core/message_bus/src/writer_task.rs                |  18 ++-
 core/message_bus/tests/shard_zero_gating.rs        | 137 ++++++++++++++++++++
 core/metadata/src/impls/metadata.rs                |   8 +-
 core/partitions/src/iggy_partitions.rs             |  13 +-
 core/shard/src/lib.rs                              |  13 ++
 core/shard/src/router.rs                           |  68 +++++++---
 25 files changed, 981 insertions(+), 361 deletions(-)
 create mode 100644 core/message_bus/src/replica_io.rs
 create mode 100644 core/message_bus/src/socket_opts.rs
 delete mode 100644 core/message_bus/src/socket_split.rs
 create mode 100644 core/message_bus/tests/shard_zero_gating.rs

Reply via email to