-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.xml
60 lines (48 loc) · 1.8 KB
/
config.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<iguana xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<databases main="dbpedia">
<!-- manually added databases should look like:
<database id="virtuoso" type="impl">
# required. Its not possible to use 'localhost' here!
<endpoint uri="http://uri-to/sparql" />
# optionaly
<user value="username" />
# optionaly
<pwd value="password" />
</database>
-->
<!-- Do not remove the next comment-tag, its required for auto-replacing -->
<!-- %STORES% -->
<database id="ref" type="impl">
<endpoint uri="http://dbpedia.org/sparql" />
</database>
</databases>
<suite>
<drop-db value="false" />
<query-diversity value="2000" />
<graph-uri name="http://dbpedia.org" />
<random-function type="RandomTriple" generate="false">
<percent value="1.0" file-name="dbpedia2/" />
</random-function>
<save-results-as-diagram value="true"/>
<warmup time="0" file-name="warmup.txt" />
<test-db type="choose" reference="ref">
<!-- manually added entries should look like:
<db id="virtuoso" />
-->
<!-- Do not remove the next comment-tag, its required for auto-replacing -->
<!-- %CHOOSE% -->
</test-db>
<testcases>
<testcase class="org.aksw.iguana.testcases.StressTestcase">
<property name="sparql-user" value="1"/>
<property name="update-user" value="0"/>
<property name="latency-amount0" value="20"/>
<property name="latency-strategy0" value="VARIABLE"/>
<property name="queries-path" value="queries.txt"/>
<property name="is-pattern" value="false" />
<property name="timelimit" value="10000"/>
</testcase>
</testcases>
</suite>
</iguana>