-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAticTdbComparisonBsbmQueryMix.java
More file actions
295 lines (240 loc) · 9.88 KB
/
Copy pathAticTdbComparisonBsbmQueryMix.java
File metadata and controls
295 lines (240 loc) · 9.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
package de.dfki.sds.aticsqlitejmh;
import benchmark.testdriver.TestDriver;
import de.dfki.sds.atic.ac.User;
import de.dfki.sds.atic.ac.UserGroupManagement;
import de.dfki.sds.atic.jenatic.InvocationContext;
import de.dfki.sds.aticsqlite.AticFactory;
import de.dfki.sds.aticsqlite.SqliteAticDatasetGraph;
import de.dfki.sds.aticsqlite.SqliteAticGraph;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.util.concurrent.TimeUnit;
import org.apache.jena.graph.Graph;
import org.apache.jena.query.Dataset;
import org.apache.jena.query.Query;
import org.apache.jena.query.QueryExecution;
import org.apache.jena.query.QueryExecutionFactory;
import org.apache.jena.query.QueryFactory;
import org.apache.jena.query.ResultSet;
import org.apache.jena.rdf.model.Model;
import org.apache.jena.riot.Lang;
import org.apache.jena.riot.RDFDataMgr;
import org.apache.jena.sparql.core.DatasetGraph;
import org.apache.jena.tdb2.TDB2Factory;
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.Warmup;
import org.openjdk.jmh.results.format.ResultFormatType;
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;
import org.openjdk.jmh.runner.options.VerboseMode;
/**
*
*/
@BenchmarkMode(Mode.AverageTime)
@OutputTimeUnit(TimeUnit.SECONDS)
@Warmup(iterations = 1, time = 1)
@Measurement(iterations = 5, time = 1)
@State(Scope.Benchmark)
@Fork(1)
public class AticTdbComparisonBsbmQueryMix {
//200 = 75_550
//2000 = 725_305
@Param({"200", "2000" })
private int size;
@Param({"ATIC", "TDB2"}) //"TDB2-InMemory"
private String storeType;
@Param({"Admin", "User"})
private String userType;
private DatasetGraph datasetGraph;
private Graph defaultGraph;
private Path bsbmFile;
private InvocationContext userCtx;
private TestDriver testDriver;
private void initATIC() throws IOException {
Path tempDir = Files.createTempDirectory("benchmark-");
Dataset dataset = AticFactory.connectDataset(tempDir.toFile());
//low level atic
datasetGraph = (SqliteAticDatasetGraph) dataset.asDatasetGraph();
if(userType.equals("Admin")) {
//set to admin
User adminUser = datasetGraph.calculateRead(() -> {
return ((SqliteAticDatasetGraph) datasetGraph).getUser(UserGroupManagement.ADMIN_USERNAME, InvocationContext.EMPTY);
});
userCtx = new InvocationContext.Builder().fromUser(adminUser).build();
} else {
String username = "jdoe";
datasetGraph.executeWrite(() -> {
((SqliteAticDatasetGraph) datasetGraph).addUser("John", "Doe", "john.doe@example.org", username, InvocationContext.EMPTY);
});
User johnUser = datasetGraph.calculateRead(() -> {
return ((SqliteAticDatasetGraph) datasetGraph).getUser(username, InvocationContext.EMPTY);
});
userCtx = new InvocationContext.Builder().fromUser(johnUser).build();
}
defaultGraph = datasetGraph.calculateRead(() -> {
return (SqliteAticGraph) ((SqliteAticDatasetGraph) datasetGraph).getDefaultGraph(userCtx);
});
userCtx.transferContext(datasetGraph.getContext());
//BSBM 200 has 75_550 triples
//BSBM 2000 has 725_305 triples
int expectedTripleCount = 0;
switch(size) {
case 200 -> expectedTripleCount = 75_550;
case 2000 -> expectedTripleCount = 725_305;
}
//so all triples are stored in memory and one time processBuffer is called
SqliteAticGraph.setDefaultBufferAndBatchSize(expectedTripleCount);
}
private void initTDB2InMemory() throws IOException {
Dataset dataset = TDB2Factory.createDataset();
datasetGraph = dataset.asDatasetGraph();
defaultGraph = datasetGraph.calculateRead(() -> {
return datasetGraph.getDefaultGraph();
});
}
private void initTDB2() throws IOException {
Path tempDir = Files.createTempDirectory("benchmark-");
Dataset dataset = TDB2Factory.connectDataset(tempDir.toFile().getAbsolutePath());
datasetGraph = dataset.asDatasetGraph();
defaultGraph = datasetGraph.calculateRead(() -> {
return datasetGraph.getDefaultGraph();
});
}
@Setup
public void init() throws IOException {
if (storeType.equals("TDB2-InMemory")) {
initTDB2InMemory();
} else if (storeType.equals("TDB2")) {
initTDB2();
} else if (storeType.equals("ATIC")) {
initATIC();
}
bsbmFile = Downloader.downloadBSBM(size, true);
//load data
datasetGraph.executeWrite(() -> {
try {
RDFDataMgr.read(defaultGraph, new FileInputStream(bsbmFile.toFile()), Lang.NT);
} catch (FileNotFoundException ex) {
throw new RuntimeException(ex);
}
});
testDriver = new TestDriver(new String[]{});
testDriver.setSeed(42);
testDriver.init();
}
@Benchmark
public void mixInOneReadTransaction() {
datasetGraph.executeRead(() -> {
testDriver.runMix(queryStr -> {
Query query = QueryFactory.create(queryStr);
QueryExecution qe = QueryExecutionFactory.create(query, datasetGraph);
int resultCount = 0;
if (query.isSelectType()) {
ResultSet rs = qe.execSelect();
while (rs.hasNext()) {
rs.next();
resultCount++;
}
rs.close();
} else if (query.isAskType()) {
boolean b = qe.execAsk();
resultCount = b ? 1 : 0;
} else if (query.isDescribeType()) {
Model model = qe.execDescribe();
resultCount = (int) model.size();
} else if (query.isConstructType()) {
Model model = qe.execConstruct();
resultCount = (int) model.size();
} else {
throw new IllegalStateException(queryStr);
}
qe.close();
return resultCount;
});
});
}
/*
public void mixInOneReadTransactionTrial() {
datasetGraph.executeRead(() -> {
testDriver.runMix(queryStr -> {
Query query = QueryFactory.create(queryStr);
QueryExecution qe = QueryExecutionFactory.create(query, datasetGraph);
int resultCount = 0;
if (query.isSelectType()) {
ResultSet rs = qe.execSelect();
while (rs.hasNext()) {
rs.next();
resultCount++;
}
rs.close();
} else if (query.isAskType()) {
boolean b = qe.execAsk();
resultCount = b ? 1 : 0;
} else if (query.isDescribeType()) {
Model model = qe.execDescribe();
resultCount = (int) model.size();
} else if (query.isConstructType()) {
Model model = qe.execConstruct();
resultCount = (int) model.size();
} else {
throw new IllegalStateException(queryStr);
}
qe.close();
System.out.println(queryStr);
System.out.println(resultCount);
System.out.println();
return resultCount;
});
});
}
*/
public static void main(String[] args) throws Exception {
//trialBenchmark();
runBenchmark();
}
/*
private static void trialBenchmark() throws IOException {
AticTdbComparisonBsbmQueryMix b = new AticTdbComparisonBsbmQueryMix();
b.size = 200;
b.storeType = "ATIC";
long start = System.nanoTime();
b.init();
long end = System.nanoTime();
double seconds = (end - start) / 1_000_000_000.0;
System.out.printf(
"init() took %.3f seconds%n",
seconds);
SqliteAticDatasetGraph aticDatasetGraph = (SqliteAticDatasetGraph) b.datasetGraph;
String location = aticDatasetGraph.getContext().get(SqliteAticDatasetGraph.ATIC_LOCATION);
System.out.println(location);
FileUtils.copyFile(new File(location + "/atic.sqlite"), new File("../atic-server-home/data/bsbm-" + b.size + ".sqlite"));
aticDatasetGraph.enableQueryLogger("../atic-server-home/data/bsbm-logging.sqlite");
b.mixInOneReadTransactionTrial();
aticDatasetGraph.disableQueryLogger();
}
*/
private static void runBenchmark() throws RunnerException {
//https://jmh.morethan.io/
Options opt = new OptionsBuilder()
.verbosity(VerboseMode.NORMAL)
.include(AticTdbComparisonBsbmQueryMix.class.getSimpleName())
.resultFormat(ResultFormatType.JSON)
.result(AticTdbComparisonBsbmQueryMix.class.getSimpleName() + ".json")
.build();
new Runner(opt).run();
}
}