Dear Colleagues,

I am starting Jena Fuseki with the command:

./fuseki-server --config jena-text-config.ttl

where the configuration file contains these main parameters:

<#service_text_tdb> rdf:type fuseki:Service ;
    rdfs:label                      "TDB/text service" ;
    fuseki:name                     "ds" ;
    fuseki:serviceQuery             "query" ;
    fuseki:serviceQuery             "sparql" ;
    fuseki:serviceUpdate            "update" ;
    fuseki:serviceUpload            "upload" ;
    fuseki:serviceReadGraphStore    "get" ;
    fuseki:serviceReadWriteGraphStore    "data" ;
    fuseki:dataset                  <#text_dataset> ;
    .

<#text_dataset> rdf:type     text:TextDataset ;
    text:dataset   <#dataset> ;
    ##text:index   <#indexSolr> ;
    text:index     <#indexLucene> ;
    .

<#dataset> rdf:type      tdb:DatasetTDB ;
    tdb:location "/var/www/skosmos/jena-fuseki1-1.3.0/tdb" ;
    tdb:unionDefaultGraph true ;
    # Query timeout on this dataset (10 minutes = 600000 milliseconds)
    ja:context [ ja:cxtName "arq:queryTimeout" ;  ja:cxtValue "600000" ] ;
    .

<#indexSolr> a text:TextIndexSolr ;
    #text:server <http://localhost:8983/solr/COLLECTION> ;
    text:server <embedded:SolrARQ> ;
    text:entityMap <#entMap> ;
    .

<#indexLucene> a text:TextIndexLucene ;
    text:directory <file:/var/www/skosmos/jena-fuseki1-1.3.0/lucene> ;
    ##text:directory "mem" ;
    text:entityMap <#entMap> ;
    .

I am interested in if I can start Fuseki in TDB without allowing making any changes (e.g. uploading unwanted files) or updates in TDB from the frontend of Fuseki.

Something like this:

fuseki:serviceUpdate "none" ;

Thanks in advance,
Sandor

--
Dr. Sandor Kopacsi
IT Software Designer

Vienna University Computer Center
Universitätsstraße 7 (NIG)
A-1010 Vienna

Reply via email to