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 61eae146f refactor(server): WIP, don't merge: replace slab ECS with 
LeftRight-based global metadata
     add d0cb3d44a test(server): add API tests for message retrieval (#2537)
     add c9a2eb80f feat(python): add AsyncIterator interface to IggyConsumer 
(#2552)
     add c8b6bdcdb refactor(server): WIP, don't merge: replace slab ECS with 
LeftRight-based global metadata

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   (61eae146f)
            \
             N -- N -- N   refs/heads/global-metadata-leftright (c8b6bdcdb)

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/src/test_server.rs                |   2 +
 core/integration/tests/server/message_retrieval.rs | 152 +++++++
 core/integration/tests/server/mod.rs               |   2 +
 .../server/scenarios/get_messages_by_offset_api.rs | 424 +++++++++++++++++++
 .../scenarios/get_messages_by_timestamp_api.rs     | 449 +++++++++++++++++++++
 core/integration/tests/server/scenarios/mod.rs     |   2 +
 core/integration/tests/streaming/mod.rs            |   6 +-
 .../cluster/get_cluster_metadata_handler.rs        |   1 -
 .../create_consumer_group_handler.rs               |   8 +-
 .../delete_consumer_group_handler.rs               |   7 +-
 .../consumer_groups/get_consumer_group_handler.rs  |  27 +-
 .../consumer_groups/get_consumer_groups_handler.rs |  13 +-
 .../consumer_groups/join_consumer_group_handler.rs |  71 +---
 .../leave_consumer_group_handler.rs                |  71 +---
 .../delete_consumer_offset_handler.rs              |   8 +-
 .../get_consumer_offset_handler.rs                 |  16 +-
 .../store_consumer_offset_handler.rs               |   8 +-
 .../handlers/messages/send_messages_handler.rs     |   7 +-
 .../partitions/create_partitions_handler.rs        |   9 +-
 .../partitions/delete_partitions_handler.rs        |   9 +-
 .../create_personal_access_token_handler.rs        |   7 +-
 .../delete_personal_access_token_handler.rs        |   7 +-
 .../get_personal_access_tokens_handler.rs          |   7 +-
 .../handlers/segments/delete_segments_handler.rs   |  10 +-
 .../handlers/streams/create_stream_handler.rs      |   6 +-
 .../handlers/streams/delete_stream_handler.rs      |  15 +-
 .../binary/handlers/streams/get_stream_handler.rs  |   1 +
 .../binary/handlers/streams/get_streams_handler.rs |   1 +
 .../handlers/streams/purge_stream_handler.rs       |   8 +-
 .../handlers/streams/update_stream_handler.rs      |   7 +-
 .../binary/handlers/system/get_client_handler.rs   |  11 +-
 .../binary/handlers/system/get_clients_handler.rs  |  10 +-
 .../src/binary/handlers/system/get_me_handler.rs   |  11 +-
 .../binary/handlers/system/get_stats_handler.rs    |   4 +
 .../binary/handlers/topics/create_topic_handler.rs |   7 +-
 .../binary/handlers/topics/delete_topic_handler.rs |   7 +-
 .../binary/handlers/topics/get_topic_handler.rs    |   1 +
 .../binary/handlers/topics/get_topics_handler.rs   |   2 +-
 .../binary/handlers/topics/purge_topic_handler.rs  |   7 +-
 .../binary/handlers/topics/update_topic_handler.rs |   6 +-
 .../handlers/users/change_password_handler.rs      |  11 +-
 .../binary/handlers/users/create_user_handler.rs   |   6 +-
 .../binary/handlers/users/delete_user_handler.rs   |   6 +-
 .../src/binary/handlers/users/get_user_handler.rs  |  10 +-
 .../src/binary/handlers/users/get_users_handler.rs |  10 +-
 .../handlers/users/update_permissions_handler.rs   |  12 +-
 .../binary/handlers/users/update_user_handler.rs   |   6 +-
 core/server/src/http/consumer_groups.rs            |  46 ++-
 core/server/src/http/consumer_offsets.rs           |  47 ++-
 core/server/src/http/http_shard_wrapper.rs         |  85 ++--
 core/server/src/http/partitions.rs                 |  27 +-
 core/server/src/http/personal_access_tokens.rs     |  14 +-
 core/server/src/http/streams.rs                    |  70 +++-
 core/server/src/http/system.rs                     |  47 +--
 core/server/src/http/topics.rs                     |  58 ++-
 core/server/src/http/users.rs                      |  98 +++--
 core/server/src/shard/builder.rs                   |   2 +-
 core/server/src/shard/handlers.rs                  | 168 ++------
 core/server/src/shard/mod.rs                       |  13 +-
 core/server/src/shard/system/clients.rs            |  33 +-
 core/server/src/shard/system/consumer_groups.rs    |  57 +--
 core/server/src/shard/system/consumer_offsets.rs   |  37 +-
 core/server/src/shard/system/messages.rs           |   9 +-
 core/server/src/shard/system/partitions.rs         |  38 --
 .../src/shard/system/personal_access_tokens.rs     |  15 +-
 core/server/src/shard/system/streams.rs            |  57 +--
 core/server/src/shard/system/topics.rs             |  42 --
 core/server/src/shard/system/users.rs              |  98 +----
 .../streaming/segments/types/messages_batch_set.rs |   8 -
 foreign/python/Cargo.toml                          |   1 +
 foreign/python/apache_iggy.pyi                     |  23 +-
 foreign/python/src/client.rs                       |  28 +-
 foreign/python/src/consumer.rs                     |  29 +-
 foreign/python/src/iterator.rs                     |  59 +++
 foreign/python/src/lib.rs                          |   3 +
 foreign/python/src/receive_message.rs              |  15 +-
 foreign/python/tests/test_iggy_sdk.py              |  47 ++-
 77 files changed, 1856 insertions(+), 906 deletions(-)
 create mode 100644 core/integration/tests/server/message_retrieval.rs
 create mode 100644 
core/integration/tests/server/scenarios/get_messages_by_offset_api.rs
 create mode 100644 
core/integration/tests/server/scenarios/get_messages_by_timestamp_api.rs
 create mode 100644 foreign/python/src/iterator.rs

Reply via email to