Skip to content
Merged
Changes from all commits
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
117 changes: 117 additions & 0 deletions src/test/java/benchmark/DFSelectionSetBenchmark.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,117 @@
package benchmark;

import com.google.common.base.Charsets;
import com.google.common.io.Resources;
import graphql.execution.CoercedVariables;
import graphql.language.Document;
import graphql.normalized.ExecutableNormalizedField;
import graphql.normalized.ExecutableNormalizedOperation;
import graphql.normalized.ExecutableNormalizedOperationFactory;
import graphql.parser.Parser;
import graphql.schema.DataFetchingFieldSelectionSet;
import graphql.schema.DataFetchingFieldSelectionSetImpl;
import graphql.schema.GraphQLOutputType;
import graphql.schema.GraphQLSchema;
import graphql.schema.SelectedField;
import graphql.schema.idl.SchemaGenerator;
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.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 java.io.IOException;
import java.net.URL;
import java.util.List;
import java.util.concurrent.TimeUnit;

import static com.google.common.io.Resources.getResource;

@State(Scope.Benchmark)
@BenchmarkMode(Mode.Throughput)
@Warmup(iterations = 2)
@Measurement(iterations = 2, timeUnit = TimeUnit.NANOSECONDS)
public class DFSelectionSetBenchmark {

@State(Scope.Benchmark)
public static class MyState {

public ExecutableNormalizedField normalisedField;
public GraphQLOutputType outputFieldType;
GraphQLSchema schema;
Document document;

@Setup
public void setup() {
try {
String schemaString = readFromClasspath("large-schema-2.graphqls");
schema = SchemaGenerator.createdMockedSchema(schemaString);

String query = readFromClasspath("large-schema-2-query.graphql");
document = Parser.parse(query);

ExecutableNormalizedOperation executableNormalizedOperation = ExecutableNormalizedOperationFactory.createExecutableNormalizedOperation(schema, document, null, CoercedVariables.emptyVariables());

normalisedField = executableNormalizedOperation.getTopLevelFields().get(0);

outputFieldType = schema.getObjectType("Object42");

} catch (Exception e) {
System.out.println(e);
throw new RuntimeException(e);
}
}

private String readFromClasspath(String file) throws IOException {
URL url = getResource(file);
return Resources.toString(url, Charsets.UTF_8);
}
}

@Benchmark
@Warmup(iterations = 2)
@Measurement(iterations = 5, time = 10)
@Threads(1)
@Fork(3)
@BenchmarkMode(Mode.AverageTime)
@OutputTimeUnit(TimeUnit.MILLISECONDS)
public void benchMarkAvgTime(MyState myState, Blackhole blackhole) {
List<SelectedField> fields = getSelectedFields(myState);
blackhole.consume(fields);
}

@Benchmark
@Warmup(iterations = 2)
@Measurement(iterations = 5, time = 10)
@Threads(1)
@Fork(3)
@BenchmarkMode(Mode.Throughput)
@OutputTimeUnit(TimeUnit.MILLISECONDS)
public void benchMarkThroughput(MyState myState, Blackhole blackhole) {
List<SelectedField> fields = getSelectedFields(myState);
blackhole.consume(fields);
}

private List<SelectedField> getSelectedFields(MyState myState) {
DataFetchingFieldSelectionSet dataFetchingFieldSelectionSet = DataFetchingFieldSelectionSetImpl.newCollector(myState.schema, myState.outputFieldType, () -> myState.normalisedField);
return dataFetchingFieldSelectionSet.getFields("wontBeFound");
}

public static void mainX(String[] args) throws InterruptedException {
Copy link
Contributor

@gnawf gnawf Jul 25, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Btw I found it's perfectly fine to simply name this main. In IntelliJ the run button on the class will run this, but the run buttons next to the benchMarkAvgTime and benchMarkThroughput functions still work fine.

MyState myState = new MyState();
myState.setup();

while (true) {
List<SelectedField> selectedFields = new DFSelectionSetBenchmark().getSelectedFields(myState);
Thread.sleep(500);
}
}

}