Hi Paul (again)

the swiftowlim does not have support for 'query-timeout' parameter since it uses the standard Sesame query evaluation. Altough you could use the Sesame's way of doing that by supplying a 'timeout' parameter to the HTTP GET requests through which the queries are evaluated at the sparql endpoint . (not entirely sure about the details - just check the sesame docs for it)

about the "ERROR:  ..."
owlim:Sail type is for SE version (BigOWLIM) but you need to change that to swiftowlim:Sail instead for the Lite version (SwiftOwlim).

HTH,
Damyan



On 1/18/2012 11:27 AM, Paul Hermans wrote:
Hi,

I adapted the OWLIM-Lite configuration template by adding:
owlim:query-timeout "10" ;

#
# Sesame configuration template for an OWLIM-Lite 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 owlim: <http://www.ontotext.com/trree/owlim#>.

[] a rep:Repository ;
    rep:repositoryID "{%Repository ID|owlim-lite-test%}" ;
    rdfs:label "{%Repository title|OWLIM-Lite test repository%}" ;
    rep:repositoryImpl [
        rep:repositoryType "openrdf:SailRepository" ;
        sr:sailImpl [
            sail:sailType "owlim:Sail" ;
            owlim:storage-folder "{%Storage folder|storage%}" ;
   owlim:query-timeout "10" ;
            owlim:ruleset "{%Rule-set|owl-horst-optimized%}" ;
            owlim:base-URL "{%Base URL|http://example.org/owlim#%}"; ;
            owlim:repository-type "in-memory-repository" ;
            owlim:entity-index-size "{%Entity index size|200000%}" ;
            owlim:noPersist "{%No Persistence|false%}" ;
            owlim:imports "{%Imported RDF files(';' delimited)%}" ;
owlim:defaultNS "{%Default namespaces for imports(';' delimited)%}" ;
      ]
   ].

Using the sesame console with command 'create owlim-lite.'
I have 2 issues:
- the query-timeout parameter doesn't appear in the list of settings
- at the end I get '
ERROR: Unsupported Sail type: owlim:Sail'







_______________________________________________
OWLIM-discussion mailing list
OWLIM-discussion@ontotext.com
http://ontotext.com/mailman/listinfo/owlim-discussion

_______________________________________________
OWLIM-discussion mailing list
OWLIM-discussion@ontotext.com
http://ontotext.com/mailman/listinfo/owlim-discussion

Reply via email to