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

hgruszecki pushed a change to branch refactor-binary-6-server-integration
in repository https://gitbox.apache.org/repos/asf/iggy.git


 discard 350369e4d refactor(server): replace ServerCommand enum and binary 
mapper with wire types
    omit 88374f7fd refactor(consensus): consolidate VSR types in binary_protocol
     add 298cd3282 fix(server): prevent consumer offset skip during concurrent 
produce+consume (#2958)
     add 7ed29dc69 fix(deps): resolve 15 Dependabot vulnerability alerts (#3016)
     add a81bcc601 feat(server): aligned buffer memory pool (#2921)
     add 484f98a59 feat(server): add io_uring EINVAL diagnostics for shard 
executors (#3021)
     add 2098f4918 test(csharp): wait for HTTP readiness in fixture (#3024)
     add 4e3029d6b refactor(consensus): consolidate VSR types in 
binary_protocol (#3014)
     new c0fc5c076 refactor(server): replace ServerCommand enum and binary 
mapper with wire types

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   (350369e4d)
            \
             N -- N -- N   refs/heads/refactor-binary-6-server-integration 
(c0fc5c076)

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 1 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 +
 Cargo.toml                                         |    3 +-
 core/bench/dashboard/server/Cargo.lock             | 1575 -------------
 core/common/Cargo.toml                             |    1 +
 core/common/src/alloc/buffer.rs                    |  145 +-
 core/common/src/alloc/memory_pool.rs               |   62 +-
 .../common/src/types/message/messages_batch_mut.rs |   25 +-
 .../common/src/types/message/messages_batch_set.rs |   18 +-
 core/common/src/types/segment.rs                   |   29 +-
 .../src/types/segment_storage/index_reader.rs      |   31 +-
 .../src/types/segment_storage/messages_reader.rs   |   32 +-
 core/integration/tests/server/message_cleanup.rs   |    9 +-
 .../concurrent_produce_consume_scenario.rs         |  196 ++
 .../server/scenarios/message_cleanup_scenario.rs   |  169 +-
 core/integration/tests/server/scenarios/mod.rs     |    2 +
 .../scenarios/reconnect_after_restart_scenario.rs  |  300 ++-
 .../scenarios/restart_offset_skip_scenario.rs      |  272 +++
 core/integration/tests/server/specific.rs          |   39 +-
 core/partitions/src/iggy_partition.rs              |    2 +-
 core/partitions/src/lib.rs                         |   10 +-
 core/server/src/bootstrap.rs                       |   10 +-
 core/server/src/diagnostics.rs                     |  226 ++
 core/server/src/http/messages.rs                   |   20 +-
 core/server/src/main.rs                            |   28 +-
 core/server/src/shard/mod.rs                       |   82 +-
 core/server/src/shard/system/messages.rs           |    2 +-
 core/server/src/shard/system/partitions.rs         |   74 +-
 core/server/src/shard/system/segments.rs           |  124 +-
 core/server/src/streaming/partitions/journal.rs    |   93 +-
 .../src/streaming/partitions/local_partition.rs    |    4 +-
 core/server/src/streaming/partitions/log.rs        |   12 +
 core/server/src/streaming/partitions/mod.rs        |    2 +
 core/server/src/streaming/partitions/ops.rs        |  297 +--
 core/server/src/streaming/partitions/ops_tests.rs  |  359 +++
 examples/node/package-lock.json                    |  490 ++--
 examples/node/package.json                         |    3 +
 .../Fixtures/IggyServerFixture.cs                  |    6 +-
 foreign/node/package-lock.json                     | 2374 ++++++++------------
 foreign/node/package.json                          |    3 +
 web/package-lock.json                              | 1003 +++++----
 web/package.json                                   |    5 +-
 41 files changed, 4037 insertions(+), 4101 deletions(-)
 delete mode 100644 core/bench/dashboard/server/Cargo.lock
 create mode 100644 
core/integration/tests/server/scenarios/concurrent_produce_consume_scenario.rs
 create mode 100644 
core/integration/tests/server/scenarios/restart_offset_skip_scenario.rs
 create mode 100644 core/server/src/streaming/partitions/ops_tests.rs

Reply via email to