-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #26 from Ontotext-AD/GDB-6294-Update-Config-To-Gra…
…phDB-Repo GDB-6294 Update worker config to GraphDB Repository config
- Loading branch information
Showing
6 changed files
with
58 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
# | ||
# RDF4J configuration template for a GraphDB EE worker repository | ||
# | ||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>. | ||
@prefix rep: <http://www.openrdf.org/config/repository#>. | ||
@prefix sr: <http://www.openrdf.org/config/repository/sail#>. | ||
@prefix sail: <http://www.openrdf.org/config/sail#>. | ||
@prefix graphdb: <http://www.ontotext.com/config/graphdb#>. | ||
@prefix shacl: <http://rdf4j.org/config/sail/shacl#>. | ||
|
||
[] a rep:Repository ; | ||
rep:repositoryID "default" ; | ||
rdfs:label "GraphDB worker for default" ; | ||
rep:repositoryImpl [ | ||
rep:repositoryType "graphdb:SailRepository" ; | ||
sr:sailImpl [ | ||
sail:sailType "rdf4j:ShaclSail"; | ||
shacl:validationEnabled "true" ; | ||
shacl:logValidationPlans "false" ; | ||
shacl:logValidationViolations "false" ; | ||
shacl:parallelValidation "true" ; | ||
shacl:globalLogValidationExecution "false" ; | ||
shacl:cacheSelectNodes "true" ; | ||
shacl:undefinedTargetValidatesAllSubjects "false" ; | ||
shacl:ignoreNoShapesLoadedException "false" ; | ||
shacl:performanceLogging "false" ; | ||
shacl:rdfsSubClassReasoning "true" ; | ||
shacl:shaclAdvancedFeatures "true" ; | ||
shacl:dashDataShapes "true" ; | ||
sail:delegate [ | ||
sail:sailType "graphdb:Sail"; | ||
graphdb:owlim-license "" ; | ||
graphdb:base-URL "http://example.org/owlim#" ; | ||
graphdb:defaultNS "" ; | ||
graphdb:entity-index-size "10000000" ; | ||
graphdb:entity-id-size "32" ; | ||
graphdb:imports "" ; | ||
graphdb:repository-type "file-repository" ; | ||
graphdb:ruleset "rdfsplus-optimized" ; | ||
graphdb:storage-folder "storage" ; | ||
graphdb:enable-context-index "false" ; | ||
graphdb:enablePredicateList "true" ; | ||
graphdb:in-memory-literal-properties "true" ; | ||
graphdb:enable-literal-index "true" ; | ||
graphdb:check-for-inconsistencies "false" ; | ||
graphdb:disable-sameAs "true" ; | ||
graphdb:query-timeout "0" ; | ||
graphdb:query-limit-results "0" ; | ||
graphdb:throw-QueryEvaluationException-on-timeout "false" ; | ||
graphdb:read-only "false" ; | ||
graphdb: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" ; | ||
] | ||
] | ||
]. |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters