TDB2 is incorporated into Fuseki2, both in the full server, with UI, and embeddable Fuseki2 main server.
The TDB2 database can be in a configuration file,
either a complete server configuration (see below) or as an entry in the
FUSEKI_BASE/configuration/
area of the full server.
The command line start-up for Fuseki (both full and basic versions) uses the
--tdb2
flag to modify the --loc
argument to work with a TDB2 dataset.
Example complete server configuration file for full or basic servers:
The base URL will be of the form http://_host:port_/tdb2-database
.
Note the tdb2:
prefix.
PREFIX : <#>
PREFIX fuseki: <http://jena.apache.org/fuseki#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
# tdb2 in this line, below.
PREFIX tdb2: <http://jena.apache.org/2016/tdb#>
PREFIX ja: <http://jena.hpl.hp.com/2005/11/Assembler#>
[] rdf:type fuseki:Server ;
fuseki:services (
<#service_tdb2>
) .
<#service_tdb2> rdf:type fuseki:Service ;
rdfs:label "TDB2 Service (RW)" ;
fuseki:name "tdb2-database" ;
fuseki:serviceQuery "query" ;
fuseki:serviceQuery "sparql" ;
fuseki:serviceUpdate "update" ;
fuseki:serviceReadWriteGraphStore "data" ;
# A separate read-only graph store endpoint:
fuseki:serviceReadGraphStore "get" ;
fuseki:dataset <#tdb_dataset_readwrite> ;
.
<#tdb_dataset_readwrite> rdf:type <b>tdb2:DatasetTDB2</b> ;
<b>tdb2:location</b> "TDB2" ;
## This is supported: tdb2:unionDefaultGraph true ;
.
This example is available in config-tdb2.ttl
The key difference is the declared rdf:type
of the dataset.
Note that the Fuseki UI does not provide a way to create TDB2 databases; a configuration file must be used. Once setup, upload, query and graph editing will be routed to the TDB2 database.
For a service configuration in FUSEKI_BASE/configuration/
:
PREFIX : <#>
PREFIX fuseki: <http://jena.apache.org/fuseki#>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX tdb2: <http://jena.apache.org/2016/tdb#>
PREFIX ja: <http://jena.hpl.hp.com/2005/11/Assembler#>
<#service_tdb2> rdf:type fuseki:Service ;
rdfs:label "TDB2 Service (RW)" ;
fuseki:name "tdb2-database" ;
fuseki:serviceQuery "query" ;
fuseki:serviceQuery "sparql" ;
fuseki:serviceUpdate "update" ;
fuseki:serviceReadWriteGraphStore "data" ;
# A separate read-only graph store endpoint:
fuseki:serviceReadGraphStore "get" ;
fuseki:dataset <#tdb_dataset_readwrite> ;
.
<#tdb_dataset_readwrite> rdf:type <b>tdb2:DatasetTDB2</b> ;
<b>tdb2:location</b> "TDB2" ;
## tdb2:unionDefaultGraph true ;
.