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
0
votes
1 answer

How to unload data from Jena Fuseki server

I am loading data to a named graph in fuseki server using the following command . How to remove the particular graph from jena fuseki server.Is there any simple commands similarly. '/home/user/jena-fuseki-1.1.1/./s-put…
lost Coder
  • 577
  • 2
  • 8
  • 34
0
votes
2 answers

URL to upload an RDF file in Fuseki2

Fuseki2 provides an HTTP service to upload file into a dataset - by default when creating a dataset in the admin web interface this is /ds/upload. What is the exact protocol/parameters to use to upload an RDF/XML file at this URL ? concrete exemple…
ThomasFrancart
  • 470
  • 3
  • 13
0
votes
1 answer

Jena Fuseki server in EC2 instance

I installed Jena Fuseki Server in my EC2 instance. Its working good. When i am trying to add the dataset, it doesn't show the option to add dataset. What is the issue with dataset location?
Subbu VidyaSekar
  • 2,503
  • 3
  • 21
  • 39
0
votes
1 answer

Apache Jena full-text search (with external content)

I would like to configure something like this: RDF dataset of metadata about books; Books placed separately like XHTML files, paragraphs with unique IDs; Every book’s metadata includes something like dc:source link to the file (absolute? like a…
Honza Hejzl
  • 874
  • 8
  • 23
0
votes
1 answer

How to concurrently load multiple ttl files as separate instances in jena-fuseki server

I am using apache jena fuseki server to load the data in a .ttl format and then querying the data.But the problem is i am not able to serve multiple data simultaneously. I am starting the server using the following command. ./fuseki-server --update…
lost Coder
  • 577
  • 2
  • 8
  • 34
0
votes
0 answers

Jena TDB/Fuseki indexing for text search: Customize the URI location for each field

I have triple store of a relatively small size, which I store and access via Jena Fuseki. Here is a snippet of my data, though more optional fields can occur: a pers:family ; pers:name […
user3241376
  • 407
  • 7
  • 20
0
votes
1 answer

Can't get Fuseki2 to work on Ubuntu 14.04 server

Not able to do anything when I visit the server's IP at port 3030, when I start fuseki2 on my localhost it seems to work fine, I'm able to add datasets, modify, etc. but I start it on a Google Compute Engine instance (Ubuntu 14.04) it starts but the…
0
votes
0 answers

Openlink Virtuoso does not apply FILTER using SERVICE clause

I am trying to run the following query both from Virtuoso and Fuseki-server. I use the SERVICE clause to connect to the SPARQL endpoint of D2R. The problem is that while Fuseki correctly applies the FILTER, Virtuoso doesn't do the same and returns…
Francesco
  • 29
  • 4
0
votes
1 answer

Delete query with sparql

I am trying to delete some triples using this query but it gives me following error this line is invalid I don't get what I am doing wrong. Can anyone help me? DELETE DATA{ GRAPH
pbex
  • 33
  • 1
  • 5
0
votes
1 answer

Disable only unauthenticated adding of datasets to Fuseki

I'm trying to set up a SPARQL endpoint for an Organisation as part of a Open source project with Apache Jena Fuseki and will be hosting it on a server publicly soon and i've uploaded the open data into it. While i want users to be able to directly…
0
votes
1 answer

AngularJS route not rendering data

I am trying to implement a very simple angular route. One page only to begin with, will build on once working. Basically, if I directly display the data in the index.html page, it produces the desired result (count of triples) like so: Your data…
Hilary
  • 321
  • 5
  • 15
0
votes
1 answer

Fuseki2 and TriX format

In Fuseki2, is it possible to request TriX XML (rather than RDF/XML) as a response format (for example when submitting a DESCRIBE query)? I've tried setting the Accept header to "application/trix+xml," but still get back "application/rdf+xml."
tat
  • 321
  • 1
  • 19
0
votes
1 answer

How to suppress objectProperty in Fuseki?

I've problem to suppress one objectProperty in graph on my fuseki server. I tried to use many way to delete my objectProperty without results. I tried to use s-delete to suppress: ./s-delete http://localhost:3030/ds 'DELETE {?s…
Cyril
  • 485
  • 4
  • 15
0
votes
2 answers

Query Execution Time in Jena Fuseki

Is there a way to get the query execution time for SPARQL queries running in Jena Fuseki?
GStone
  • 45
  • 4
0
votes
1 answer

copy data from one datastore to another using fuseki

I want to take data from my existing datastore (triples) and upload to another datastore which I created using Fuseki. I have all my classes, properties, instances in this data which I want to keep safe in another datasotre, in case I mess up my…