-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBenchmarks.java
366 lines (306 loc) · 9.85 KB
/
Benchmarks.java
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
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
import java.util.*;
import java.lang.*;
import java.io.PrintWriter;
import java.time.LocalDateTime;
import java.time.ZoneId;
import java.util.concurrent.ThreadLocalRandom;
import java.lang.Math;
public class Benchmarks {
Random generator;
Integer iterations;
Integer dataSize;
HashMap<String, Integer> maxValues;
HashMap<String, Integer> minValues;
Long startTime;
String banner;
LocalDateTime currentTime;
static PrintWriter writer;
static PrintWriter queries;
static {
try {
writer = new PrintWriter("benchmarks/results/benchmark_results.sql", "UTF-8");
//queries = new PrintWriter("benchmark_queries.sql", "UTF-8");
} catch(Exception e){
System.out.println(e.getMessage());
throw new RuntimeException(e.getMessage());
}
}
public Benchmarks() {
generator = new Random();
generator.setSeed(12345);
iterations = 1000;
dataSize = 1000;
maxValues = new HashMap<String, Integer>();
minValues = new HashMap<String, Integer>();
banner = new Main().bannerid;
currentTime = LocalDateTime.now(ZoneId.of("America/New_York"));
}
void startTimer() {
startTime = System.nanoTime();
}
Long endTimer() {
Long endTime = System.nanoTime();
return (endTime - startTime); // convert to millis because 64bit?
}
void printDuration(String label, Float nanos) {
System.out.println(
label + " performance: "
+ nanos
+ "ns per iteration, "
+ iterations
+ " iterations");
writer.println(
"INSERT INTO BENCHMARKS VALUES ('"
+ banner + "','"
+ currentTime + "',"
+ nanos + "," + "'"
+ label + "');");
}
Table setupTable() {
HashSet<String> a = new HashSet<String>();
a.add("A");
a.add("B");
a.add("C");
// reset max min data because new table
maxValues = new HashMap<String, Integer>();
minValues = new HashMap<String, Integer>();
Table t = new Table("test_table", a);
return t;
}
void updateMaxMin(String attr, Integer val) {
Integer max = maxValues.get(attr);
Integer min = minValues.get(attr);
if (max == null) {
maxValues.put(attr, val);
minValues.put(attr, val);
} else if (max < val) {
maxValues.put(attr, val);
} else if (min > val) {
minValues.put(attr, val);
}
}
Vector<Tuple> setupTuples() {
Vector<Tuple> v = new Vector<Tuple>();
for (Integer i = 0; i < dataSize; ++i) {
Tuple t = new Tuple();
Integer A = generator.nextInt();
updateMaxMin("A", A);
Integer B = generator.nextInt();
updateMaxMin("B", B);
Integer C = generator.nextInt();
updateMaxMin("C", C);
t.put("A", A);
t.put("B", B);
t.put("C", C);
v.add(t);
}
return v;
}
public void insertBenchmark() {
Long sum = Long.valueOf(0);
for (Integer i = 0; i < iterations; ++i) {
Table x = setupTable();
Vector<Tuple> v = setupTuples();
startTimer();
for (Tuple t : v) {
x.insert(t);
}
Long end = endTimer();
sum += end;
}
Float s = Float.valueOf(sum);
Float iter = Float.valueOf(iterations);
printDuration("insert", s/iter);
}
public void bulkLoadBenchmark() {
Long sum = Long.valueOf(0);
for (Integer i = 0; i < iterations; ++i) {
Table x = setupTable();
Vector<Tuple> v = setupTuples();
startTimer();
x.load(v);
sum += endTimer();
}
Float s = Float.valueOf(sum);
Float iter = Float.valueOf(iterations);
printDuration("bulkload", s/iter);
}
void filterWarmup(Table t) throws Exception {
System.gc();
Set<String> cols = new HashSet<String>();
cols.add("A");
cols.add("B");
cols.add("C");
for (Integer i = 0; i < iterations; ++i) {
Integer x = generator.nextInt();
Integer y = generator.nextInt();
Integer low = x;
Integer high = y;
if (low > high) {
low = y;
high = x;
}
Filter f = new Filter("B", low, high);
TupleIDSet pl = t.filter(f);
t.materialize(cols, pl);
}
}
public void filterBenchmark() throws Exception {
Long sum = Long.valueOf(0);
Table t = setupTable();
Vector<Tuple> v = setupTuples();
t.load(v);
Set<String> cols = new HashSet<String>();
cols.add("A");
cols.add("B");
cols.add("C");
filterWarmup(t);
for (Integer i = 0; i < iterations; ++i) {
Integer x = generator.nextInt();
Integer y = generator.nextInt();
Integer low = x;
Integer high = y;
if (low > high) {
low = y;
high = x;
}
Filter f = new Filter("B", low, high);
startTimer();
TupleIDSet pl = t.filter(f);
t.materialize(cols, pl);
sum += endTimer();
}
Float s = Float.valueOf(sum);
Float iter = Float.valueOf(iterations);
printDuration("filter no index", s/iter);
}
public void filterSecondaryIndexBenchmark() throws Exception {
Long sum = Long.valueOf(0);
Table t = setupTable();
Vector<Tuple> v = setupTuples();
t.load(v);
t.setClusteredIndex("A");
t.setClusteredIndex("B");
Set<String> cols = new HashSet<String>();
cols.add("A");
cols.add("B");
cols.add("C");
filterWarmup(t);
for (Integer i = 0; i < iterations; ++i) {
Integer x = generator.nextInt();
Integer y = generator.nextInt();
Integer low = x;
Integer high = y;
if (low > high) {
low = y;
high = x;
}
Filter f = new Filter("B", low, high);
startTimer();
TupleIDSet pl = t.filter(f);
t.materialize(cols, pl);
sum += endTimer();
}
Float s = Float.valueOf(sum);
Float iter = Float.valueOf(iterations);
printDuration("filter secondary index", s/iter);
}
public void filterClusteredIndexBenchmark() throws Exception {
Long sum = Long.valueOf(0);
Table t = setupTable();
Vector<Tuple> v = setupTuples();
t.load(v);
t.setClusteredIndex("A");
Set<String> cols = new HashSet<String>();
cols.add("A");
cols.add("B");
cols.add("C");
filterWarmup(t);
for (Integer i = 0; i < iterations; ++i) {
Integer x = generator.nextInt();
Integer y = generator.nextInt();
Integer low = x;
Integer high = y;
if (low > high) {
low = y;
high = x;
}
Filter f = new Filter("A", low, high);
startTimer();
TupleIDSet pl = t.filter(f);
t.materialize(cols, pl);
sum += endTimer();
}
Float s = Float.valueOf(sum);
Float iter = Float.valueOf(iterations);
printDuration("filter clustered index", s/iter);
}
public void deleteBenchmark() {
TupleIDSet tuples = allIds();
Long sum = Long.valueOf(0);
for (Integer i = 0; i < iterations; ++i) {
Table x = setupTable();
Vector<Tuple> v = setupTuples();
x.load(v);
startTimer();
x.delete(tuples);
sum += endTimer();
}
Float s = Float.valueOf(sum);
Float iter = Float.valueOf(iterations);
printDuration("delete", s/iter);
}
public void updateWarmup(String col) {
Table x = setupTable();
Vector<Tuple> v = setupTuples();
x.load(v);
for (Integer i = 0; i < iterations; ++i) {
// update a random half of the tuples
TupleIDSet tuples = randomIds(dataSize/2);
Integer value = generator.nextInt();
x.update(col, tuples, value);
}
}
public void updateBenchmark(String col) {
// control which column is updated using arguments
updateWarmup(col);
Long sum = Long.valueOf(0);
Table x = setupTable();
Vector<Tuple> v = setupTuples();
x.load(v);
for (Integer i = 0; i < iterations; ++i) {
// update a random half of the tuples
TupleIDSet tuples = randomIds(dataSize/2);
Integer value = generator.nextInt();
startTimer();
x.update(col, tuples, value);
sum += endTimer();
}
Float s = Float.valueOf(sum);
Float iter = Float.valueOf(iterations);
String label = "clustered update";
if (col == "B") {
label = "secondary update";
} else if (col == "C") {
label = "unindexed update";
}
printDuration(label, s/iter);
}
TupleIDSet allIds() {
TupleIDSet tuples = new TupleIDSet();
for (Integer i = 0; i < dataSize; i++) {
tuples.add(i);
}
return tuples;
}
TupleIDSet randomIds(Integer n) {
TupleIDSet tuples = new TupleIDSet();
while (tuples.size() < n) {
tuples.add(Math.abs(generator.nextInt()) % dataSize);
}
return tuples;
}
void finish() {
writer.close();
}
}