You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<!-- Note: This path is relative to the directory in which you start -->
22
+
<!-- the servlet container or within the classpath as a resource. -->
23
+
<!-- For the IDE, this is generally the root -->
24
+
<!-- of the bigdata project. For the WAR, it depends where you start -->
25
+
<!-- the servlet container. The "ant war" target rewrites this to be -->
26
+
<!-- relative to the root of the servlet container by default. -->
27
+
<param-name>propertyFile</param-name>
28
+
<param-value>/RWStore.properties</param-value>
29
+
</context-param>
30
+
<context-param>
31
+
<description>The default bigdata namespace of for the triple or quad store
32
+
instance to be exposed.</description>
33
+
<param-name>namespace</param-name>
34
+
<param-value>kb</param-value>
35
+
</context-param>
36
+
<context-param>
37
+
<description>When true a new triple or quads store instance will be created
38
+
if none is found at that namespace.</description>
39
+
<param-name>create</param-name>
40
+
<param-value>true</param-value>
41
+
</context-param>
42
+
<context-param>
43
+
<description>The size of the thread pool used to service SPARQL queries -OR-
44
+
ZERO (0) for an unbounded thread pool.</description>
45
+
<param-name>queryThreadPoolSize</param-name>
46
+
<param-value>16</param-value>
47
+
</context-param>
48
+
<context-param>
49
+
<description>When true, the REST API will not permit mutation operations.</description>
50
+
<param-name>readOnly</param-name>
51
+
<param-value>true</param-value>
52
+
</context-param>
53
+
<context-param>
54
+
<description>When non-zero, the timeout for queries (milliseconds).</description>
55
+
<param-name>queryTimeout</param-name>
56
+
<param-value>0</param-value>
57
+
</context-param>
58
+
<context-param>
59
+
<description>When non-zero, the timeout for the warmup period (milliseconds). The warmup period pulls in the non-leaf index pages and reduces the impact of sudden heavy query workloads on the disk and on GC. The end points are not available during the warmup period.</description>
60
+
<param-name>warmupTimeout</param-name>
61
+
<param-value>0</param-value>
62
+
</context-param>
63
+
<context-param>
64
+
<description>A list of the namespaces to be exercised during the warmup period (optional). When the list is empty, all namespaces will be warmed up.</description>
65
+
<param-name>warmupNamespaceList</param-name>
66
+
<param-value></param-value>
67
+
</context-param>
68
+
<context-param>
69
+
<description>The number of parallel threads to use for the warmup period. At most one thread will be used per index.</description>
70
+
<param-name>warmupThreadPoolSize</param-name>
71
+
<param-value>20</param-value>
72
+
</context-param>
73
+
<!-- <context-param>
74
+
<description>List of allowed services.</description>
0 commit comments