blob: 3cc3ee205a060e88c76f591cdcd97f1e2a2d11fd [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.ignite.internal.benchmark;
import static org.apache.ignite.internal.sql.engine.util.Commons.IN_BUFFER_SIZE;
import java.io.IOException;
import java.util.concurrent.TimeUnit;
import org.apache.ignite.sql.IgniteSql;
import org.openjdk.jmh.annotations.Benchmark;
import org.openjdk.jmh.annotations.BenchmarkMode;
import org.openjdk.jmh.annotations.Fork;
import org.openjdk.jmh.annotations.Measurement;
import org.openjdk.jmh.annotations.Mode;
import org.openjdk.jmh.annotations.OutputTimeUnit;
import org.openjdk.jmh.annotations.Param;
import org.openjdk.jmh.annotations.Scope;
import org.openjdk.jmh.annotations.Setup;
import org.openjdk.jmh.annotations.State;
import org.openjdk.jmh.annotations.Threads;
import org.openjdk.jmh.annotations.Warmup;
import org.openjdk.jmh.infra.Blackhole;
import org.openjdk.jmh.runner.Runner;
import org.openjdk.jmh.runner.RunnerException;
import org.openjdk.jmh.runner.options.Options;
import org.openjdk.jmh.runner.options.OptionsBuilder;
/**
* Benchmark that runs join sql queries via embedded client on clusters of different size.
*/
@State(Scope.Benchmark)
@Fork(1)
@Threads(1)
@Warmup(iterations = 10, time = 2)
@Measurement(iterations = 20, time = 2)
@BenchmarkMode(Mode.AverageTime)
@OutputTimeUnit(TimeUnit.MILLISECONDS)
@SuppressWarnings({"WeakerAccess", "unused"})
public class SqlJoinBenchmark extends AbstractMultiNodeBenchmark {
private static final int TABLE_SIZE = 2 * IN_BUFFER_SIZE + 1;
private IgniteSql sql;
@Param({"1", "2"})
private int clusterSize;
/** Fills the table with data. */
@Setup
public void setUp() throws IOException {
populateTable(TABLE_NAME, TABLE_SIZE, 1_000);
sql = clusterNode.sql();
}
/**
* Benchmark left hash join.
*/
@Benchmark
@OutputTimeUnit(TimeUnit.MICROSECONDS)
public void leftHashJoin(Blackhole bh) {
try (var rs = sql.execute(null, ""
+ "SELECT /*+ DISABLE_RULE('NestedLoopJoinConverter', 'MergeJoinConverter', 'CorrelatedNestedLoopJoin') */ t1.field1 "
+ "FROM usertable t1 "
+ "LEFT JOIN usertable t2 "
+ "on t1.field2 = t2.field2")) {
while (rs.hasNext()) {
bh.consume(rs.next());
}
}
}
/**
* Benchmark left merge join.
*/
@Benchmark
@OutputTimeUnit(TimeUnit.MICROSECONDS)
public void leftMergeJoin(Blackhole bh) {
try (var rs = sql.execute(null, ""
+ "SELECT /*+ DISABLE_RULE('HashJoinConverter', 'NestedLoopJoinConverter', 'CorrelatedNestedLoopJoin') */ t1.field1 "
+ "FROM usertable t1 "
+ "LEFT JOIN usertable t2 "
+ "on t1.field2 = t2.field2")) {
while (rs.hasNext()) {
bh.consume(rs.next());
}
}
}
/**
* Benchmark left nl join.
*/
@Benchmark
@OutputTimeUnit(TimeUnit.MICROSECONDS)
public void leftNestedJoin(Blackhole bh) {
try (var rs = sql.execute(null, ""
+ "SELECT /*+ DISABLE_RULE('HashJoinConverter', 'MergeJoinConverter', 'CorrelatedNestedLoopJoin') */ t1.field1 "
+ "FROM usertable t1 "
+ "LEFT JOIN usertable t2 "
+ "on t1.field2 = t2.field2")) {
while (rs.hasNext()) {
bh.consume(rs.next());
}
}
}
/**
* Benchmark's entry point.
*/
public static void main(String[] args) throws RunnerException {
Options opt = new OptionsBuilder()
.include(".*" + SqlJoinBenchmark.class.getSimpleName() + ".*Join")
.build();
new Runner(opt).run();
}
@Override
protected int nodes() {
return clusterSize;
}
}