Re: [MASSMAIL]Re: Splitting data into graphs vs datasets

2018-03-22 Thread DAVID MOLINA ESTRADA
In my opinion, a graph is like a schema in relational database, and a dataset is like a database instance. Regards, David -Daan Reid escribió: - Para: users@jena.apache.org De: Daan Reid Fecha: 22/03/2018 11:35 Asunto: [MASSMAIL]Re: Splitting data into graphs vs datasets I would say

Re: Splitting data into graphs vs datasets

2018-03-22 Thread Daan Reid
I would say that using separate datasets is a good idea if you have sets of graphs that just don't belong together. The dataset as an organisational, abstract container is an excellent idea, in my opinion. Regards, Daan On 22-03-18 11:22, Mikael Pesonen wrote: Ok seems that using many dataset

Re: Splitting data into graphs vs datasets

2018-03-22 Thread Mikael Pesonen
Ok seems that using many datasets is not a good idea. I had no bias and not having any issues with speed, just wanted to see what is best way to go. On 21.3.2018 20:48, ajs6f wrote: Those sure are good reasons for using named graphs. But what about using different datasets too? Consider t

Re: Splitting data into graphs vs datasets

2018-03-21 Thread ajs6f
> Those sure are good reasons for using named graphs. But what about using > different datasets too? Consider that you may not be seeing such reasons because it may not actually be as good an idea. Here's another reason to prefer graphs: There is a standard management HTTP API for named graph

Re: Splitting data into graphs vs datasets

2018-03-21 Thread Andy Seaborne
On 21/03/18 11:03, Mikael Pesonen wrote: Is this example from web page (a bit modified) Is it what? To have several datasets: <#service1> rdf:type fuseki:Service ; fuseki:name "ds1" fuseki:dataset<#dataset1> . <#service1> rdf:type fuseki:Service ;

Re: Splitting data into graphs vs datasets

2018-03-21 Thread Mikael Pesonen
Is this example from web page (a bit modified) config_ds1.ttl: @prefix fuseki: . @prefix rdf: . @prefix rdfs: . @prefix tdb:

Re: Splitting data into graphs vs datasets

2018-03-21 Thread Rob Vesse
You can run many datasets by using the --config argument and specifying an appropriate configuration file. This should be used instead of the --loc argument which is a convenience short cut to run a server with a single dataset. http://jena.apache.org/documentation/fuseki2/fuseki-configuratio

Re: Splitting data into graphs vs datasets

2018-03-21 Thread Mikael Pesonen
Those sure are good reasons for using named graphs. But what about using different datasets too? btw, I couldn't find info on how to run many datasets with Fuseki. is it just one dataset per fuseki process? -loc parameter for fuseki-server.jar? Br On 20.3.2018 14:22, Martynas Jusevičius wr

Re: Splitting data into graphs vs datasets

2018-03-20 Thread Martynas Jusevičius
Provenance. With named graphs, it's easier to track where data came from: who imported it, when etc. You can also have meta-graphs about other graphs. Also editing and updating data. You can load named graph contents (of smallish size) in an editor, make changes and then store a new version in the

Splitting data into graphs vs datasets

2018-03-20 Thread Mikael Pesonen
Hi, I'm using Fuseki GSP, and so far have put all data into one default dataset and using graphs to split it. If I'm right there would be benefits using more than one dataset - better performance - each query is done inside a dataset so less data = faster query - protection of data - can't