Questions tagged [fuseki]

Fuseki is a SPARQL server. It provides REST-style SPARQL HTTP Update, SPARQL Query, and SPARQL Update using the SPARQL protocol over HTTP.

Apache Jena Fuseki is a SPARQL server. It can run as a operating system service, as a Java web application (WAR file), and as a standalone server.

It provides the SPARQL 1.1 protocols for query and update as well as the SPARQL Graph Store protocol.

Fuseki is tightly integrated with TDB to provide a robust, transactional persistent storage layer, and incorporates Jena text query and Jena spatial query. It can be used to provide the protocol engine for other RDF query and storage systems.

423 questions
3
votes
1 answer

Difference in performance between using VALUES keyword and using directly the URI in the query?

I have a fairly complex SPARQL query with the structure outlined below, involving multiple graph patterns, UNION and nested FILTER NOT EXISTS. I want the query to remain generic, and I want to be able to inject values for certain variables at…
ThomasFrancart
  • 470
  • 3
  • 13
3
votes
3 answers

Programmaticaly upload dataset to fuseki

I use the jena fuseki 2 docker image to create a fuseki server. And I want to know if there is a way to upload my dataset to fuseki not from the web interface but programmatically, from SPARQL or Python or whatever else. And also, is there a way to…
mee
  • 688
  • 8
  • 18
3
votes
1 answer

how to set Jena Fuseki port when using Fuseki as a Service?

I installed Jena and Fuseki as a service using a ansible role gremid.fuseki. And I'd like to custom listen host and listen port.However, I have no idea. Maybe I should edit $FUSEKI_BASE/config.ttl, its defaut content is [] rdf:type fuseki:Server…
scil
  • 169
  • 10
3
votes
1 answer

How can I add a new dataset to Apache Fuseki using the command line?

I'm following the instructions for this Docker image, which describes how to set up a new containerized RDF triplestore using Apache Fuseki. I think I can automate all the steps in those instructions for my data set using a Dockerfile, but there's…
Jonathan
  • 10,571
  • 13
  • 67
  • 103
3
votes
2 answers

configure fuseki with TDB2 and OWL Reasoner

New to fuseki/jena here. I managed to get fuseki to run with OWLFBRuleReasoner using tdb1 no problem, but can't make it work with tdb2 (http://jena.apache.org/2016/tdb#). I could not find an explicit example of configuration that uses both TDB2 and…
Eric Boisvert
  • 135
  • 3
  • 9
3
votes
1 answer

Building Geospatial Index when working with JENA FUSEKI

I would like to use the nearby geospatial function which is described as supported here through JENA FUSEKI - https://jena.apache.org/documentation/query/spatial-query.html I need to build the geospatial Index for the query to work. The instructions…
Kris
  • 63
  • 7
3
votes
0 answers

Federating multiple Fuseki endpoints - authentication

We are running multiple fuseki servers. We want to run Sparql queries using data from any number of them. That means using the SERVICE key word, no problem. How do we set up authentication in Fuseki server A to access Fuseki server B? Presumably it…
Ribeye
  • 2,137
  • 3
  • 18
  • 25
3
votes
3 answers

DELETE QUERY SPARQL FUSEKI

How can I delete all triples statement for a given uri? My graph contains: PREFIX mo: PREFIX term: PREFIX xsd:
DevJava
  • 41
  • 4
3
votes
1 answer

JavaScript for Apache Jena TripleStore

i've build a TDB-Store with Apache Jena and now i want to use the data from my store to implement some nice visualizations. So after all it's necessary to access my TDB with JavaScript. I guess, there are two possibilities to archieve this: No. 1:…
malwin
  • 652
  • 7
  • 18
3
votes
1 answer

What is the proper universal way of inserting blank nodes using SPARQL

I am writing an application using the Apache Jena framework. With this I am able to do everything (insert, update, select). But i can't wrap my head around how to properly insert blank nodes using an INSERT query. Is there a go-to approach for this…
oole
  • 342
  • 3
  • 13
3
votes
1 answer

Class with custom rule in OWL ontology

I have created an ontology using Protege. Classes - Person Man Woman Properties(Domain / Range) Knows(Person / Person) hasRelationShip(Person / Person) hasParent(Person / Person) hasFather(Person / Man) hasMother(Person /…
Ravi Kumar
  • 993
  • 1
  • 12
  • 37
3
votes
2 answers

Localhost error Fuseki-service Ubuntu

We've installed Fuseki2 as a service at a Ubuntu-server and its works fine: sudo service fuseki status * Fuseki is running with pid: 915 I now can go to http://xyz:30303/manage.html (where xyz it the ip-address of the server) and it shows the…
waanders
  • 8,907
  • 22
  • 70
  • 102
3
votes
2 answers

How to query a named graph in Apache Jena Fuseki server

I am laoding a .ttl file into the Jena Fuseki server and instead of the default graph I am using the named graph . /home/user/jena-fuseki-1.1.1/./s-put http://192.168.1.38:3030/ds/data http://example/test…
lost Coder
  • 577
  • 2
  • 8
  • 34
3
votes
1 answer

Output format in Jena Fuseki server

Given this command: prefix dm: SELECT ?pID WHERE { ?pID dm:hasDName "xxxvvvII" . } The arq engine outputs the following: ------------------- | pID | =================== | dm:C002172 | ------------------- The…
Monalizza
  • 43
  • 5
3
votes
1 answer

Fuseki indexed (Lucene) text search returns no results

I have a very large ontology RDF file (almost 4M instances) that I'm currently streaming via Fuseki v2.0.0. My assembler file looks like this: @prefix : <#> . @prefix rdf: . @prefix rdfs: …
1 2
3
28 29