Skip to content

Commit a16880e

Browse files
authored
[benchmark] Fix copy-paste labels in micro-benchmarks (#8521)
1 parent 0e22fa8 commit a16880e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

paimon-benchmark/paimon-micro-benchmarks/src/test/java/org/apache/paimon/benchmark/arrow/ArrowWriteBenchmark.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public class ArrowWriteBenchmark {
3636
public void testWrite() {
3737
int batch = 1024 * 20;
3838
Benchmark benchmark =
39-
new Benchmark("read", batch * batch)
39+
new Benchmark("write", batch * batch)
4040
.setNumWarmupIters(1)
4141
.setOutputPerIteration(true);
4242
RowType rowType =

paimon-benchmark/paimon-micro-benchmarks/src/test/java/org/apache/paimon/benchmark/lookup/LookupReaderBenchmark.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242

4343
import static org.assertj.core.api.Assertions.assertThat;
4444

45-
/** Benchmark for measuring the throughput of writing for lookup. */
45+
/** Benchmark for measuring the throughput of reading for lookup. */
4646
@ExtendWith(ParameterizedTestExtension.class)
4747
public class LookupReaderBenchmark extends AbstractLookupBenchmark {
4848
private static final int QUERY_KEY_COUNT = 10000;

0 commit comments

Comments
 (0)