From dceff860e4d739006aa309c7b27d12aa149d1d30 Mon Sep 17 00:00:00 2001 From: Tom Wiesing Date: Fri, 9 Sep 2022 17:15:21 +0200 Subject: [PATCH] Add missing 'graphdb-repo.ttl' file This commit removes the missing template 'graphdb-repo.ttl'. --- .../templates/repository/graphdb-repo.ttl | 57 +++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 distillery/resources/templates/repository/graphdb-repo.ttl diff --git a/distillery/resources/templates/repository/graphdb-repo.ttl b/distillery/resources/templates/repository/graphdb-repo.ttl new file mode 100644 index 0000000..88c96ae --- /dev/null +++ b/distillery/resources/templates/repository/graphdb-repo.ttl @@ -0,0 +1,57 @@ +# This file is used to initialize a new GraphDB repository. +# In this file the variables ${GRAPHDB_REPO} and ${INSTANCE_DOMAIN} will be replaced. +# All other variables will be left untouched. + +@prefix rdfs: . +@prefix rep: . +@prefix sr: . +@prefix sail: . +@prefix owlim: . + +[] a rep:Repository ; + rep:repositoryID "${GRAPHDB_REPO}" ; + rdfs:label "${INSTANCE_DOMAIN}" ; + rep:repositoryImpl [ + rep:repositoryType "graphdb:SailRepository" ; + sr:sailImpl [ + sail:sailType "graphdb:Sail" ; + + owlim:owlim-license "" ; + + owlim:base-URL "http://${INSTANCE_DOMAIN}/" ; + owlim:defaultNS "" ; + owlim:entity-index-size "10000000" ; + owlim:entity-id-size "32" ; + owlim:imports "" ; + owlim:repository-type "file-repository" ; + owlim:ruleset "empty" ; + owlim:storage-folder "storage" ; + + owlim:enable-context-index "false" ; + owlim:cache-memory "80m" ; + owlim:tuple-index-memory "80m" ; + + owlim:enablePredicateList "false" ; + owlim:predicate-memory "0%" ; + + owlim:fts-memory "0%" ; + owlim:ftsIndexPolicy "never" ; + owlim:ftsLiteralsOnly "true" ; + + owlim:in-memory-literal-properties "false" ; + owlim:enable-literal-index "true" ; + owlim:index-compression-ratio "-1" ; + + owlim:check-for-inconsistencies "false" ; + owlim:disable-sameAs "false" ; + owlim:enable-optimization "true" ; + owlim:transaction-mode "safe" ; + owlim:transaction-isolation "true" ; + owlim:query-timeout "0" ; + owlim:query-limit-results "0" ; + owlim:throw-QueryEvaluationException-on-timeout "false" ; + owlim:useShutdownHooks "true" ; + owlim:read-only "false" ; + owlim:nonInterpretablePredicates "http://www.w3.org/2000/01/rdf-schema#label;http://www.w3.org/1999/02/22-rdf-syntax-ns#type;http://www.ontotext.com/owlim/ces#gazetteerConfig;http://www.ontotext.com/owlim/ces#metadataConfig" ; + ] + ]. \ No newline at end of file