This is an automated email from the ASF dual-hosted git repository.
gkoszyk pushed a change to branch io_uring_tpc
in repository https://gitbox.apache.org/repos/asf/iggy.git
from df3a05ba server compiles
new 639a9a88 fix sdk
new 2a22241a fix segment writing/reading
The 2 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:
core/common/src/types/confirmation/mod.rs | 1 -
core/integration/tests/archiver/disk.rs | 6 +
core/integration/tests/state/mod.rs | 7 +-
.../tests/streaming/common/test_setup.rs | 5 +-
core/integration/tests/streaming/get_by_offset.rs | 2 +-
.../tests/streaming/get_by_timestamp.rs | 2 +-
core/integration/tests/streaming/messages.rs | 2 +-
core/integration/tests/streaming/mod.rs | 2 +-
core/integration/tests/streaming/partition.rs | 2 +-
core/integration/tests/streaming/segment.rs | 160 +--------------
.../tests/streaming/{system.rs => shard.rs} | 5 +-
core/integration/tests/streaming/snapshot.rs | 5 +-
core/integration/tests/streaming/stream.rs | 2 +-
core/integration/tests/streaming/topic.rs | 2 +-
core/integration/tests/streaming/topic_messages.rs | 8 +-
core/sdk/src/clients/client.rs | 10 +-
core/sdk/src/clients/consumer.rs | 10 +-
core/sdk/src/clients/consumer_builder.rs | 6 +-
core/sdk/src/clients/producer.rs | 6 +-
core/sdk/src/clients/producer_builder.rs | 6 +-
core/sdk/src/http/http_client.rs | 6 +-
core/server/Cargo.toml | 2 +-
core/server/src/archiver/disk.rs | 5 +-
core/server/src/archiver/mod.rs | 8 +-
core/server/src/archiver/s3.rs | 4 +
.../handlers/messages/send_messages_handler.rs | 1 -
core/server/src/bootstrap.rs | 1 -
.../src/compat/index_rebuilding/index_rebuilder.rs | 43 +++--
core/server/src/io/file.rs | 122 ++++++++++++
core/server/src/io/mod.rs | 3 +
core/server/src/io/reader.rs | 44 +++++
core/server/src/io/writer.rs | 57 ++++++
core/server/src/lib.rs | 1 +
core/server/src/shard/system/messages.rs | 3 +-
core/server/src/shard/system/storage.rs | 14 +-
core/server/src/state/file.rs | 25 ++-
core/server/src/state/mod.rs | 8 +-
core/server/src/streaming/partitions/messages.rs | 29 ++-
core/server/src/streaming/partitions/storage.rs | 44 +++--
core/server/src/streaming/persistence/persister.rs | 58 +++---
core/server/src/streaming/persistence/task.rs | 24 +--
.../streaming/segments/messages/messages_reader.rs | 30 ++-
.../streaming/segments/messages/messages_writer.rs | 94 +++------
core/server/src/streaming/segments/messages/mod.rs | 58 ++++--
.../streaming/segments/messages/persister_task.rs | 215 ---------------------
core/server/src/streaming/segments/segment.rs | 7 +-
.../src/streaming/segments/writing_messages.rs | 13 +-
core/server/src/streaming/topics/messages.rs | 10 +-
core/server/src/streaming/topics/persistence.rs | 2 +-
core/server/src/streaming/utils/file.rs | 12 +-
50 files changed, 538 insertions(+), 654 deletions(-)
rename core/integration/tests/streaming/{system.rs => shard.rs} (98%)
create mode 100644 core/server/src/io/file.rs
create mode 100644 core/server/src/io/mod.rs
create mode 100644 core/server/src/io/reader.rs
create mode 100644 core/server/src/io/writer.rs
delete mode 100644
core/server/src/streaming/segments/messages/persister_task.rs