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

hgruszecki pushed a change to branch io_uring_tpc_task_registry
in repository https://gitbox.apache.org/repos/asf/iggy.git


 discard 1fe834c3 oneshot fsync
 discard e7bb6565 thread local storage
 discard 7b50a8bc first version of task supervisor
     add 678fec43 feat(io_uring): fix get_snapshot command (#2196)
     add 40dc0899 feat(io_uring): fix integration tests (#2200)
     add cbd62a8f feat(io_uring): fix first shard annotation by making the id 
relative (#2212)
     add a822c449 feat(io_uring): fix encryptor (#2211)
     add 77cce6ee feat(io_uring): remove old storage from the shard (#2214)
     add 6b3774e5 feat(io_uring): implement the runtime trait from 
opentelemetry_sdk (#2215)
     new 4c399351 first version of task supervisor
     new 7a47a615 thread local storage
     new b6fcb77d oneshot fsync

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   (1fe834c3)
            \
             N -- N -- N   refs/heads/io_uring_tpc_task_registry (b6fcb77d)

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 3 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                                         |   4 -
 Cargo.toml                                         |   1 -
 core/bench/src/actors/consumer/client/low_level.rs |   2 +-
 core/bench/src/benchmarks/benchmark.rs             |   7 +-
 core/bench/src/benchmarks/common.rs                |  10 +-
 core/integration/tests/server/general.rs           |   3 +-
 .../tests/server/scenarios/system_scenario.rs      |  58 +++-----
 core/server/Cargo.toml                             |   2 -
 .../create_consumer_group_handler.rs               |  15 +-
 .../delete_consumer_group_handler.rs               |  29 ++++
 .../consumer_groups/join_consumer_group_handler.rs |  16 ++
 .../leave_consumer_group_handler.rs                |  16 ++
 .../delete_consumer_offset_handler.rs              |   2 +-
 .../store_consumer_offset_handler.rs               |   2 +-
 .../login_with_personal_access_token_handler.rs    |   6 +
 .../handlers/segments/delete_segments_handler.rs   |  10 +-
 .../handlers/streams/delete_stream_handler.rs      |   4 +-
 .../binary/handlers/topics/delete_topic_handler.rs |   2 +-
 .../binary/handlers/topics/get_topic_handler.rs    |   2 +-
 .../binary/handlers/topics/update_topic_handler.rs |  15 +-
 .../binary/handlers/users/create_user_handler.rs   |   1 +
 core/server/src/binary/mapper.rs                   |  10 ++
 core/server/src/http/http_server.rs                |  17 ++-
 core/server/src/log/logger.rs                      |   5 +-
 core/server/src/log/mod.rs                         |   1 +
 core/server/src/log/runtime.rs                     |  89 ++++++++---
 core/server/src/main.rs                            |  14 +-
 core/server/src/shard/builder.rs                   |   9 --
 core/server/src/shard/mod.rs                       | 163 +++++++++++++++++----
 core/server/src/shard/namespace.rs                 |   2 -
 core/server/src/shard/system/consumer_groups.rs    | 107 +++++++++++---
 core/server/src/shard/system/consumer_offsets.rs   |  57 ++-----
 core/server/src/shard/system/messages.rs           |  55 ++++++-
 core/server/src/shard/system/partitions.rs         |  13 +-
 .../src/shard/system/personal_access_tokens.rs     |  14 +-
 core/server/src/shard/system/segments.rs           |  97 +++++++++++-
 core/server/src/shard/system/snapshot/mod.rs       |  34 ++---
 core/server/src/shard/system/snapshot/procdump.rs  |  18 +--
 core/server/src/shard/system/stats.rs              |  55 ++++---
 core/server/src/shard/system/streams.rs            |  68 ++++++---
 core/server/src/shard/system/topics.rs             |  56 +++++--
 core/server/src/shard/system/users.rs              |  69 +++++----
 .../src/shard/tasks/continuous/http_server.rs      |   9 +-
 .../src/shard/tasks/continuous/message_pump.rs     |  13 +-
 core/server/src/shard/tasks/shutdown.rs            |   2 +-
 core/server/src/shard/tasks/supervisor.rs          |   9 +-
 core/server/src/shard/transmission/event.rs        |  20 +++
 core/server/src/slab/consumer_groups.rs            |  16 +-
 core/server/src/slab/partitions.rs                 |  20 ++-
 core/server/src/slab/streams.rs                    |  20 ++-
 core/server/src/slab/topics.rs                     |  18 ++-
 .../server/src/streaming/clients/client_manager.rs |  43 ++++--
 core/server/src/streaming/partitions/helpers.rs    |  82 +++++++----
 core/server/src/streaming/partitions/log.rs        |  12 ++
 core/server/src/streaming/partitions/partition2.rs |  20 +++
 .../streaming/segments/messages/messages_writer.rs |   4 +
 core/server/src/streaming/segments/storage.rs      |   8 +-
 core/server/src/streaming/stats/stats.rs           |  92 ++++++++++++
 core/server/src/streaming/storage.rs               |   1 +
 core/server/src/streaming/streams/helpers.rs       |  14 +-
 core/server/src/streaming/streams/stream2.rs       |   4 +
 .../server/src/streaming/topics/consumer_group2.rs |  12 ++
 core/server/src/streaming/topics/helpers.rs        |   9 +-
 core/server/src/streaming/topics/topic2.rs         |  11 ++
 64 files changed, 1163 insertions(+), 436 deletions(-)

Reply via email to