Skip to content

Commit 99eebc8

Browse files
committed
HOTFIX: reduce streams benchmark input records to 10 million
We are occasionally hitting some timeouts due to processing not finishing. So rather than failing the build for these reasons it would be better to reduce the runtime. Author: Damian Guy <damian.guy@gmail.com> Reviewers: Guozhang Wang <wangguoz@gmail.com> Closes apache#3725 from dguy/fix-system-test
1 parent 3b7e104 commit 99eebc8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/kafkatest/benchmarks/streams/streams_simple_benchmark_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class StreamsSimpleBenchmarkTest(Test):
3030

3131
def __init__(self, test_context):
3232
super(StreamsSimpleBenchmarkTest, self).__init__(test_context)
33-
self.num_records = 20000000L
33+
self.num_records = 10000000L
3434
self.replication = 1
3535
self.num_threads = 1
3636

0 commit comments

Comments
 (0)