Linked Data Fragments Server

This is a Java implementation of the Linked Data Fragments Server based on Jena.

License

License

Categories

Categories

Data
GroupId

GroupId

org.linkeddatafragments
ArtifactId

ArtifactId

ldfserver
Last Version

Last Version

0.1.1
Release Date

Release Date

Type

Type

war
Description

Description

Linked Data Fragments Server
This is a Java implementation of the Linked Data Fragments Server based on Jena.
Project URL

Project URL

http://linkeddatafragments.org
Source Code Management

Source Code Management

https://github.com/LinkedDataFragments/Server.Java

Download ldfserver

How to add to project

<!-- https://jarcasting.com/artifacts/org.linkeddatafragments/ldfserver/ -->
<dependency>
    <groupId>org.linkeddatafragments</groupId>
    <artifactId>ldfserver</artifactId>
    <version>0.1.1</version>
    <type>war</type>
</dependency>
// https://jarcasting.com/artifacts/org.linkeddatafragments/ldfserver/
implementation 'org.linkeddatafragments:ldfserver:0.1.1'
// https://jarcasting.com/artifacts/org.linkeddatafragments/ldfserver/
implementation ("org.linkeddatafragments:ldfserver:0.1.1")
'org.linkeddatafragments:ldfserver:war:0.1.1'
<dependency org="org.linkeddatafragments" name="ldfserver" rev="0.1.1">
  <artifact name="ldfserver" type="war" />
</dependency>
@Grapes(
@Grab(group='org.linkeddatafragments', module='ldfserver', version='0.1.1')
)
libraryDependencies += "org.linkeddatafragments" % "ldfserver" % "0.1.1"
[org.linkeddatafragments/ldfserver "0.1.1"]

Dependencies

compile (13)

Group / Artifact Type Version
org.rdfhdt : hdt-jena jar 1.1
org.apache.jena : jena-core jar 2.13.0
org.apache.jena : jena-arq jar 2.13.0
org.apache.httpcomponents : httpclient jar 4.3.5
com.google.code.gson : gson jar 2.5
javax.servlet : javax.servlet-api jar 3.1.0
org.eclipse.jetty : jetty-server jar 9.3.6.v20151106
org.eclipse.jetty : jetty-servlet jar 9.3.6.v20151106
commons-cli : commons-cli jar 1.3.1
org.apache.commons : commons-lang3 jar 3.3.2
commons-lang : commons-lang jar 2.6
org.apache.jena : jena-tdb jar 1.1.2
org.freemarker : freemarker jar 2.3.23

Project Modules

There are no modules declared in this project.

Linked Data Fragments Server

Build Status Coverage Status npm version DOI

This repository contains modules for Linked Data Fragments (LDF) servers.

Find more information about migrating from ldf-server 2.x.x on our wiki.

Motivation

On today's Web, Linked Data is published in different ways, which include data dumps, subject pages, and results of SPARQL queries. We call each such part a Linked Data Fragment.

The issue with the current Linked Data Fragments is that they are either so powerful that their servers suffer from low availability rates (as is the case with SPARQL), or either don't allow efficient querying.

Instead, this server offers Quad Pattern Fragments (a.k.a. Triple Pattern Fragments). Each Quad Pattern Fragment offers:

  • data that corresponds to a quad/triple pattern (example).
  • metadata that consists of the (approximate) total triple count (example).
  • controls that lead to all other fragments of the same dataset (example).

An example server is available at data.linkeddatafragments.org.

Quick Start

The easiest way to start using this server is via @ldf/server. (previously known as ldf-server)

Install the server

This server requires Node.js 10.0 or higher and is tested on OSX and Linux. To install, execute:

$ [sudo] npm install -g @ldf/server

Configure the data sources

First, create a configuration file config.json similar to config/config-example.json, in which you detail your data sources. For example, this configuration uses an HDT file and a SPARQL endpoint as sources:

{
  "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@ldf/server/^3.0.0/components/context.jsonld",
  "@id": "urn:ldf-server:my",
  "import": "preset-qpf:config-defaults.json",

  "title": "My Linked Data Fragments server",

  "datasources": [
    {
      "@id": "ex:myHdtDatasource",
      "@type": "HdtDatasource",
      "datasourceTitle": "DBpedia 2014",
      "description": "DBpedia 2014 with an HDT back-end",
      "datasourcePath": "dbpedia",
      "hdtFile": "data/dbpedia2014.hdt"
    },
    {
      "@id": "ex:mySparqlDatasource",
      "@type": "SparqlDatasource",
      "datasourceTitle": "DBpedia (Virtuoso)",
      "description": "DBpedia with a Virtuoso back-end",
      "datasourcePath": "dbpedia-sparql",
      "sparqlEndpoint": "https://dbpedia.org/sparql"
    }
  ]
}

More details on how to configure this server can be found in the README of @ldf/server.

Start the server

After creating a configuration file, execute

$ ldf-server config.json 5000 4

Here, 5000 is the HTTP port on which the server will listen, and 4 the number of worker processes.

Now visit http://localhost:5000/ in your browser.

Configure your own server

This repository should be used by LDF Server module developers as it contains multiple LDF Server modules that can be composed. We manage this repository as a monorepo using Lerna.

The following modules are available:

These modules can be used to configure your own LDF server with the features you want. As an example on how to make such a server, you can have a look at @ldf/server, which is a default server configuration that has all possible features enabled.

Development Setup

If you want to develop new features or use the (potentially unstable) in-development version, you can set up a development environment for this server.

LDF Server requires Node.JS 10.0 or higher and the Yarn package manager. LDF Server is tested on OSX, Linux and Windows.

This project can be setup by cloning and installing it as follows:

$ git clone https://github.com/LinkedDataFragments/Server.js.git
$ cd Server.js
$ yarn install

Note: npm install is not supported at the moment, as this project makes use of Yarn's workspaces functionality

This will install the dependencies of all modules, and bootstrap the Lerna monorepo. After that, all LDF Server packages are available in the packages/ folder and can be used in a development environment.

Furthermore, this will add pre-commit hooks to build, lint and test. These hooks can temporarily be disabled at your own risk by adding the -n flag to the commit command.

License

The Linked Data Fragments server is written by Ruben Verborgh, Miel Vander Sande, Ruben Taelman and colleagues.

This code is copyrighted by Ghent University – imec and released under the MIT license.

org.linkeddatafragments

Linked Data Fragments

Versions

Version
0.1.1
0.1.0