Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def test_dependency_outage_during_produce(self, metadata_quorum, dependency):
"diskless.enable": "true",
"remote.storage.enable": "true",
"min.insync.replicas": 2,
"segment.bytes": 1048576,
"segment.bytes": 2097152,
"segment.ms": 5000,
"local.retention.ms": 5000,
},
Expand Down
3 changes: 1 addition & 2 deletions tests/kafkatest/tests/inkless/consolidation_pipeline_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,7 @@ def test_consolidation_pipeline(self, metadata_quorum):
"diskless.enable": "true",
"remote.storage.enable": "true",
"min.insync.replicas": 2,
# Roll segments by size/time so they close and get tiered.
"segment.bytes": 1048576,
"segment.bytes": 2097152,
"segment.ms": 5000,
},
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,7 @@ def test_read_from_remote_after_prune(self, metadata_quorum):
"diskless.enable": "true",
"remote.storage.enable": "true",
"min.insync.replicas": 2,
# Roll segments by size/time so they close and get tiered.
"segment.bytes": 1048576,
"segment.bytes": 2097152,
"segment.ms": 5000,
# Evict local segments soon after upload so data lives in
# remote before the wipe.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,7 @@ def _start_cluster(self):
"diskless.enable": "true",
"remote.storage.enable": "true",
"min.insync.replicas": 2,
# Roll segments by size/time so they close and get tiered.
"segment.bytes": 1048576,
"segment.bytes": 2097152,
"segment.ms": 5000,
# Evict local segments soon after upload so the early prefix
# lives only in remote -- retention must then reclaim remote.
Expand Down
3 changes: 1 addition & 2 deletions tests/kafkatest/tests/inkless/inkless_topic_switch_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -284,8 +284,7 @@ def _create_classic_tiered_topic(self, topic, num_partitions=1):
"configs": {
"remote.storage.enable": "true",
"min.insync.replicas": 1,
# 1 MiB is the enforced minimum for segment.bytes.
"segment.bytes": 1048576,
"segment.bytes": 2097152,
# Force a roll every 2s regardless of segment fill, so that
# produced records flow through closed segments quickly.
"segment.ms": 2000,
Expand Down
Loading