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

hgruszecki pushed a change to branch global-metadata-leftright
in repository https://gitbox.apache.org/repos/asf/iggy.git


    omit 9a0f5e1b0 refactor(server): WIP, don't merge: replace slab ECS with 
LeftRight-based global metadata
     add 1fb20b62a fix(server): broadcast PAT events from HTTP handlers to all 
shards (#2589)
     add 3dcdda940 chore(integration): remove streaming tests superseded by 
API-level coverage (#2591)
     add 379b9a8bb refactor(server): WIP, don't merge: replace slab ECS with 
LeftRight-based global metadata
     add ea6f71aa9 permissions

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   (9a0f5e1b0)
            \
             N -- N -- N   refs/heads/global-metadata-leftright (ea6f71aa9)

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:
 core/integration/tests/mod.rs                      |   1 -
 core/integration/tests/server/cg.rs                |  10 +-
 core/integration/tests/server/general.rs           |   3 +-
 core/integration/tests/server/message_retrieval.rs |  10 +-
 core/integration/tests/server/mod.rs               |   7 +-
 .../scenarios/cross_protocol_pat_scenario.rs       | 233 ++++++++
 core/integration/tests/server/scenarios/mod.rs     |   6 +-
 ...essages_by_offset_api.rs => offset_scenario.rs} |  43 ++
 .../scenarios/snapshot_scenario.rs}                |  44 +-
 ...s_by_timestamp_api.rs => timestamp_scenario.rs} |   0
 core/integration/tests/server/specific.rs          |  23 +-
 core/integration/tests/streaming/common/mod.rs     |  19 -
 .../tests/streaming/common/test_setup.rs           |  52 --
 core/integration/tests/streaming/get_by_offset.rs  | 396 --------------
 .../tests/streaming/get_by_timestamp.rs            | 372 -------------
 core/integration/tests/streaming/mod.rs            | 593 ---------------------
 .../create_consumer_group_handler.rs               |   8 +-
 .../delete_consumer_group_handler.rs               |   2 +-
 .../consumer_groups/get_consumer_group_handler.rs  |   5 +-
 .../consumer_groups/get_consumer_groups_handler.rs |   8 +-
 .../consumer_groups/join_consumer_group_handler.rs |   8 +-
 .../leave_consumer_group_handler.rs                |   8 +-
 .../delete_consumer_offset_handler.rs              |   8 +-
 .../get_consumer_offset_handler.rs                 |   5 +-
 .../store_consumer_offset_handler.rs               |   8 +-
 .../handlers/messages/send_messages_handler.rs     |   2 +-
 .../partitions/create_partitions_handler.rs        |   2 +-
 .../partitions/delete_partitions_handler.rs        |   2 +-
 .../handlers/segments/delete_segments_handler.rs   |   2 +-
 .../handlers/streams/create_stream_handler.rs      |   5 +-
 .../handlers/streams/delete_stream_handler.rs      |   5 +-
 .../binary/handlers/streams/get_stream_handler.rs  |   5 +-
 .../binary/handlers/streams/get_streams_handler.rs |   5 +-
 .../handlers/streams/purge_stream_handler.rs       |   5 +-
 .../handlers/streams/update_stream_handler.rs      |   5 +-
 .../binary/handlers/system/get_client_handler.rs   |   5 +-
 .../binary/handlers/system/get_clients_handler.rs  |   5 +-
 .../binary/handlers/system/get_stats_handler.rs    |   5 +-
 .../binary/handlers/topics/create_topic_handler.rs |   5 +-
 .../binary/handlers/topics/delete_topic_handler.rs |   5 +-
 .../binary/handlers/topics/get_topic_handler.rs    |   5 +-
 .../binary/handlers/topics/get_topics_handler.rs   |   5 +-
 .../binary/handlers/topics/purge_topic_handler.rs  |   5 +-
 .../binary/handlers/topics/update_topic_handler.rs |   5 +-
 .../handlers/users/change_password_handler.rs      |   5 +-
 .../binary/handlers/users/create_user_handler.rs   |   5 +-
 .../binary/handlers/users/delete_user_handler.rs   |   5 +-
 .../src/binary/handlers/users/get_user_handler.rs  |   5 +-
 .../src/binary/handlers/users/get_users_handler.rs |   5 +-
 .../handlers/users/update_permissions_handler.rs   |   5 +-
 .../binary/handlers/users/update_user_handler.rs   |   5 +-
 core/server/src/bootstrap.rs                       |   6 +
 core/server/src/http/consumer_groups.rs            |  26 +-
 core/server/src/http/consumer_offsets.rs           |  33 +-
 core/server/src/http/partitions.rs                 |  22 +-
 core/server/src/http/personal_access_tokens.rs     |   6 +-
 core/server/src/http/streams.rs                    |  27 +-
 core/server/src/http/system.rs                     |  15 +-
 core/server/src/http/topics.rs                     |  21 +-
 core/server/src/http/users.rs                      |  35 +-
 core/server/src/metadata/absorb.rs                 |  84 +++
 core/server/src/metadata/inner.rs                  |  14 +-
 core/server/src/metadata/reader.rs                 | 524 +++++++++++++++++-
 core/server/src/shard/builder.rs                   |   3 -
 core/server/src/shard/mod.rs                       |  12 +-
 core/server/src/shard/system/messages.rs           |  15 +-
 66 files changed, 1113 insertions(+), 1720 deletions(-)
 create mode 100644 
core/integration/tests/server/scenarios/cross_protocol_pat_scenario.rs
 rename core/integration/tests/server/scenarios/{get_messages_by_offset_api.rs 
=> offset_scenario.rs} (90%)
 rename core/integration/tests/{streaming/snapshot.rs => 
server/scenarios/snapshot_scenario.rs} (56%)
 rename 
core/integration/tests/server/scenarios/{get_messages_by_timestamp_api.rs => 
timestamp_scenario.rs} (100%)
 delete mode 100644 core/integration/tests/streaming/common/mod.rs
 delete mode 100644 core/integration/tests/streaming/common/test_setup.rs
 delete mode 100644 core/integration/tests/streaming/get_by_offset.rs
 delete mode 100644 core/integration/tests/streaming/get_by_timestamp.rs
 delete mode 100644 core/integration/tests/streaming/mod.rs

Reply via email to