source: gs2-extensions/apache-jena/trunk/src/src3/run-templates--config-tdb-dir@ 34964

Last change on this file since 34964 was 34963, checked in by davidb, 3 years ago

Scripts to allow parallel version of triplestore to run using Apache-Jena v3.x

File size: 1.2 KB
Line 
1# Licensed under the terms of http://www.apache.org/licenses/LICENSE-2.0
2
3@prefix : <#> .
4@prefix fuseki: <http://jena.apache.org/fuseki#> .
5@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
6@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
7@prefix tdb: <http://jena.hpl.hp.com/2008/tdb#> .
8@prefix ja: <http://jena.hpl.hp.com/2005/11/Assembler#> .
9
10## ---------------------------------------------------------------
11## Updatable TDB dataset with all services enabled.
12
13<#service_tdb_all> rdf:type fuseki:Service ;
14 rdfs:label "TDB {NAME}" ;
15 fuseki:name "{NAME}" ;
16 fuseki:serviceQuery "" ;
17 fuseki:serviceQuery "sparql" ;
18 fuseki:serviceQuery "query" ;
19 fuseki:serviceUpdate "" ;
20 fuseki:serviceUpdate "update" ;
21 fuseki:serviceUpload "upload" ;
22 fuseki:serviceReadWriteGraphStore "data" ;
23 fuseki:serviceReadGraphStore "get" ;
24 fuseki:dataset <#tdb_dataset_readwrite> ;
25 .
26
27<#tdb_dataset_readwrite> rdf:type tdb:DatasetTDB ;
28 tdb:location "{DIR}" ;
29 tdb:unionDefaultGraph true ;
30 .
Note: See TracBrowser for help on using the repository browser.