Hi group, I can't seem to understand the new structure of Fuseki 2.0 configuration.
In the documentation I read: https://jena.apache.org/documentation/fuseki2/fuseki-configuration.html "The directory FUSEKI_BASE/configuration/ with one data service assembler per file (includes endpoint details and the dataset description.) So I understand that as I create a file with the dataset configuration, in my case I did this: -- <#service2> rdf:type fuseki:Service ; fuseki:name "/sbb" ; # http://host:port/da-ro fuseki:serviceQuery "query" ; # SPARQL query service fuseki:serviceReadGraphStore "data" ; # SPARQL Graph store protocol (read only) fuseki:dataset <#dataset> ; <#dataset> rdf:type tdb:DatasetTDB ; tdb:location "sbb" ; # Query timeout on this dataset (1s, 1000 milliseconds) ja:context [ ja:cxtName "arq:queryTimeout" ; ja:cxtValue "1000" ] ; # Make the default graph be the union of all named graphs. ## tdb:unionDefaultGraph true ; -- where the tdb for "sbb" is in run/databases I called this file sbb.ttl, when I now start fuseki-server without arguments I get: ERROR Exception in initialization: Not found: sbb.ttl When I create a full config file like in Fuseki 1.x I don't see the dataset at all, even though it says in startup that it loads it. Config looks like this: http://pastebin.com/mZVKBp76 And it's loaded with the --config=config.ttl option In the admin-interface there is no "sbb" dataset visible. Any hints on what I'm doing wrong? regards Adrian
