org.eclipse.rdf4j.benchmark.ReasoningUpdateBenchmark Maven / Gradle / Ivy
The newest version!
/*******************************************************************************
* Copyright (c) 2020 Eclipse RDF4J contributors.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Distribution License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
package org.eclipse.rdf4j.benchmark;
import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.nio.charset.StandardCharsets;
import java.util.HashMap;
import java.util.Map;
import java.util.concurrent.TimeUnit;
import java.util.stream.Stream;
import org.apache.commons.io.IOUtils;
import org.eclipse.rdf4j.model.IRI;
import org.eclipse.rdf4j.model.Literal;
import org.eclipse.rdf4j.model.Statement;
import org.eclipse.rdf4j.model.impl.SimpleValueFactory;
import org.eclipse.rdf4j.query.TupleQueryResult;
import org.eclipse.rdf4j.repository.sail.SailRepository;
import org.eclipse.rdf4j.repository.sail.SailRepositoryConnection;
import org.eclipse.rdf4j.rio.RDFFormat;
import org.eclipse.rdf4j.sail.inferencer.fc.SchemaCachingRDFSInferencer;
import org.eclipse.rdf4j.sail.memory.MemoryStore;
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.State;
import org.openjdk.jmh.annotations.Warmup;
/**
* @author Håvard Mikkelsen Ottestad
*/
@Measurement(iterations = 10)
@Warmup(iterations = 20)
@Fork(1)
@State(Scope.Thread)
public class ReasoningUpdateBenchmark {
private int expectedCount;
@Param({ "moreRdfs::12180" })
public String param;
static private final IRI schemaGraph = SimpleValueFactory.getInstance().createIRI("http://example.org/schemaGraph");
@Benchmark
@BenchmarkMode(Mode.AverageTime)
@OutputTimeUnit(TimeUnit.MILLISECONDS)
public void forwardChainingSchemaCachingRDFSInferencer() throws IOException {
SailRepository sail = new SailRepository(new SchemaCachingRDFSInferencer(new MemoryStore()));
try (SailRepositoryConnection connection = sail.getConnection()) {
connection.begin();
connection.add(resourceAsStream("schema.ttl"), "", RDFFormat.TURTLE, schemaGraph);
connection.commit();
addAllDataMultipleTransactions(connection);
}
checkSize(sail);
}
private void checkSize(SailRepository sail) {
assert getSize(sail) == expectedCount : "Was " + getSize(sail) + " but expected " + expectedCount;
}
private int getSize(SailRepository sail) {
try (SailRepositoryConnection connection = sail.getConnection()) {
try (TupleQueryResult evaluate = connection
.prepareTupleQuery("select (count (*) as ?count) where {?a ?b ?c}")
.evaluate()) {
return ((Literal) evaluate.next().getBinding("count").getValue()).intValue();
}
}
}
private void addAllDataMultipleTransactions(SailRepositoryConnection connection) throws IOException {
for (int i = 0; i <= 9; i++) {
// remove a random statement
connection.begin();
try (Stream stream = connection.getStatements(null, null, null).stream()) {
stream.findFirst().ifPresent(connection::remove);
}
connection.commit();
connection.begin();
connection.add(resourceAsStream("data" + i++ + ".ttl"), "", RDFFormat.TURTLE);
connection.commit();
}
}
Map cache = new HashMap<>();
private InputStream resourceAsStream(String resourceName) {
String[] split = param.split("\\:\\:");
this.expectedCount = Integer.parseInt(split[1]);
String filename = split[0] + "/" + resourceName;
String content = cache.computeIfAbsent(filename, (fn) -> {
try {
return IOUtils.toString(ReasoningUpdateBenchmark.class.getClassLoader().getResourceAsStream(fn),
StandardCharsets.UTF_8);
} catch (IOException e) {
throw new RuntimeException(e);
}
});
return new ByteArrayInputStream(content.getBytes(StandardCharsets.UTF_8));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy