mirror of https://github.com/apache/kafka.git
MINOR: report streams benchmarks separately (#5275)
Specify each benchmark as a separate test so that we can see the results reported independently. Reviewers: Guozhang Wang <wangguoz@gmail.com>
This commit is contained in:
parent
954be11bf2
commit
74502710b3
|
@ -51,7 +51,11 @@ class StreamsSimpleBenchmarkTest(Test):
|
|||
self.replication = 1
|
||||
|
||||
@cluster(num_nodes=12)
|
||||
@matrix(test=["consume", "consumeproduce", "streams-simple", "streams-count", "streams-join"], scale=[1])
|
||||
@matrix(test=["consume", "consumeproduce",
|
||||
"streamprocess", "streamprocesswithsink", "streamprocesswithstatestore", "streamprocesswithwindowstore",
|
||||
"streamcount", "streamcountwindowed",
|
||||
"streamtablejoin", "streamstreamjoin", "tabletablejoin"],
|
||||
scale=[1])
|
||||
def test_simple_benchmark(self, test, scale):
|
||||
"""
|
||||
Run simple Kafka Streams benchmark
|
||||
|
|
Loading…
Reference in New Issue