Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CORE-8848] rptest: adjust compaction settings in datalake/compaction_test #25075

Open
wants to merge 2 commits into
base: dev
Choose a base branch
from
Open
Changes from 1 commit
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
6 changes: 3 additions & 3 deletions tests/rptest/tests/datalake/compaction_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def __init__(self, test_ctx, *args, **kwargs):
"iceberg_enabled": "true",
"iceberg_catalog_commit_interval_ms": 5000,
"datalake_coordinator_snapshot_max_delay_secs": 10,
"log_compaction_interval_ms": 2000
"log_compaction_interval_ms": 5000
},
*args,
**kwargs)
Expand All @@ -61,12 +61,12 @@ def partition_segments(self) -> int:
def wait_until_segment_count(self, count):
wait_until(
lambda: self.partition_segments() == count,
timeout_sec=30,
timeout_sec=120,
backoff_sec=3,
err_msg=f"Timed out waiting for segment count to reach {count}")

def produce_until_segment_count(self, count):
timeout_sec = 30
timeout_sec = 60
deadline = time() + timeout_sec
while True:
current_segment_count = self.partition_segments()
Expand Down