apache-iggy 0.6.0.dev2__tar.gz → 0.6.4.dev1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- apache_iggy-0.6.4.dev1/Cargo.toml +340 -0
- apache_iggy-0.6.4.dev1/NOTICE +19 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/PKG-INFO +20 -37
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/README.md +3 -15
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/apache_iggy.pyi +21 -3
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/Cargo.toml +1 -1
- {apache_iggy-0.6.0.dev2/core/common → apache_iggy-0.6.4.dev1/core/binary_protocol}/README.md +6 -6
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/cli/binary_message/poll_messages.rs +4 -4
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/client/binary_personal_access_tokens/mod.rs +5 -3
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/Cargo.toml +19 -10
- {apache_iggy-0.6.0.dev2/core/sdk → apache_iggy-0.6.4.dev1/core/common}/README.md +6 -6
- apache_iggy-0.6.4.dev1/core/common/src/alloc/buffer.rs +306 -0
- apache_iggy-0.6.4.dev1/core/common/src/alloc/memory_pool.rs +739 -0
- apache_iggy-0.6.4.dev1/core/common/src/alloc/mod.rs +20 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/commands/consumer_groups/create_consumer_group.rs +1 -1
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/commands/consumer_groups/delete_consumer_group.rs +1 -1
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/commands/messages/send_messages.rs +94 -7
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/commands/partitions/create_partitions.rs +1 -1
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/commands/partitions/delete_partitions.rs +1 -1
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/commands/personal_access_tokens/create_personal_access_token.rs +1 -1
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/commands/personal_access_tokens/delete_personal_access_token.rs +1 -1
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/commands/segments/delete_segments.rs +1 -1
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/commands/streams/create_stream.rs +1 -1
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/commands/streams/delete_stream.rs +1 -1
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/commands/streams/purge_stream.rs +1 -1
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/commands/streams/update_stream.rs +1 -1
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/commands/topics/create_topic.rs +1 -1
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/commands/topics/delete_topic.rs +1 -1
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/commands/topics/purge_topic.rs +1 -1
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/commands/topics/update_topic.rs +1 -1
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/commands/users/change_password.rs +1 -1
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/commands/users/create_user.rs +1 -1
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/commands/users/delete_user.rs +1 -1
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/commands/users/update_permissions.rs +1 -1
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/commands/users/update_user.rs +1 -1
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/error/iggy_error.rs +9 -1
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/lib.rs +30 -18
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/locking/mod.rs +0 -13
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/locking/tokio_lock.rs +0 -1
- apache_iggy-0.6.4.dev1/core/common/src/sender/mod.rs +257 -0
- apache_iggy-0.6.4.dev1/core/common/src/sender/quic_sender.rs +142 -0
- apache_iggy-0.6.4.dev1/core/common/src/sender/tcp_sender.rs +90 -0
- apache_iggy-0.6.4.dev1/core/common/src/sender/tcp_tls_sender.rs +96 -0
- apache_iggy-0.6.4.dev1/core/common/src/sender/websocket_sender.rs +203 -0
- apache_iggy-0.6.4.dev1/core/common/src/sender/websocket_tls_sender.rs +183 -0
- apache_iggy-0.6.4.dev1/core/common/src/sharding/local_idx.rs +49 -0
- apache_iggy-0.6.4.dev1/core/common/src/sharding/mod.rs +29 -0
- apache_iggy-0.6.4.dev1/core/common/src/sharding/namespace.rs +87 -0
- apache_iggy-0.6.4.dev1/core/common/src/sharding/partition_location.rs +34 -0
- apache_iggy-0.6.4.dev1/core/common/src/sharding/shard_id.rs +46 -0
- apache_iggy-0.6.4.dev1/core/common/src/types/consensus/header.rs +593 -0
- apache_iggy-0.6.4.dev1/core/common/src/types/consensus/message.rs +710 -0
- apache_iggy-0.6.0.dev2/core/common/src/types/consensus/header.rs → apache_iggy-0.6.4.dev1/core/common/src/types/consensus/mod.rs +2 -4
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/message/iggy_message.rs +55 -19
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/message/message_header.rs +141 -1
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/message/message_header_view.rs +8 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/message/messages_batch.rs +10 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/message/mod.rs +4 -1
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/message/polled_messages.rs +6 -2
- apache_iggy-0.6.4.dev1/core/common/src/types/message/user_headers.rs +1719 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/mod.rs +1 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/permissions/permissions_global.rs +40 -2
- apache_iggy-0.6.4.dev1/core/common/src/types/personal_access_tokens/mod.rs +130 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/utils/byte_size.rs +7 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/utils/duration.rs +30 -1
- apache_iggy-0.6.4.dev1/core/common/src/utils/hash.rs +38 -0
- apache_iggy-0.6.4.dev1/core/common/src/utils/mod.rs +30 -0
- apache_iggy-0.6.4.dev1/core/common/src/utils/versioning.rs +390 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/Cargo.toml +2 -10
- {apache_iggy-0.6.0.dev2/core/binary_protocol → apache_iggy-0.6.4.dev1/core/sdk}/README.md +6 -6
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/clients/consumer.rs +107 -14
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/clients/producer.rs +18 -26
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/clients/producer_config.rs +26 -18
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/clients/producer_dispatcher.rs +21 -56
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/clients/producer_sharding.rs +111 -58
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/http/http_client.rs +2 -1
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/prelude.rs +7 -6
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/tcp/tcp_client.rs +2 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/foreign/python/Cargo.lock +923 -511
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/foreign/python/Cargo.toml +11 -7
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/foreign/python/Dockerfile.test +1 -2
- apache_iggy-0.6.4.dev1/foreign/python/NOTICE +19 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/foreign/python/README.md +3 -15
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/foreign/python/apache_iggy.pyi +21 -3
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/foreign/python/scripts/test.sh +0 -17
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/foreign/python/src/client.rs +37 -18
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/foreign/python/src/consumer.rs +27 -16
- apache_iggy-0.6.4.dev1/foreign/python/src/iterator.rs +59 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/foreign/python/src/lib.rs +3 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/foreign/python/src/receive_message.rs +6 -9
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/foreign/python/src/send_message.rs +1 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/foreign/python/tests/test_iggy_sdk.py +44 -3
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/pyproject.toml +2 -8
- apache_iggy-0.6.0.dev2/Cargo.toml +0 -206
- apache_iggy-0.6.0.dev2/NOTICE +0 -13
- apache_iggy-0.6.0.dev2/core/common/src/configs/mod.rs +0 -777
- apache_iggy-0.6.0.dev2/core/common/src/locking/fast_async_lock.rs +0 -61
- apache_iggy-0.6.0.dev2/core/common/src/types/consensus/mod.rs +0 -212
- apache_iggy-0.6.0.dev2/core/common/src/types/message/user_headers.rs +0 -1301
- apache_iggy-0.6.0.dev2/core/common/src/utils/mod.rs +0 -26
- apache_iggy-0.6.0.dev2/foreign/python/NOTICE +0 -13
- apache_iggy-0.6.0.dev2/foreign/python/python_examples/README.md +0 -20
- apache_iggy-0.6.0.dev2/foreign/python/python_examples/consumer.py +0 -83
- apache_iggy-0.6.0.dev2/foreign/python/python_examples/example_screenshot.png +0 -0
- apache_iggy-0.6.0.dev2/foreign/python/python_examples/producer.py +0 -110
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/LICENSE +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/cli/binary_client/get_client.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/cli/binary_client/get_clients.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/cli/binary_client/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/cli/binary_consumer_groups/create_consumer_group.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/cli/binary_consumer_groups/delete_consumer_group.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/cli/binary_consumer_groups/get_consumer_group.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/cli/binary_consumer_groups/get_consumer_groups.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/cli/binary_consumer_groups/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/cli/binary_consumer_offsets/get_consumer_offset.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/cli/binary_consumer_offsets/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/cli/binary_consumer_offsets/set_consumer_offset.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/cli/binary_context/common.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/cli/binary_context/get_contexts.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/cli/binary_context/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/cli/binary_context/use_context.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/cli/binary_message/flush_messages.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/cli/binary_message/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/cli/binary_message/send_messages.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/cli/binary_partitions/create_partitions.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/cli/binary_partitions/delete_partitions.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/cli/binary_partitions/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/cli/binary_personal_access_tokens/create_personal_access_token.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/cli/binary_personal_access_tokens/delete_personal_access_tokens.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/cli/binary_personal_access_tokens/get_personal_access_tokens.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/cli/binary_personal_access_tokens/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/cli/binary_segments/delete_segments.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/cli/binary_segments/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/cli/binary_streams/create_stream.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/cli/binary_streams/delete_stream.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/cli/binary_streams/get_stream.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/cli/binary_streams/get_streams.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/cli/binary_streams/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/cli/binary_streams/purge_stream.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/cli/binary_streams/update_stream.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/cli/binary_system/login.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/cli/binary_system/logout.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/cli/binary_system/me.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/cli/binary_system/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/cli/binary_system/ping.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/cli/binary_system/session.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/cli/binary_system/snapshot.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/cli/binary_system/stats.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/cli/binary_topics/create_topic.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/cli/binary_topics/delete_topic.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/cli/binary_topics/get_topic.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/cli/binary_topics/get_topics.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/cli/binary_topics/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/cli/binary_topics/purge_topic.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/cli/binary_topics/update_topic.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/cli/binary_users/change_password.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/cli/binary_users/create_user.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/cli/binary_users/delete_user.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/cli/binary_users/get_user.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/cli/binary_users/get_users.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/cli/binary_users/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/cli/binary_users/update_permissions.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/cli/binary_users/update_user.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/cli/cli_command.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/cli/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/cli/utils/login_session_expiry.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/cli/utils/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/client/binary_clients/binary_client.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/client/binary_clients/client.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/client/binary_clients/cluster_client.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/client/binary_clients/consumer_group_client.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/client/binary_clients/consumer_offset_client.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/client/binary_clients/message_client.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/client/binary_clients/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/client/binary_clients/partition_client.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/client/binary_clients/personal_access_token_client.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/client/binary_clients/segment_client.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/client/binary_clients/stream_client.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/client/binary_clients/system_client.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/client/binary_clients/topic_client.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/client/binary_clients/user_client.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/client/binary_cluster/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/client/binary_consumer_groups/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/client/binary_consumer_offsets/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/client/binary_messages/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/client/binary_partitions/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/client/binary_segments/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/client/binary_streams/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/client/binary_system/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/client/binary_topics/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/client/binary_transport/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/client/binary_users/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/client/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/lib.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/utils/auth.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/utils/mapper.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/binary_protocol/src/utils/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/certificates.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/commands/consumer_groups/get_consumer_group.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/commands/consumer_groups/get_consumer_groups.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/commands/consumer_groups/join_consumer_group.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/commands/consumer_groups/leave_consumer_group.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/commands/consumer_groups/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/commands/consumer_offsets/delete_consumer_offset.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/commands/consumer_offsets/get_consumer_offset.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/commands/consumer_offsets/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/commands/consumer_offsets/store_consumer_offset.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/commands/messages/flush_unsaved_buffer.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/commands/messages/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/commands/messages/poll_messages.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/commands/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/commands/partitions/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/commands/personal_access_tokens/get_personal_access_tokens.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/commands/personal_access_tokens/login_with_personal_access_token.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/commands/personal_access_tokens/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/commands/segments/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/commands/streams/get_stream.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/commands/streams/get_streams.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/commands/streams/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/commands/system/get_client.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/commands/system/get_clients.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/commands/system/get_cluster_metadata.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/commands/system/get_me.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/commands/system/get_snapshot.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/commands/system/get_stats.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/commands/system/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/commands/system/ping.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/commands/topics/get_topic.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/commands/topics/get_topics.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/commands/topics/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/commands/users/defaults.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/commands/users/get_user.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/commands/users/get_users.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/commands/users/login_user.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/commands/users/logout_user.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/commands/users/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/error/client_error.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/error/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/traits/bytes_serializable.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/traits/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/traits/partitioner.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/traits/sizeable.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/traits/validatable.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/args/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/client/client_info.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/client/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/client_state/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/cluster/metadata.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/cluster/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/cluster/node.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/cluster/role.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/cluster/status.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/cluster/transport_endpoints.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/command/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/compression/compression_algorithm.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/compression/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/configuration/auth_config/auto_login.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/configuration/auth_config/connection_string.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/configuration/auth_config/connection_string_options.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/configuration/auth_config/credentials.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/configuration/auth_config/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/configuration/http_config/http_client_config.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/configuration/http_config/http_client_config_builder.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/configuration/http_config/http_connection_string_options.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/configuration/http_config/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/configuration/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/configuration/quic_config/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/configuration/quic_config/quic_client_config.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/configuration/quic_config/quic_client_config_builder.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/configuration/quic_config/quic_client_reconnection_config.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/configuration/quic_config/quic_connection_string_options.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/configuration/tcp_config/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/configuration/tcp_config/tcp_client_config.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/configuration/tcp_config/tcp_client_config_builder.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/configuration/tcp_config/tcp_client_reconnection_config.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/configuration/tcp_config/tcp_connection_string_options.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/configuration/transport.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/configuration/websocket_config/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/configuration/websocket_config/websocket_client_config.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/configuration/websocket_config/websocket_client_config_builder.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/configuration/websocket_config/websocket_client_reconnection_config.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/configuration/websocket_config/websocket_connection_string_options.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/consumer/consumer_group.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/consumer/consumer_kind.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/consumer/consumer_offset_info.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/consumer/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/diagnostic/diagnostic_event.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/diagnostic/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/identifier/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/message/index.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/message/index_view.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/message/indexes.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/message/message_view.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/message/partitioning.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/message/partitioning_kind.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/message/polling_kind.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/message/polling_strategy.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/partition/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/permissions/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/permissions/personal_access_token.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/snapshot/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/stats/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/stream/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/topic/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/user/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/user/user_identity_info.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/user/user_info.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/types/user/user_status.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/utils/checksum.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/utils/crypto.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/utils/expiry.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/utils/personal_access_token_expiry.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/utils/text.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/utils/timestamp.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/common/src/utils/topic_size.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/client_provider.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/client_wrappers/binary_client.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/client_wrappers/binary_cluster_client.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/client_wrappers/binary_consumer_group_client.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/client_wrappers/binary_consumer_offset_client.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/client_wrappers/binary_message_client.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/client_wrappers/binary_partition_client.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/client_wrappers/binary_personal_access_token_client.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/client_wrappers/binary_segment_client.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/client_wrappers/binary_stream_client.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/client_wrappers/binary_system_client.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/client_wrappers/binary_topic_client.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/client_wrappers/binary_user_client.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/client_wrappers/client_wrapper.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/client_wrappers/connection_info.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/client_wrappers/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/clients/binary_cluster.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/clients/binary_consumer_group.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/clients/binary_consumer_offset.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/clients/binary_message.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/clients/binary_partitions.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/clients/binary_personal_access_tokens.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/clients/binary_segments.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/clients/binary_streams.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/clients/binary_system.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/clients/binary_topics.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/clients/binary_users.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/clients/client.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/clients/client_builder.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/clients/consumer_builder.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/clients/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/clients/producer_builder.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/clients/producer_error_callback.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/consumer_ext/consumer_message_ext.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/consumer_ext/consumer_message_trait.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/consumer_ext/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/http/cluster.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/http/consumer_groups.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/http/consumer_offsets.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/http/http_transport.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/http/messages.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/http/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/http/partitions.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/http/personal_access_tokens.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/http/segments.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/http/streams.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/http/system.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/http/topics.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/http/users.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/leader_aware.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/lib.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/quic/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/quic/quic_client.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/quic/skip_server_verification.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/stream_builder/build/build_iggy_client.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/stream_builder/build/build_iggy_consumer.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/stream_builder/build/build_iggy_producer.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/stream_builder/build/build_stream_topic.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/stream_builder/build/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/stream_builder/config/config_iggy_consumer.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/stream_builder/config/config_iggy_producer.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/stream_builder/config/config_iggy_stream.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/stream_builder/config/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/stream_builder/iggy_stream.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/stream_builder/iggy_stream_consumer.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/stream_builder/iggy_stream_producer.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/stream_builder/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/tcp/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/tcp/tcp_connection_stream.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/tcp/tcp_connection_stream_kind.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/tcp/tcp_stream.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/tcp/tcp_tls_connection_stream.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/tcp/tcp_tls_verifier.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/websocket/mod.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/websocket/websocket_client.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/websocket/websocket_connection_stream.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/websocket/websocket_stream.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/websocket/websocket_stream_kind.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/core/sdk/src/websocket/websocket_tls_connection_stream.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/foreign/python/.devcontainer/Dockerfile +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/foreign/python/.devcontainer/devcontainer.json +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/foreign/python/.devcontainer/docker-compose.yml +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/foreign/python/.gitignore +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/foreign/python/LICENSE +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/foreign/python/docker-compose.test.yml +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/foreign/python/src/bin/stub_gen.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/foreign/python/src/identifier.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/foreign/python/src/stream.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/foreign/python/src/topic.rs +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/foreign/python/tests/__init__.py +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/foreign/python/tests/conftest.py +0 -0
- {apache_iggy-0.6.0.dev2 → apache_iggy-0.6.4.dev1}/foreign/python/tests/utils.py +0 -0
|
@@ -0,0 +1,340 @@
|
|
|
1
|
+
# Licensed to the Apache Software Foundation (ASF) under one
|
|
2
|
+
# or more contributor license agreements. See the NOTICE file
|
|
3
|
+
# distributed with this work for additional information
|
|
4
|
+
# regarding copyright ownership. The ASF licenses this file
|
|
5
|
+
# to you under the Apache License, Version 2.0 (the
|
|
6
|
+
# "License"); you may not use this file except in compliance
|
|
7
|
+
# with the License. You may obtain a copy of the License at
|
|
8
|
+
#
|
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
#
|
|
11
|
+
# Unless required by applicable law or agreed to in writing,
|
|
12
|
+
# software distributed under the License is distributed on an
|
|
13
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
14
|
+
# KIND, either express or implied. See the License for the
|
|
15
|
+
# specific language governing permissions and limitations
|
|
16
|
+
# under the License.
|
|
17
|
+
|
|
18
|
+
[workspace]
|
|
19
|
+
members = [
|
|
20
|
+
"bdd/rust",
|
|
21
|
+
"core/ai/mcp",
|
|
22
|
+
"core/bench",
|
|
23
|
+
"core/bench/dashboard/frontend",
|
|
24
|
+
"core/bench/dashboard/server",
|
|
25
|
+
"core/bench/dashboard/shared",
|
|
26
|
+
"core/bench/report",
|
|
27
|
+
"core/bench/runner",
|
|
28
|
+
"core/binary_protocol",
|
|
29
|
+
"core/cli",
|
|
30
|
+
"core/clock",
|
|
31
|
+
"core/common",
|
|
32
|
+
"core/configs",
|
|
33
|
+
"core/configs_derive",
|
|
34
|
+
"core/connectors/runtime",
|
|
35
|
+
"core/connectors/sdk",
|
|
36
|
+
"core/connectors/sinks/elasticsearch_sink",
|
|
37
|
+
"core/connectors/sinks/iceberg_sink",
|
|
38
|
+
"core/connectors/sinks/postgres_sink",
|
|
39
|
+
"core/connectors/sinks/quickwit_sink",
|
|
40
|
+
"core/connectors/sinks/stdout_sink",
|
|
41
|
+
"core/connectors/sources/elasticsearch_source",
|
|
42
|
+
"core/connectors/sources/postgres_source",
|
|
43
|
+
"core/connectors/sources/random_source",
|
|
44
|
+
"core/consensus",
|
|
45
|
+
"core/harness_derive",
|
|
46
|
+
"core/integration",
|
|
47
|
+
"core/journal",
|
|
48
|
+
"core/message_bus",
|
|
49
|
+
"core/metadata",
|
|
50
|
+
"core/partitions",
|
|
51
|
+
"core/sdk",
|
|
52
|
+
"core/server",
|
|
53
|
+
"core/tools",
|
|
54
|
+
"examples/rust",
|
|
55
|
+
]
|
|
56
|
+
exclude = ["foreign/python"]
|
|
57
|
+
resolver = "2"
|
|
58
|
+
|
|
59
|
+
[workspace.dependencies]
|
|
60
|
+
actix-cors = "0.7.1"
|
|
61
|
+
actix-files = "0.6.9"
|
|
62
|
+
actix-web = "4.12.1"
|
|
63
|
+
aes-gcm = "0.10.3"
|
|
64
|
+
ahash = { version = "0.8.12", features = ["serde"] }
|
|
65
|
+
anyhow = "1.0.100"
|
|
66
|
+
argon2 = "0.5.3"
|
|
67
|
+
arrow = "57.2.0"
|
|
68
|
+
arrow-array = "57.2.0"
|
|
69
|
+
arrow-json = "57.2.0"
|
|
70
|
+
assert_cmd = "2.1.2"
|
|
71
|
+
async-broadcast = "0.7.2"
|
|
72
|
+
async-channel = "2.5.0"
|
|
73
|
+
async-dropper = { version = "0.3.1", features = ["tokio", "simple"] }
|
|
74
|
+
async-trait = "0.1.89"
|
|
75
|
+
async_zip = { version = "0.0.18", features = [
|
|
76
|
+
"tokio",
|
|
77
|
+
"lzma",
|
|
78
|
+
"bzip2",
|
|
79
|
+
"xz",
|
|
80
|
+
"deflate",
|
|
81
|
+
"zstd",
|
|
82
|
+
] }
|
|
83
|
+
axum = { version = "0.8.8", features = ["macros"] }
|
|
84
|
+
axum-server = { version = "0.8.0", features = ["tls-rustls"] }
|
|
85
|
+
base64 = "0.22.1"
|
|
86
|
+
bench-dashboard-frontend = { path = "core/bench/dashboard/frontend" }
|
|
87
|
+
bench-dashboard-server = { path = "core/bench/dashboard/server" }
|
|
88
|
+
bench-dashboard-shared = { path = "core/bench/dashboard/shared" }
|
|
89
|
+
bench-report = { path = "core/bench/report" }
|
|
90
|
+
bench-runner = { path = "core/bench/runner" }
|
|
91
|
+
bit-set = "0.8.0"
|
|
92
|
+
blake3 = "1.8.3"
|
|
93
|
+
bon = "3.8.2"
|
|
94
|
+
byte-unit = { version = "5.2.0", default-features = false, features = [
|
|
95
|
+
"serde",
|
|
96
|
+
"byte",
|
|
97
|
+
"std",
|
|
98
|
+
] }
|
|
99
|
+
bytemuck = { version = "1.24" }
|
|
100
|
+
bytes = "1.11.0"
|
|
101
|
+
charming = "0.6.0"
|
|
102
|
+
chrono = { version = "0.4.43", features = ["serde"] }
|
|
103
|
+
clap = { version = "4.5.54", features = ["derive", "wrap_help"] }
|
|
104
|
+
clap_complete = "4.5.65"
|
|
105
|
+
clock = { path = "core/clock" }
|
|
106
|
+
colored = "3.1.1"
|
|
107
|
+
comfy-table = "7.2.2"
|
|
108
|
+
compio = { version = "0.17.0", features = [
|
|
109
|
+
"runtime",
|
|
110
|
+
"macros",
|
|
111
|
+
"io-uring",
|
|
112
|
+
"time",
|
|
113
|
+
"rustls",
|
|
114
|
+
] }
|
|
115
|
+
compio-io = "0.8.4"
|
|
116
|
+
compio-net = "0.10.0"
|
|
117
|
+
compio-quic = "0.6.0"
|
|
118
|
+
compio-tls = { version = "0.8.0", features = [
|
|
119
|
+
"rustls",
|
|
120
|
+
], default-features = false }
|
|
121
|
+
compio-ws = "0.2.0"
|
|
122
|
+
configs = { path = "core/configs", version = "0.1.0" }
|
|
123
|
+
configs_derive = { path = "core/configs_derive", version = "0.1.0" }
|
|
124
|
+
consensus = { path = "core/consensus" }
|
|
125
|
+
console-subscriber = "0.5.0"
|
|
126
|
+
crossbeam = "0.8.4"
|
|
127
|
+
ctor = "0.6.3"
|
|
128
|
+
ctrlc = { version = "3.5", features = ["termination"] }
|
|
129
|
+
cucumber = "0.22"
|
|
130
|
+
cyper = { version = "0.7.1", features = ["rustls"], default-features = false }
|
|
131
|
+
cyper-axum = { version = "0.7.1" }
|
|
132
|
+
darling = "0.20"
|
|
133
|
+
dashmap = "6.1.0"
|
|
134
|
+
derive-new = "0.7.0"
|
|
135
|
+
derive_builder = "0.20.2"
|
|
136
|
+
derive_more = { version = "2.1.1", features = ["full"] }
|
|
137
|
+
dircpy = "0.3.19"
|
|
138
|
+
dirs = "6.0.0"
|
|
139
|
+
dlopen2 = "0.8.2"
|
|
140
|
+
dotenvy = "0.15.7"
|
|
141
|
+
elasticsearch = { version = "9.1.0-alpha.1", features = ["rustls-tls"], default-features = false }
|
|
142
|
+
enum_dispatch = "0.3.13"
|
|
143
|
+
env_logger = "0.11.8"
|
|
144
|
+
err_trail = { version = "0.11.0", features = ["tracing"] }
|
|
145
|
+
error_set = "0.9.1"
|
|
146
|
+
figlet-rs = "0.1.5"
|
|
147
|
+
figment = { version = "0.10.19", features = ["toml", "env"] }
|
|
148
|
+
file-operation = "0.8.17"
|
|
149
|
+
flatbuffers = "25.12.19"
|
|
150
|
+
flume = "0.12.0"
|
|
151
|
+
futures = "0.3.31"
|
|
152
|
+
futures-util = "0.3.31"
|
|
153
|
+
getrandom = { version = "0.3", features = ["wasm_js"] }
|
|
154
|
+
git2 = { version = "0.20.3", default-features = false, features = ["vendored-libgit2"] }
|
|
155
|
+
gloo = "0.11"
|
|
156
|
+
governor = "0.10.4"
|
|
157
|
+
harness_derive = { path = "core/harness_derive" }
|
|
158
|
+
hash32 = "1.0.0"
|
|
159
|
+
hostname = "0.4.2"
|
|
160
|
+
human-repr = "1.1.0"
|
|
161
|
+
humantime = "2.3.0"
|
|
162
|
+
hwlocality = "1.0.0-alpha.11"
|
|
163
|
+
iceberg = "0.8.0"
|
|
164
|
+
iceberg-catalog-rest = "0.8.0"
|
|
165
|
+
iggy = { path = "core/sdk", version = "0.8.3-edge.1" }
|
|
166
|
+
iggy_binary_protocol = { path = "core/binary_protocol", version = "0.8.3-edge.1" }
|
|
167
|
+
iggy_common = { path = "core/common", version = "0.8.3-edge.1" }
|
|
168
|
+
iggy_connector_sdk = { path = "core/connectors/sdk", version = "0.1.3-edge.1" }
|
|
169
|
+
integration = { path = "core/integration" }
|
|
170
|
+
journal = { path = "core/journal" }
|
|
171
|
+
js-sys = "0.3"
|
|
172
|
+
jsonwebtoken = { version = "10.2.0", features = ["rust_crypto"] }
|
|
173
|
+
keyring = { version = "3.6.3", features = ["sync-secret-service", "vendored"] }
|
|
174
|
+
lazy_static = "1.5.0"
|
|
175
|
+
left-right = "0.11"
|
|
176
|
+
lending-iterator = "0.1.7"
|
|
177
|
+
libc = "0.2.180"
|
|
178
|
+
log = "0.4.29"
|
|
179
|
+
lz4_flex = "0.12.0"
|
|
180
|
+
message_bus = { path = "core/message_bus" }
|
|
181
|
+
metadata = { path = "core/metadata" }
|
|
182
|
+
mimalloc = "0.1"
|
|
183
|
+
mime_guess = "2.0"
|
|
184
|
+
mockall = "0.14.0"
|
|
185
|
+
moka = { version = "0.12.13", features = ["future"] }
|
|
186
|
+
nix = { version = "0.31.1", features = ["fs", "resource", "sched"] }
|
|
187
|
+
nonzero_lit = "0.1.2"
|
|
188
|
+
notify = "8.2.0"
|
|
189
|
+
octocrab = "0.49.5"
|
|
190
|
+
once_cell = "1.21.3"
|
|
191
|
+
opentelemetry = { version = "0.31.0", features = ["trace", "logs"] }
|
|
192
|
+
opentelemetry-appender-tracing = { version = "0.31.1", features = ["log"] }
|
|
193
|
+
opentelemetry-otlp = { version = "0.31.0", features = [
|
|
194
|
+
"logs",
|
|
195
|
+
"trace",
|
|
196
|
+
"grpc-tonic",
|
|
197
|
+
"http",
|
|
198
|
+
"http-proto",
|
|
199
|
+
"reqwest-client",
|
|
200
|
+
] }
|
|
201
|
+
opentelemetry-semantic-conventions = "0.31.0"
|
|
202
|
+
opentelemetry_sdk = { version = "0.31.0", features = [
|
|
203
|
+
"logs",
|
|
204
|
+
"trace",
|
|
205
|
+
"experimental_async_runtime",
|
|
206
|
+
"experimental_logs_batch_log_processor_with_async_runtime",
|
|
207
|
+
"experimental_trace_batch_span_processor_with_async_runtime",
|
|
208
|
+
] }
|
|
209
|
+
papaya = "0.2.3"
|
|
210
|
+
parquet = "57.2.0"
|
|
211
|
+
partitions = { path = "core/partitions" }
|
|
212
|
+
|
|
213
|
+
passterm = "=2.0.1"
|
|
214
|
+
paste = "1.0"
|
|
215
|
+
postcard = { version = "1.1.3", features = ["alloc"] }
|
|
216
|
+
predicates = "3.1.3"
|
|
217
|
+
proc-macro2 = "1"
|
|
218
|
+
prometheus-client = "0.24.0"
|
|
219
|
+
prost = "0.14.3"
|
|
220
|
+
prost-types = "0.14.3"
|
|
221
|
+
protox = "0.9.1"
|
|
222
|
+
protox-parse = "0.9.0"
|
|
223
|
+
quinn = "0.11.9"
|
|
224
|
+
quote = "1"
|
|
225
|
+
rand = "0.9.2"
|
|
226
|
+
rand_xoshiro = "0.7.0"
|
|
227
|
+
rayon = "1.11.0"
|
|
228
|
+
rcgen = "0.14.7"
|
|
229
|
+
regex = "1.12.2"
|
|
230
|
+
reqwest = { version = "=0.12.28", default-features = false, features = [
|
|
231
|
+
"json",
|
|
232
|
+
"rustls-tls",
|
|
233
|
+
] }
|
|
234
|
+
reqwest-middleware = { version = "=0.4.2", features = ["json"] }
|
|
235
|
+
reqwest-retry = "=0.8.0"
|
|
236
|
+
reqwest-tracing = "=0.5.8"
|
|
237
|
+
ring = "0.17.14"
|
|
238
|
+
ringbuffer = "0.16.0"
|
|
239
|
+
rmcp = "0.14.0"
|
|
240
|
+
rmp-serde = "1.3.1"
|
|
241
|
+
rust-embed = "8.11.0"
|
|
242
|
+
rust-s3 = { version = "0.37.1", default-features = false, features = [
|
|
243
|
+
"tokio-rustls-tls",
|
|
244
|
+
"tags",
|
|
245
|
+
] }
|
|
246
|
+
rustls = { version = "0.23.36", features = ["ring"] }
|
|
247
|
+
rustls-pemfile = "2.2.0"
|
|
248
|
+
send_wrapper = "0.6.0"
|
|
249
|
+
serde = { version = "1.0.228", features = ["derive", "rc"] }
|
|
250
|
+
serde_json = "1.0.149"
|
|
251
|
+
serde_with = { version = "3.16.1", features = ["base64", "macros"] }
|
|
252
|
+
serde_yaml_ng = "0.10.0"
|
|
253
|
+
serial_test = "3.3.1"
|
|
254
|
+
server = { path = "core/server" }
|
|
255
|
+
simd-json = { version = "0.17.0", features = ["serde_impl"] }
|
|
256
|
+
slab = "0.4.11"
|
|
257
|
+
socket2 = "0.6.2"
|
|
258
|
+
sqlx = { version = "0.8.6", features = [
|
|
259
|
+
"runtime-tokio-rustls",
|
|
260
|
+
"postgres",
|
|
261
|
+
"chrono",
|
|
262
|
+
"uuid",
|
|
263
|
+
"json",
|
|
264
|
+
] }
|
|
265
|
+
static-toml = "1.3.0"
|
|
266
|
+
strum = { version = "0.27.2", features = ["derive"] }
|
|
267
|
+
strum_macros = "0.27.2"
|
|
268
|
+
syn = { version = "2", features = ["full", "extra-traits"] }
|
|
269
|
+
sysinfo = "0.38.0"
|
|
270
|
+
tempfile = "3.24.0"
|
|
271
|
+
test-case = "3.3.1"
|
|
272
|
+
testcontainers-modules = { version = "0.14.0", features = ["postgres"] }
|
|
273
|
+
thiserror = "2.0.18"
|
|
274
|
+
tokio = { version = "1.49.0", features = ["full"] }
|
|
275
|
+
tokio-rustls = "0.26.4"
|
|
276
|
+
tokio-tungstenite = { version = "0.28", features = ["rustls-tls-webpki-roots"] }
|
|
277
|
+
tokio-util = { version = "0.7.18", features = ["compat"] }
|
|
278
|
+
toml = "0.9.11"
|
|
279
|
+
tower-http = { version = "0.6.8", features = [
|
|
280
|
+
"add-extension",
|
|
281
|
+
"cors",
|
|
282
|
+
"trace",
|
|
283
|
+
] }
|
|
284
|
+
tracing = "0.1.44"
|
|
285
|
+
tracing-appender = "0.2.4"
|
|
286
|
+
tracing-opentelemetry = "0.32.1"
|
|
287
|
+
tracing-subscriber = { version = "0.3.22", default-features = false, features = [
|
|
288
|
+
"fmt",
|
|
289
|
+
"env-filter",
|
|
290
|
+
"ansi",
|
|
291
|
+
] }
|
|
292
|
+
trait-variant = "0.1.2"
|
|
293
|
+
tungstenite = "0.28.0"
|
|
294
|
+
twox-hash = { version = "2.1.2", features = ["xxhash32"] }
|
|
295
|
+
ulid = "1.2.1"
|
|
296
|
+
uuid = { version = "1.20.0", features = [
|
|
297
|
+
"v4",
|
|
298
|
+
"v7",
|
|
299
|
+
"fast-rng",
|
|
300
|
+
"serde",
|
|
301
|
+
"zerocopy",
|
|
302
|
+
] }
|
|
303
|
+
vergen-git2 = { version = "9.1.0", features = ["build", "cargo", "rustc", "si"] }
|
|
304
|
+
walkdir = "2.5.0"
|
|
305
|
+
wasm-bindgen = "0.2"
|
|
306
|
+
web-sys = { version = "0.3", features = [
|
|
307
|
+
"Window",
|
|
308
|
+
"Location",
|
|
309
|
+
"HtmlSelectElement",
|
|
310
|
+
"Clipboard",
|
|
311
|
+
"Navigator",
|
|
312
|
+
"ResizeObserver",
|
|
313
|
+
"ResizeObserverEntry",
|
|
314
|
+
] }
|
|
315
|
+
webpki-roots = "1.0.5"
|
|
316
|
+
yew = { version = "0.22", features = ["csr"] }
|
|
317
|
+
yew-router = "0.19"
|
|
318
|
+
zip = { version = "7.2.0", default-features = false, features = ["deflate"] }
|
|
319
|
+
|
|
320
|
+
[profile.release]
|
|
321
|
+
lto = true
|
|
322
|
+
codegen-units = 1
|
|
323
|
+
|
|
324
|
+
# Selectively optimize CPU-intensive dependencies in dev profile:
|
|
325
|
+
# - argon2: password hashing
|
|
326
|
+
# - twox-hash: checksum calculation
|
|
327
|
+
# - rand_chacha: random number generation
|
|
328
|
+
# - iggy_common: wrapper functions for above
|
|
329
|
+
# This is faster than global opt-level=1 which adds significant compile time.
|
|
330
|
+
[profile.dev.package.argon2]
|
|
331
|
+
opt-level = 3
|
|
332
|
+
|
|
333
|
+
[profile.dev.package.twox-hash]
|
|
334
|
+
opt-level = 3
|
|
335
|
+
|
|
336
|
+
[profile.dev.package.rand_chacha]
|
|
337
|
+
opt-level = 3
|
|
338
|
+
|
|
339
|
+
[profile.dev.package.iggy_common]
|
|
340
|
+
opt-level = 3
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Apache Iggy (Incubating)
|
|
2
|
+
Copyright 2025 The Apache Software Foundation
|
|
3
|
+
|
|
4
|
+
This product includes software developed at
|
|
5
|
+
The Apache Software Foundation (http://www.apache.org/).
|
|
6
|
+
|
|
7
|
+
================================================================
|
|
8
|
+
|
|
9
|
+
This product includes various dependencies and code components that are subject to separate copyright notices and license terms.
|
|
10
|
+
Your use of these components is governed by their respective licenses.
|
|
11
|
+
For a complete list of dependencies, including their licenses and repository links,
|
|
12
|
+
please refer to the DEPENDENCIES file.
|
|
13
|
+
|
|
14
|
+
================================================================
|
|
15
|
+
|
|
16
|
+
The Iggy project code was originally created, designed, developed by Piotr Gankiewicz in April 2023.
|
|
17
|
+
It was released as an open-source project under MIT License, later converted to Apache 2.0 License,
|
|
18
|
+
and donated by LaserData, Inc. to the Apache Software Foundation (ASF) in February 2025.
|
|
19
|
+
Copyright April 2023 - February 2025 Piotr Gankiewicz, LaserData, Inc.
|
|
@@ -1,14 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: apache-iggy
|
|
3
|
-
Version: 0.6.
|
|
3
|
+
Version: 0.6.4.dev1
|
|
4
4
|
Classifier: Development Status :: 4 - Beta
|
|
5
5
|
Classifier: Intended Audience :: Developers
|
|
6
6
|
Classifier: License :: OSI Approved :: Apache Software License
|
|
7
7
|
Classifier: Operating System :: OS Independent
|
|
8
8
|
Classifier: Programming Language :: Python :: 3
|
|
9
|
-
Classifier: Programming Language :: Python :: 3.7
|
|
10
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
11
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
12
9
|
Classifier: Programming Language :: Python :: 3.10
|
|
13
10
|
Classifier: Programming Language :: Python :: 3.11
|
|
14
11
|
Classifier: Programming Language :: Python :: 3.12
|
|
@@ -18,17 +15,6 @@ Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
|
18
15
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
19
16
|
Classifier: Topic :: System :: Networking
|
|
20
17
|
Classifier: Topic :: System :: Distributed Computing
|
|
21
|
-
Requires-Dist: pytest>=7.0,<9.0 ; extra == 'testing'
|
|
22
|
-
Requires-Dist: pytest-asyncio>=0.21.0,<1.0 ; extra == 'testing'
|
|
23
|
-
Requires-Dist: pytest-xdist>=3.0,<4.0 ; extra == 'testing'
|
|
24
|
-
Requires-Dist: pytest-timeout>=2.0,<3.0 ; extra == 'testing'
|
|
25
|
-
Requires-Dist: loguru>=0.7.0,<1.0 ; extra == 'examples'
|
|
26
|
-
Requires-Dist: testcontainers[docker]>=3.7.0,<5.0 ; extra == 'testing-docker'
|
|
27
|
-
Requires-Dist: maturin>=1.2,<2.0 ; extra == 'dev'
|
|
28
|
-
Requires-Dist: black>=23.0,<25.0 ; extra == 'dev'
|
|
29
|
-
Requires-Dist: isort>=5.12.0,<6.0 ; extra == 'dev'
|
|
30
|
-
Requires-Dist: mypy>=1.5.0,<2.0 ; extra == 'dev'
|
|
31
|
-
Requires-Dist: ruff>=0.1.0,<1.0 ; extra == 'dev'
|
|
32
18
|
Requires-Dist: pytest>=7.0,<9.0 ; extra == 'all'
|
|
33
19
|
Requires-Dist: pytest-asyncio>=0.21.0,<1.0 ; extra == 'all'
|
|
34
20
|
Requires-Dist: pytest-xdist>=3.0,<4.0 ; extra == 'all'
|
|
@@ -40,23 +26,32 @@ Requires-Dist: black>=23.0,<25.0 ; extra == 'all'
|
|
|
40
26
|
Requires-Dist: isort>=5.12.0,<6.0 ; extra == 'all'
|
|
41
27
|
Requires-Dist: mypy>=1.5.0,<2.0 ; extra == 'all'
|
|
42
28
|
Requires-Dist: ruff>=0.1.0,<1.0 ; extra == 'all'
|
|
29
|
+
Requires-Dist: maturin>=1.2,<2.0 ; extra == 'dev'
|
|
30
|
+
Requires-Dist: black>=23.0,<25.0 ; extra == 'dev'
|
|
31
|
+
Requires-Dist: isort>=5.12.0,<6.0 ; extra == 'dev'
|
|
32
|
+
Requires-Dist: mypy>=1.5.0,<2.0 ; extra == 'dev'
|
|
33
|
+
Requires-Dist: ruff>=0.1.0,<1.0 ; extra == 'dev'
|
|
34
|
+
Requires-Dist: pytest>=7.0,<9.0 ; extra == 'testing'
|
|
35
|
+
Requires-Dist: pytest-asyncio>=0.21.0,<1.0 ; extra == 'testing'
|
|
36
|
+
Requires-Dist: pytest-xdist>=3.0,<4.0 ; extra == 'testing'
|
|
37
|
+
Requires-Dist: pytest-timeout>=2.0,<3.0 ; extra == 'testing'
|
|
38
|
+
Requires-Dist: testcontainers[docker]>=3.7.0,<5.0 ; extra == 'testing-docker'
|
|
39
|
+
Provides-Extra: all
|
|
40
|
+
Provides-Extra: dev
|
|
43
41
|
Provides-Extra: testing
|
|
44
|
-
Provides-Extra: examples
|
|
45
42
|
Provides-Extra: testing-docker
|
|
46
|
-
Provides-Extra: dev
|
|
47
|
-
Provides-Extra: all
|
|
48
43
|
License-File: LICENSE
|
|
49
44
|
License-File: NOTICE
|
|
50
45
|
Summary: Apache Iggy is the persistent message streaming platform written in Rust, supporting QUIC, TCP and HTTP transport protocols, capable of processing millions of messages per second.
|
|
51
46
|
Keywords: streaming,messaging,pubsub,iggy,rust,performance
|
|
52
47
|
Author-email: Dario Lencina Talarico <darioalessandrolencina@gmail.com>, Albin Skott <albin@mattsson.io>
|
|
53
|
-
Requires-Python: >=3.
|
|
48
|
+
Requires-Python: >=3.10
|
|
54
49
|
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
|
|
55
|
-
Project-URL: Homepage, https://iggy.apache.org
|
|
56
|
-
Project-URL: Documentation, https://iggy.apache.org/docs/
|
|
57
|
-
Project-URL: Repository, https://github.com/apache/iggy
|
|
58
50
|
Project-URL: Bug Tracker, https://github.com/apache/iggy/issues
|
|
59
51
|
Project-URL: Discord, https://discord.gg/C5Sux5NcRa
|
|
52
|
+
Project-URL: Documentation, https://iggy.apache.org/docs/
|
|
53
|
+
Project-URL: Homepage, https://iggy.apache.org
|
|
54
|
+
Project-URL: Repository, https://github.com/apache/iggy
|
|
60
55
|
|
|
61
56
|
# apache-iggy
|
|
62
57
|
|
|
@@ -83,24 +78,12 @@ pip install -e ".[testing]"
|
|
|
83
78
|
For development with all tools:
|
|
84
79
|
|
|
85
80
|
```bash
|
|
86
|
-
pip install -e ".[dev,testing
|
|
81
|
+
pip install -e ".[dev,testing]"
|
|
87
82
|
```
|
|
88
83
|
|
|
89
84
|
### Supported Python Versions
|
|
90
85
|
|
|
91
|
-
- Python 3.
|
|
92
|
-
|
|
93
|
-
## Usage and Examples
|
|
94
|
-
|
|
95
|
-
All examples rely on a running iggy server. To start the server, execute:
|
|
96
|
-
|
|
97
|
-
```bash
|
|
98
|
-
# Using latest version
|
|
99
|
-
docker run --rm -p 8080:8080 -p 3000:3000 -p 8090:8090 apache/iggy:latest
|
|
100
|
-
|
|
101
|
-
# Or build from source (recommended for development)
|
|
102
|
-
cd ../../ && cargo run --bin iggy-server
|
|
103
|
-
```
|
|
86
|
+
- Python 3.10+
|
|
104
87
|
|
|
105
88
|
## Testing
|
|
106
89
|
|
|
@@ -124,7 +107,7 @@ pytest tests/ -v
|
|
|
124
107
|
|
|
125
108
|
## Examples
|
|
126
109
|
|
|
127
|
-
Refer to the [
|
|
110
|
+
Refer to the [examples/python/](https://github.com/apache/iggy/tree/master/examples/python) directory for usage examples.
|
|
128
111
|
|
|
129
112
|
## Contributing
|
|
130
113
|
|
|
@@ -23,24 +23,12 @@ pip install -e ".[testing]"
|
|
|
23
23
|
For development with all tools:
|
|
24
24
|
|
|
25
25
|
```bash
|
|
26
|
-
pip install -e ".[dev,testing
|
|
26
|
+
pip install -e ".[dev,testing]"
|
|
27
27
|
```
|
|
28
28
|
|
|
29
29
|
### Supported Python Versions
|
|
30
30
|
|
|
31
|
-
- Python 3.
|
|
32
|
-
|
|
33
|
-
## Usage and Examples
|
|
34
|
-
|
|
35
|
-
All examples rely on a running iggy server. To start the server, execute:
|
|
36
|
-
|
|
37
|
-
```bash
|
|
38
|
-
# Using latest version
|
|
39
|
-
docker run --rm -p 8080:8080 -p 3000:3000 -p 8090:8090 apache/iggy:latest
|
|
40
|
-
|
|
41
|
-
# Or build from source (recommended for development)
|
|
42
|
-
cd ../../ && cargo run --bin iggy-server
|
|
43
|
-
```
|
|
31
|
+
- Python 3.10+
|
|
44
32
|
|
|
45
33
|
## Testing
|
|
46
34
|
|
|
@@ -64,7 +52,7 @@ pytest tests/ -v
|
|
|
64
52
|
|
|
65
53
|
## Examples
|
|
66
54
|
|
|
67
|
-
Refer to the [
|
|
55
|
+
Refer to the [examples/python/](https://github.com/apache/iggy/tree/master/examples/python) directory for usage examples.
|
|
68
56
|
|
|
69
57
|
## Contributing
|
|
70
58
|
|
|
@@ -266,6 +266,8 @@ class IggyClient:
|
|
|
266
266
|
partitions_count: builtins.int,
|
|
267
267
|
compression_algorithm: typing.Optional[builtins.str] = None,
|
|
268
268
|
replication_factor: typing.Optional[builtins.int] = None,
|
|
269
|
+
message_expiry: typing.Optional[datetime.timedelta] = None,
|
|
270
|
+
max_topic_size: typing.Optional[builtins.int] = None,
|
|
269
271
|
) -> collections.abc.Awaitable[None]:
|
|
270
272
|
r"""
|
|
271
273
|
Creates a new topic with the given parameters.
|
|
@@ -324,7 +326,7 @@ class IggyClient:
|
|
|
324
326
|
init_retries: typing.Optional[builtins.int] = None,
|
|
325
327
|
init_retry_interval: typing.Optional[datetime.timedelta] = None,
|
|
326
328
|
allow_replay: builtins.bool = False,
|
|
327
|
-
) -> IggyConsumer:
|
|
329
|
+
) -> collections.abc.Awaitable[IggyConsumer]:
|
|
328
330
|
r"""
|
|
329
331
|
Creates a new consumer group consumer.
|
|
330
332
|
|
|
@@ -385,6 +387,18 @@ class IggyConsumer:
|
|
|
385
387
|
Returns `Ok(())` if the server responds successfully, or a `PyRuntimeError`
|
|
386
388
|
if the operation fails.
|
|
387
389
|
"""
|
|
390
|
+
def iter_messages(self) -> collections.abc.AsyncIterator[ReceiveMessage]:
|
|
391
|
+
r"""
|
|
392
|
+
Asynchronously iterate over `ReceiveMessage`s.
|
|
393
|
+
|
|
394
|
+
Returns an async iterator that raises `StopAsyncIteration` when no more messages are available
|
|
395
|
+
or a `PyRuntimeError` on failure.
|
|
396
|
+
|
|
397
|
+
Note: This method does not currently support `AutoCommit.After`.
|
|
398
|
+
For `AutoCommit.IntervalOrAfter(datetime.timedelta, AutoCommitAfter)`,
|
|
399
|
+
only the interval part is applied; the `after` mode is ignored.
|
|
400
|
+
Use `consume_messages()` if you need commit-after-processing semantics.
|
|
401
|
+
"""
|
|
388
402
|
def consume_messages(
|
|
389
403
|
self,
|
|
390
404
|
callback: collections.abc.Callable[
|
|
@@ -467,6 +481,10 @@ class ReceiveMessage:
|
|
|
467
481
|
|
|
468
482
|
The length represents the length of the payload.
|
|
469
483
|
"""
|
|
484
|
+
def partition_id(self) -> builtins.int:
|
|
485
|
+
r"""
|
|
486
|
+
Retrieves the partition this message belongs to.
|
|
487
|
+
"""
|
|
470
488
|
|
|
471
489
|
class SendMessage:
|
|
472
490
|
r"""
|
|
@@ -477,10 +495,10 @@ class SendMessage:
|
|
|
477
495
|
"""
|
|
478
496
|
def __new__(cls, data: builtins.str | bytes) -> SendMessage:
|
|
479
497
|
r"""
|
|
480
|
-
Constructs a new `SendMessage` instance from a string.
|
|
498
|
+
Constructs a new `SendMessage` instance from a string or bytes.
|
|
481
499
|
|
|
482
500
|
This method allows for the creation of a `SendMessage` instance
|
|
483
|
-
directly from Python using the provided string data.
|
|
501
|
+
directly from Python using the provided string or bytes data.
|
|
484
502
|
"""
|
|
485
503
|
|
|
486
504
|
class StreamDetails:
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
|
|
18
18
|
[package]
|
|
19
19
|
name = "iggy_binary_protocol"
|
|
20
|
-
version = "0.8.
|
|
20
|
+
version = "0.8.3-edge.1"
|
|
21
21
|
description = "Iggy is the persistent message streaming platform written in Rust, supporting QUIC, TCP and HTTP transport protocols, capable of processing millions of messages per second."
|
|
22
22
|
edition = "2024"
|
|
23
23
|
license = "Apache-2.0"
|
{apache_iggy-0.6.0.dev2/core/common → apache_iggy-0.6.4.dev1/core/binary_protocol}/README.md
RENAMED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
|
|
10
10
|
[](https://crates.io/crates/iggy)
|
|
11
11
|
[](https://crates.io/crates/iggy)
|
|
12
|
-
[](https://codecov.io/github/apache/iggy)
|
|
13
13
|
[](https://deps.rs/repo/github/apache/iggy)
|
|
14
14
|
[](https://twitter.com/ApacheIggy)
|
|
15
15
|
[](https://discord.gg/C5Sux5NcRa)
|
|
@@ -107,7 +107,7 @@ We do also publish edge/dev/nightly releases (e.g. `0.6.0-edge.1` or `apache/igg
|
|
|
107
107
|
|
|
108
108
|
- [Rust](https://crates.io/crates/iggy)
|
|
109
109
|
- [C#](https://www.nuget.org/packages/Apache.Iggy/)
|
|
110
|
-
- [Java](https://
|
|
110
|
+
- [Java](https://mvnrepository.com/artifact/org.apache.iggy/iggy)
|
|
111
111
|
- [Python](https://pypi.org/project/apache-iggy/)
|
|
112
112
|
- [Node.js (TypeScript)](https://www.npmjs.com/package/apache-iggy)
|
|
113
113
|
- [Go](https://pkg.go.dev/github.com/apache/iggy/foreign/go)
|
|
@@ -211,11 +211,11 @@ ulimits:
|
|
|
211
211
|
|
|
212
212
|
## Configuration
|
|
213
213
|
|
|
214
|
-
The default configuration can be found in `
|
|
214
|
+
The default configuration can be found in `config.toml` file in `core/server` directory.
|
|
215
215
|
|
|
216
|
-
The configuration file is loaded from the current working directory, but you can specify the path to the configuration file by setting `IGGY_CONFIG_PATH` environment variable, for example `export IGGY_CONFIG_PATH=
|
|
216
|
+
The configuration file is loaded from the current working directory, but you can specify the path to the configuration file by setting `IGGY_CONFIG_PATH` environment variable, for example `export IGGY_CONFIG_PATH=core/server/config.toml` (or other command depending on OS).
|
|
217
217
|
|
|
218
|
-
When config file is not found, the default values from embedded `
|
|
218
|
+
When config file is not found, the default values from embedded `config.toml` file are used.
|
|
219
219
|
|
|
220
220
|
For the detailed documentation of the configuration file, please refer to the [configuration](https://iggy.apache.org/docs/server/configuration) section.
|
|
221
221
|
|
|
@@ -257,7 +257,7 @@ Start the server:
|
|
|
257
257
|
|
|
258
258
|
`cargo run --bin iggy-server`
|
|
259
259
|
|
|
260
|
-
All the data used by the server will be persisted under the `local_data` directory by default, unless specified differently in the configuration (see `system.path` in `
|
|
260
|
+
All the data used by the server will be persisted under the `local_data` directory by default, unless specified differently in the configuration (see `system.path` in `config.toml`).
|
|
261
261
|
|
|
262
262
|
One can use default root credentials with optional `--with-default-root-credentials`.
|
|
263
263
|
This flag is equivalent to setting `IGGY_ROOT_USERNAME=iggy` and `IGGY_ROOT_PASSWORD=iggy`, plus
|
|
@@ -88,7 +88,7 @@ impl PollMessagesCmd {
|
|
|
88
88
|
match HashMap::<HeaderKey, HeaderValue>::from_bytes(user_headers.clone()) {
|
|
89
89
|
Ok(headers) => headers
|
|
90
90
|
.iter()
|
|
91
|
-
.map(|(k, v)| (k.clone(), v.kind))
|
|
91
|
+
.map(|(k, v)| (k.clone(), v.kind()))
|
|
92
92
|
.collect::<Vec<_>>(),
|
|
93
93
|
Err(e) => {
|
|
94
94
|
tracing::error!("Failed to parse user headers, error: {e}");
|
|
@@ -113,7 +113,7 @@ impl PollMessagesCmd {
|
|
|
113
113
|
let message_headers = header_key_set
|
|
114
114
|
.iter()
|
|
115
115
|
.map(|(key, kind)| {
|
|
116
|
-
Cell::new(format!("Header: {}\n{}", key.
|
|
116
|
+
Cell::new(format!("Header: {}\n{}", key.to_string_value(), kind))
|
|
117
117
|
.set_alignment(CellAlignment::Center)
|
|
118
118
|
})
|
|
119
119
|
.collect::<Vec<_>>();
|
|
@@ -146,8 +146,8 @@ impl PollMessagesCmd {
|
|
|
146
146
|
.as_ref()
|
|
147
147
|
.map(|h| {
|
|
148
148
|
h.get(key)
|
|
149
|
-
.filter(|v| v.kind == *kind)
|
|
150
|
-
.map(|v| v.
|
|
149
|
+
.filter(|v| v.kind() == *kind)
|
|
150
|
+
.map(|v| v.to_string_value())
|
|
151
151
|
.unwrap_or_default()
|
|
152
152
|
})
|
|
153
153
|
.unwrap_or_default()
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
/*
|
|
1
|
+
/*
|
|
2
|
+
* Licensed to the Apache Software Foundation (ASF) under one
|
|
2
3
|
* or more contributor license agreements. See the NOTICE file
|
|
3
4
|
* distributed with this work for additional information
|
|
4
5
|
* regarding copyright ownership. The ASF licenses this file
|
|
@@ -24,8 +25,8 @@ use iggy_common::delete_personal_access_token::DeletePersonalAccessToken;
|
|
|
24
25
|
use iggy_common::get_personal_access_tokens::GetPersonalAccessTokens;
|
|
25
26
|
use iggy_common::login_with_personal_access_token::LoginWithPersonalAccessToken;
|
|
26
27
|
use iggy_common::{
|
|
27
|
-
ClientState, IdentityInfo, IggyError, PersonalAccessTokenExpiry,
|
|
28
|
-
RawPersonalAccessToken,
|
|
28
|
+
ClientState, DiagnosticEvent, IdentityInfo, IggyError, PersonalAccessTokenExpiry,
|
|
29
|
+
PersonalAccessTokenInfo, RawPersonalAccessToken,
|
|
29
30
|
};
|
|
30
31
|
|
|
31
32
|
#[async_trait::async_trait]
|
|
@@ -70,6 +71,7 @@ impl<B: BinaryClient> PersonalAccessTokenClient for B {
|
|
|
70
71
|
})
|
|
71
72
|
.await?;
|
|
72
73
|
self.set_state(ClientState::Authenticated).await;
|
|
74
|
+
self.publish_event(DiagnosticEvent::SignedIn).await;
|
|
73
75
|
mapper::map_identity_info(response)
|
|
74
76
|
}
|
|
75
77
|
}
|