-
Notifications
You must be signed in to change notification settings - Fork 1
/
web.xml
200 lines (199 loc) · 8.71 KB
/
web.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
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
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_1.xsd"
version="3.1">
<display-name>Bigdata</display-name>
<description>Bigdata</description>
<context-param>
<description>The property file (for a standalone database instance) or the
jini configuration file (for a federation). The file MUST end with either
".properties" or ".config". This path is relative to the directory from
which you start the servlet container so you may have to edit it for your
installation, e.g., by specifying an absolution path. Also, it is a good
idea to review the RWStore.properties file as well and specify the location
of the database file on which it will persist your data.
Note: You MAY override this parameter using
"-Dcom.bigdata.rdf.sail.webapp.ConfigParams.propertyFile=FILE"
when starting the servlet container.
</description>
<!-- Note: This path is relative to the directory in which you start -->
<!-- the servlet container or within the classpath as a resource. -->
<!-- For the IDE, this is generally the root -->
<!-- of the bigdata project. For the WAR, it depends where you start -->
<!-- the servlet container. The "ant war" target rewrites this to be -->
<!-- relative to the root of the servlet container by default. -->
<param-name>propertyFile</param-name>
<param-value>RWStore.properties</param-value>
</context-param>
<context-param>
<description>The default bigdata namespace of for the triple or quad store
instance to be exposed.</description>
<param-name>namespace</param-name>
<param-value>kb</param-value>
</context-param>
<context-param>
<description>When true a new triple or quads store instance will be created
if none is found at that namespace.</description>
<param-name>create</param-name>
<param-value>true</param-value>
</context-param>
<context-param>
<description>The size of the thread pool used to service SPARQL queries -OR-
ZERO (0) for an unbounded thread pool.</description>
<param-name>queryThreadPoolSize</param-name>
<param-value>16</param-value>
</context-param>
<context-param>
<description>When true, the REST API will not permit mutation operations.</description>
<param-name>readOnly</param-name>
<param-value>false</param-value>
</context-param>
<context-param>
<description>When non-zero, the timeout for queries (milliseconds).</description>
<param-name>queryTimeout</param-name>
<param-value>0</param-value>
</context-param>
<context-param>
<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>
<param-name>warmupTimeout</param-name>
<param-value>0</param-value>
</context-param>
<context-param>
<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>
<param-name>warmupNamespaceList</param-name>
<param-value></param-value>
</context-param>
<context-param>
<description>The number of parallel threads to use for the warmup period. At most one thread will be used per index.</description>
<param-name>warmupThreadPoolSize</param-name>
<param-value>20</param-value>
</context-param>
<!-- <context-param>
<description>List of allowed services.</description>
<param-name>serviceWhitelist</param-name>
<param-value>http://www.bigdata.com/rdf/search#search,http://www.bigdata.com/rdf#describe</param-value>
</context-param> -->
<context-param>
<description>The name of the class to use for the Blueprints Servlet instance</description>
<param-name>blueprintsServletProvider</param-name>
<param-value>com.bigdata.blueprints.webapp.BlueprintsServlet</param-value>
</context-param>
<listener>
<listener-class>com.bigdata.rdf.sail.webapp.BigdataRDFServletContextListener</listener-class>
</listener>
<servlet>
<servlet-name>REST API</servlet-name>
<display-name>REST API</display-name>
<description>The REST API, including a SPARQL end point, as described at
https://wiki.blazegraph.com/wiki/index.php/NanoSparqlServer
</description>
<servlet-class>com.bigdata.rdf.sail.webapp.RESTServlet</servlet-class>
<load-on-startup>0</load-on-startup>
<async-supported>true</async-supported>
</servlet>
<servlet>
<servlet-name>Multi-Tenancy API</servlet-name>
<display-name>Multi-Tenancy API</display-name>
<description>The REST API for managing multiple KBs in a single Journal
or Federation.
</description>
<servlet-class>com.bigdata.rdf.sail.webapp.MultiTenancyServlet</servlet-class>
<async-supported>true</async-supported>
</servlet>
<servlet>
<servlet-name>DataLoader</servlet-name>
<display-name>DataLoader Servlet</display-name>
<description>Servlet providing DataLoader functionality for bulk loading into
a namespace.</description>
<servlet-class>com.bigdata.rdf.sail.webapp.DataLoaderServlet</servlet-class>
<async-supported>true</async-supported>
</servlet>
<servlet>
<servlet-name>Backup</servlet-name>
<display-name>Backup Servlet</display-name>
<description>Servlet providing a REST API for creating online backups.</description>
<servlet-class>com.bigdata.rdf.sail.webapp.BackupServlet</servlet-class>
<async-supported>true</async-supported>
</servlet>
<servlet>
<servlet-name>Transaction Management API</servlet-name>
<display-name>Transaction Management API</display-name>
<description>The REST API for managing transactions for a Journal.
</description>
<servlet-class>com.bigdata.rdf.sail.webapp.TxServlet</servlet-class>
<async-supported>true</async-supported>
</servlet>
<servlet>
<servlet-name>Status</servlet-name>
<display-name>Status</display-name>
<description>A status page.</description>
<servlet-class>com.bigdata.rdf.sail.webapp.StatusServlet</servlet-class>
<async-supported>true</async-supported>
</servlet>
<servlet>
<servlet-name>Counters</servlet-name>
<display-name>Performance counters</display-name>
<description>Performance counters.</description>
<servlet-class>com.bigdata.rdf.sail.webapp.CountersServlet</servlet-class>
<async-supported>true</async-supported>
</servlet>
<!-- Note: The HALoadBalancerServlet is deployed from override-web.xml -->
<!-- Serve anything under /html/* as a simple file. -->
<servlet-mapping>
<servlet-name>default</servlet-name>
<url-pattern>/html/*</url-pattern>
</servlet-mapping>
<!-- Mapping for the default KB namespace (as configured above). -->
<servlet-mapping>
<servlet-name>REST API</servlet-name>
<url-pattern>/sparql</url-pattern>
</servlet-mapping>
<!-- Mapping for access to non-default KB namespaces.
<servlet-mapping>
<servlet-name>REST API</servlet-name>
<url-pattern>/sparql/*</url-pattern>
</servlet-mapping> -->
<!-- Mappings for the multi-tenancy API. -->
<servlet-mapping>
<servlet-name>Multi-Tenancy API</servlet-name>
<url-pattern>/namespace</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>Multi-Tenancy API</servlet-name>
<url-pattern>/namespace/*</url-pattern>
</servlet-mapping>
<!-- Mappings for the DataLoader Servlet API. -->
<servlet-mapping>
<servlet-name>DataLoader</servlet-name>
<url-pattern>/dataloader</url-pattern>
</servlet-mapping>
<!-- Mappings for the Backup Servlet API. -->
<servlet-mapping>
<servlet-name>Backup</servlet-name>
<url-pattern>/backup</url-pattern>
</servlet-mapping>
<!-- Mappings for the TX API. -->
<servlet-mapping>
<servlet-name>Transaction Management API</servlet-name>
<url-pattern>/tx</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>Transaction Management API</servlet-name>
<url-pattern>/tx/*</url-pattern>
</servlet-mapping>
<!-- Mapping for the status page. -->
<servlet-mapping>
<servlet-name>Status</servlet-name>
<url-pattern>/status</url-pattern>
</servlet-mapping>
<!-- Mapping for the performance counters page. -->
<servlet-mapping>
<servlet-name>Counters</servlet-name>
<url-pattern>/counters</url-pattern>
</servlet-mapping>
<!-- Map the initial request into the UI. -->
<welcome-file-list>
<welcome-file>html/index.html</welcome-file>
</welcome-file-list>
</web-app>