This is an automated email from the ASF dual-hosted git repository.
gkoszyk pushed a change to branch improved_tpc_partition_ecs
in repository https://gitbox.apache.org/repos/asf/iggy.git
from f0e23b63 merge upstream
new 80c0b01e changes
new 4781c280 improvements another part
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:
Cargo.lock | 21 ++
core/server/Cargo.toml | 1 +
.../partitions/create_partitions_handler.rs | 2 +-
.../binary/handlers/topics/delete_topic_handler.rs | 11 +
core/server/src/shard/mod.rs | 4 +-
core/server/src/shard/system/consumer_offsets.rs | 2 +-
core/server/src/shard/system/partitions.rs | 308 +++++++++------------
core/server/src/shard/transmission/event.rs | 1 +
core/server/src/slab/partitions.rs | 168 ++++-------
core/server/src/slab/streams.rs | 12 -
core/server/src/slab/topics.rs | 11 -
core/server/src/slab/traits_ext.rs | 62 ++++-
.../src/streaming/partitions/consumer_offset.rs | 22 ++
core/server/src/streaming/partitions/mod.rs | 1 +
core/server/src/streaming/partitions/partition2.rs | 171 +++++++++++-
core/server/src/streaming/stats/stats.rs | 4 +-
.../server/src/streaming/topics/consumer_group2.rs | 58 ++--
core/server/src/streaming/topics/topic2.rs | 25 +-
18 files changed, 481 insertions(+), 403 deletions(-)
create mode 100644 core/server/src/streaming/partitions/consumer_offset.rs