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
4
votes
0 answers

JAVA Apache Jena Fuseki: Create Endpoint via API, Retrieve all endpoints via API

i have two questions related to Apache Jena Fuseki. The first one is: I need to create an endpoint using the API (from java code, not from Fuseki UI). For "endpoint" i mean the dataset that fuseki allow to create using the UI, from…
4
votes
2 answers

query a fuseki server using python (or something)

I'm trying to issue a complicated query against a fuseki server that I'm running locally through a browser but it keeps crashing- is it possible to do it through a python script? If so- how?
smatthewenglish
  • 2,831
  • 4
  • 36
  • 72
4
votes
2 answers

Access and Delete Dead Jobs in Sidekiq

I'm running Sidekiq inside a Docker container in production and don't have access to the web UI. Sidekiq workers appear to have failed and I need to check whether they have indeed failed and delete or retry them. Not a hundred percent what I'm…
Alex Lynham
  • 1,318
  • 2
  • 11
  • 29
4
votes
1 answer

Why do we need Fuseki Server?

I am developing an application, which is using triple store (Jena TDB). It is clealy mentioned that TDB Supports SPARQL update and Query. Also, I understood that Fuseki is SPARQL server, that supports Update and Query as well. I do not find answer…
Haroon Lone
  • 2,837
  • 5
  • 29
  • 65
4
votes
1 answer

How to define very simple own rule in fuseki step by step?

I'm asking your help to understand how to create my own property rules in fuseki. I've read the documentation of Jena and Fuseki about reasoners and rules but I don't understand how to create (step by step) simple rules. And the examples that I've…
Cyril
  • 485
  • 4
  • 15
4
votes
2 answers

How to increase query timeout in fuseki 2.0.0

I am running Fuseki server version - 2.0.0 I have created dataset with it's UI manage datasets > add new dataset. ie. i didn't configure it with any ttl configuration file. The problem is when i run a complex query which is going to take longer time…
Ravi Kumar
  • 993
  • 1
  • 12
  • 37
4
votes
1 answer

The DELETE/INSERT operation can be used to remove triples containing blank nodes: how?

I would like to use a SPARQL DELETE/INSERT to ensure that after repeated updates ?performance and certain connected blank nodes do not have multiple property values but only zero (for optional cases) or one (for mandatory cases). If I send the…
Drux
  • 11,992
  • 13
  • 66
  • 116
4
votes
2 answers

How I can use Fuseki with Jena TDB

I have a question for you. I have a triplestore "Jena TDB" and I have read that I can set up a SPARQL endpoint for locally stored RDF data. In particular, I saw that in the literature together with Jena TDB is used Fuseki. I loaded my files rdf in…
Musich87
  • 562
  • 1
  • 12
  • 31
4
votes
1 answer

Fuseki “Can't find jarfile to run”

I am trying set up Fuseki, and I have followed the documentation but am new to Fuseki. I specified the path in the terminal. $ /Users/rumplestilskin/Downloads/jena-fuseki-0.2.7/fuseki-server --update --mem /ds I am getting the error: Can't find…
rumplestilskin
  • 272
  • 2
  • 13
4
votes
2 answers

Jena Fuseki server on Mac Terminal

I am new to Jena Fuseki server, so if I'm doing something silly or posting at the wrong place, please say so kindly! Following the link http://jena.apache.org/documentation/serving_data/index.html, after I downloaded and unzipped it on my Mac, I…
user285372
4
votes
2 answers

Fuseki Error 500: DatasetGraph.delete(Quad)

I have set up a Fuseki endpoint with the hopes of hitting a Jena SDB database (Truly a MySQL database in the backend) with some SPARQL, both select and update/delete queries. SPARQL select queries work just fine, but whenever I try and run an…
Mik Cox
  • 300
  • 2
  • 11
3
votes
1 answer

insert data to Fuseki with sparql query

I am trying to insert new data to Fuseki through SPARQL query, it's giving me success(200 OK) but it's not showing in my TDB. and I think it's because I haven't defined to which graph but I don't know-how String queryString = …
H. H
  • 103
  • 9
3
votes
1 answer

Fuseki configuration

As outlined in http://wiki.bitplan.com/index.php/Apache_Jena#Script_to_start_Fuseki_server I have been avoiding the complexity of Fuseki configuration files and started the server from a script for my usecases in which I only need one…
Wolfgang Fahl
  • 15,016
  • 11
  • 93
  • 186
3
votes
1 answer

Jena Fuseki Vs Virtuoso

I am running same queries on Virtuoso and Jena Fuseki - A query on Virtuoso gave ResultRows=594890 while on Fuseki it gave the error of "page not responding". Also in many other cases, the fuseki could not execute the same queries which were done by…
Khan
  • 95
  • 1
  • 8
3
votes
0 answers

how can i add reasoner to fuseki server?

I am too new to this concept, i don't know how to add the reasoner to my files,query execution is given me a wrong answer for sure and i don't find a good resource to explain how so please help. here is my configuration ttl file @prefix : …
H. H
  • 103
  • 9
1
2
3
28 29