All Projects â†’ AKSW â†’ QuitStore

AKSW / QuitStore

Licence: other
🖧 Quads in Git - Distributed Version Control for RDF Knowledge Bases

Programming Languages

python
139335 projects - #7 most used programming language
HTML
75241 projects
CSS
56736 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to QuitStore

sparklis
Sparklis is a query builder in natural language that allows people to explore and query SPARQL endpoints with all the power of SPARQL and without any knowledge of SPARQL.
Stars: ✭ 28 (-67.82%)
Mutual labels:  sparql, rdf, sparql-endpoints
Squot
Squeak Object Tracker - Version control for arbitrary objects, currently with Git storage
Stars: ✭ 45 (-48.28%)
Mutual labels:  version-control, versioning, version-control-system
corese
Software platform implementing and extending the standards of the Semantic Web.
Stars: ✭ 55 (-36.78%)
Mutual labels:  sparql, rdf, sparql-endpoints
SolRDF
An RDF plugin for Solr
Stars: ✭ 115 (+32.18%)
Mutual labels:  sparql, rdf, sparql-endpoints
sparql-proxy
SPARQL-proxy: provides cache, job control, and logging for any SPARQL endpoint
Stars: ✭ 26 (-70.11%)
Mutual labels:  sparql, rdf, sparql-endpoints
semagrow
A SPARQL query federator of heterogeneous data sources
Stars: ✭ 27 (-68.97%)
Mutual labels:  sparql, rdf, sparql-endpoints
SEPA
Get notifications about changes in your SPARQL endpoint.
Stars: ✭ 21 (-75.86%)
Mutual labels:  sparql, rdf, sparql-endpoints
breezy
A Distributed Version Control System with a Friendly UI
Stars: ✭ 76 (-12.64%)
Mutual labels:  version-control, version-control-system
versionaire
Provides an immutable, thread-safe, and semantic version type.
Stars: ✭ 71 (-18.39%)
Mutual labels:  version-control, versioning
clearml-server-helm
ClearML Server for Kubernetes Clusters Using Helm
Stars: ✭ 18 (-79.31%)
Mutual labels:  version-control, versioning
tag
Git utility to create tags in order to identify specific releases
Stars: ✭ 24 (-72.41%)
Mutual labels:  version-control, versioning
snowfs
SnowFS - a fast, scalable version control file storage for graphic files 🎨
Stars: ✭ 1,101 (+1165.52%)
Mutual labels:  version-control, version-control-system
gtbump
git tag bump: A simple utility to bump and manage git semantic version tags and generate Markdown changelogs.
Stars: ✭ 15 (-82.76%)
Mutual labels:  version-control, versioning
OLGA
an Ontology SDK
Stars: ✭ 36 (-58.62%)
Mutual labels:  sparql, rdf
python-aos-lesson
Python for Atmosphere and Ocean Scientists
Stars: ✭ 78 (-10.34%)
Mutual labels:  version-control, versioning
speckle-unity
AEC Interoperability for Unity through Speckle
Stars: ✭ 28 (-67.82%)
Mutual labels:  version-control, versioning
AutoVer
Configurable automatic or real time backup and personal versioning system
Stars: ✭ 65 (-25.29%)
Mutual labels:  version-control, versioning
Rdf4j
Eclipse RDF4J: scalable RDF for Java
Stars: ✭ 242 (+178.16%)
Mutual labels:  sparql, rdf
Git
Useful Git commands.
Stars: ✭ 109 (+25.29%)
Mutual labels:  version-control, versioning
Json Git
A pure JS local Git to versionize any JSON
Stars: ✭ 109 (+25.29%)
Mutual labels:  version-control, versioning

The QuitStore Logo: A glass of quinch jam (German: Quittenmarmelade) with the Git logo on the lid. 'Graph jam in a git glass'

Quit Store

Build status of master branch:

Build Status Coverage Status

The Quit Store (stands for Quads in Git) provides a workspace for distributed collaborative Linked Data knowledge engineering. You are able to read and write RDF Datasets (aka. multiple Named Graphs) through a standard SPARQL 1.1 Query and Update interface. To collaborate you can create multiple branches of the Dataset and share your repository with your collaborators as you know it from Git.

If you want to read more about the Quit Store we can recommend our paper:

Decentralized Collaborative Knowledge Management using Git by Natanael Arndt, Patrick Naumann, Norman Radtke, Michael Martin, and Edgard Marx in Journal of Web Semantics, 2018 [@sciencedirect] [@arXiv]

Getting Started

To get the Quit Store you have three options:

Installation from Source

Install poetry.

Get the Quit Store source code:

$ git clone https://github.com/AKSW/QuitStore.git
$ cd QuitStore

If you are using virtualenvwrapper:

$ poetry install
$ poetry run quitstore --help

Git configuration

Configure your name and email for Git. This information will be stored in each commit you are creating with Git and the Quit Store on your system. It is relevant so people know which contribution is coming from whom. Execute the following command if you haven't done that before.

$ git config --global user.name "Your Name"
$ git config --global user.email "[email protected]"

Start with Existing Data (Optional)

If you already have data which you want to use in the quit store follow these steps:

  1. Create a repository which will contain your RDF data.
$ git init /path/to/repo
  1. Put your RDF data formatted as N-Triples and sorted (e.g. using cat data-in.nt | LC_ALL=C sort -u > data-out.nt) into files like <graph>.nt into this directory.
  2. For each <graph>.nt file create a corresponding <graph>.nt.graph file which must contain the IRI for the respective graph. (These .graph files are also used by the Virtuoso bulk loading process).
  3. Add the data to the repository and create a commit.
$ git add …
$ git commit -m "init repository"

To ingest further versions of your data into the Quit Store you can add further commits by going through steps 2.-4.. Alternatively you are also able to execute SPARQL 1.1. Update operations to create new versions on the Quit Store.

Start the Quit Store

If you are using the binary:

$ chmod +x quit #
$ ./quit -t /path/to/repo

If you have it installed from the sources:

$ poetry run quitstore -t /path/to/repo

Open your browser and go to http://localhost:5000/.

Have a lot of fun!

For more command line options check out the section Command Line Options in the README.

Command Line Options

-b, --basepath

Specify a base path/application root. This will work with WSGI and docker only.

-t, --targetdir

Specify a target directory where the repository can be found or will be cloned (if remote is given) to.

-r, -repourl

Specify a link/URL to a remote repository.

-c, --configfile

Specify a path to a configuration file. (Defaults to ./config.ttl)

-nv, --disableversioning

Run Quit-Store without versioning activated

-f, --features

This option enables additional features of the store:

  • provenance - Enable browsing interfaces for provenance information.
  • persistance - Store all internal data as RDF graph.
  • garbagecollection - Enable garbage collection. With this feature enabled, git will check for garbage collection after each commit. This may slow down response time but will keep the repository size small.

-v, --verbose and -vv, --verboseverbose

Set the log level for the standard output to verbose (INFO) respective extra verbose (DEBUG).

-l, --logfile

Write the log output to the given path. The path is interpreted relative to the current working directory. The log level for the logfile is always extra verbose (DEBUG).

Configuration File

deprecated (we plan to remove the configuration file feature)

If you want to work with configuration files you can create a config.ttl file. This configuration file consists of two parts, the store configuration and the graph configuration. The store configuration manages everything related to initializing the software, the graph configuration maps graph files to their graph IRIs. The graph configuration in the config.ttl is an alternative to using <graph>.nt.graph files next to the graphs. Make sure you put the correct path to your git repository ("../store") and the IRI of your graph (<http://example.org/>) and name of the file holding this graph ("example.nt").

conf:store a <YourQuitStore> ;
    <pathOfGitRepo> "../store" ; # Set the path to the repository that contains the files .
    <origin> "git:github.com/your/repository.git" . # Optional a git repo that will be cloned into dir given in line above on startup.


conf:example a <Graph> ; # Define a Graph resource for a named graph
    <graphUri> <http://example.org/> ; # Set the IRI of named graph
    <isVersioned> 1 ; # Defaults to True, future work
    <graphFile> "example.nt" . # Set the filename

API

The Quit-Store comes with three kinds of interfaces, a SPARQL update and query interface, a provenance interface, and a Git management interface.

SPARQL Update and Query Interface

The SPARQL interface support update and select queries and is meant to adhere to the SPARQL 1.1 Protocol. You can find the interface to query the current HEAD of your repository under http://your-quit-host/sparql. To access any branch or commit on the repository you can query the endpoints under http://your-quit-host/sparql/<branchname> resp. http://your-quit-host/sparql/<commitid>. Since the software is still under development there might be some missing features or strange behavior. If you are sure that the store does not follow the W3C recommendation please file an issue.

Examples

Execute a select query with curl

curl -d "select ?s ?p ?o ?g where { graph ?g { ?s ?p ?o} }" -H "Content-Type: application/sparql-query" http://your-quit-host/sparql
curl -d "select ?s ?p ?o ?g where { graph ?g { ?s ?p ?o} }" -H "Content-Type: application/sparql-query" http://your-quit-host/sparql/develop

If you are interested in a specific result mime type you can use the content negotiation feature of the interface:

curl -d "select ?s ?p ?o ?g where { graph ?g { ?s ?p ?o} }" -H "Content-Type: application/sparql-query" -H "Accept: application/sparql-results+json" http://your-quit-host/sparql

Execute an update query with curl

curl -d "insert data { graph <http://example.org/> { <urn:a> <urn:b> <urn:c> } }" -H "Content-Type: application/sparql-update"  http://your-quit-host/sparql

Provenance Interface

To use the provenance browsing feature you have to enable it with the argument --feature=provenance. The provenance browsing feature extracts provenance meta data for the revisions and makes it available through a SPARQL endpoint and the blame interface. The provenance interface is available under the following two URLs:

  • http://your-quit-host/provenance which is a SPARQL query interface (see above) to query the provenance graph
  • http://your-quit-host/blame to get a git blame like output per statement in the store

Git Management Interface

The git management interface allows access to some operations of quit in conjunction with the underlying git repository. You can access them with your browser at the following paths.

  • /commits: See commits, messages, committer, and date of commits.
  • /branch, /merge: allows to manage branches and merge branches with different strategies.
  • /pull, /fetch, /push work similar to the respective git commands. (These operations will only works if you have configured remotes on the repository.)

Docker

We provide a Docker image for the Quit Store on the public docker hub as well as on the github docker registry. The image exposes port 8080 by default. The default user within the image is the user quit with the user id 1000. For this user a git configuration with user.name QuitStore and user.email [email protected] is preset. Without any further configuration, a git repository is initialized within the container in the /data directory (owned by the default user quit).

To store the data on the host a local directory or volume is required to store the git repository. An host directory or volume can be linked to the directory /data. Make sure the quit process running with the user id 1000 within the docker container has write access to this directory.

Alternatively the user id within the container can be set using the docker run --user $UID … option. In this case you have to make sure a user.name a user.email is configure using git config within the repository (.git/config) or a git config file is mounted to /.gitconfig (to /usr/src/app/.gitconfig if you are running it with user id 1000).

Example setup with the default user:

mkdir /store/repo
sudo chown 1000 /store/repo
sudo chmod u+w /store/repo

To run the image execute the following command (maybe you have to replace docker with sudo docker):

docker run -it --name containername -p 8080:8080 -v /store/repo:/data aksw/quitstore

The following example will start the quit store in the background in the detached mode.

docker run -d --name containername -p 8080:8080 -v /store/repo:/data aksw/quitstore

Now you should be able to access the quit web interface under http://localhost:8080 and the SPARQL 1.1 interface under http://localhost:8080/sparql.

The default configuration is located in /etc/quit/config.ttl, which can also be overwritten using a respective volume or by setting the QUIT_CONFIGFILE environment variable.

Further options which can be set are:

  • QUIT_TARGETDIR - the target repository directory on which quit should run
  • QUIT_CONFIGFILE - the path to the config.ttl (default: /etc/quit/config.ttl)
  • QUIT_LOGFILE - the path where quit should create its logfile
  • QUIT_BASEPATH - the HTTP base path where quit will be served
  • QUIT_OAUTH_CLIENT_ID - the GitHub OAuth client id (for OAuth see also the github docu)
  • QUIT_OAUTH_SECRET - the GitHub OAuth secret

Run the Tests

You need to have the quitstore installed from source, see section Installation from Source.

poetry run pytest

Troubleshooting

Use on Windows with restricted permissions

On Windows you might not be able to download the .exe file directly. If so, use the curl command in the power shell.

When you start the QuitStore (e.g. with quit.exe -t .) it will try to open a port that is available from outside, which will require permission by the administrator user. To open the port only locally you should start the QuitStore with:

quit.exe -t . -h localhost

The default port is 5000 (http://localhost:5000/).

Migrate from old Versions

Update to 2018-11-20 from 2018-10-29 and older

If you are migrating from an NQuads based repository, as used in older versions of the QuitStore (release 2018-10-29 and older), to an NTriples based repository (release 2018-11-20 and newer) you can use teh following commands to migrate the graphs. You should know that it is possible to have multiple graphs in one NQuads file, which is not possible for NTriples files. Thus, you should make sure to have only one graph per file. You may execute the steps for each NQuads file and replace graphfile.nq according to your filenames.

sed "s/<[^<>]*> .$/./g" graphfile.nq | LC_ALL=C sort -u > graphfile.nt
mv graphfile.nq.graph graphfile.nt.graph
git rm graphfile.nq
git add graphfile.nq.graph graphfile.nt graphfile.nt.graph
git commit -m "Migrate from nq to nt"

License

Copyright (C) 2017-2022 Norman Radtke http://aksw.org/NormanRadtke, Natanael Arndt http://aksw.org/NatanaelArndt, and contributors

This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program; if not, see http://www.gnu.org/licenses. Please see LICENSE for further information.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].