-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (48 loc) · 2.66 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
---
layout: home
---
<div class="col-lg-12">
<p>Popular knowledge bases that provide SPARQL endpoints for the web are usually experiencing a high number of requests, which often results in low availability of their interfaces.
A common approach to counter the availability issue is to run a local mirror of the knowledge base.
Running a SPARQL endpoint is currently a complex task which requires a lot of effort and technical support for domain experts who just want to use the SPARQL interface.</p>
<p>With our approach of containerised knowledge base shipping we are introducing a simple to setup methodology for running a local mirror of an RDF knowledge base and SPARQL endpoint with interchangeable exploration components.
The flexibility of the presented approach further helps maintaining the publication infrastructure for dataset projects.</p>
</div>
<div class="col-lg-6">
<h2>Installation</h2>
<p>We assume you have <code>git</code>, <code>python</code> (2.7 or 3.x, with <code>pip</code>) and a <code>docker</code> daemon running.
For further details please check the <a href="/requirements">requirements</a> section.</p>
<pre>
$ git clone https://github.com/Dockerizing/dockerizing-bootstrap
$ cd dockerizing-bootstrap
$ git submodule init && git submodule update
$ sudo pip install -Ur requirements.txt
</pre>
</div>
<div class="col-lg-6">
<h2>Run</h2>
<pre>
$ cd examples/simple/
$ ../../dld.py
$ cd wd-dld
$ docker-compose up
</pre>
<p>See <a href="/bootstrap">How To Use Bootstrap Script</a> for more advanced setup.</p>
</div>
<div class="col-lg-12">
<div class="bs-callout bs-callout-success">
<div style="float: left; padding-right: 20px">
<a class="btn btn-lg btn-success" href="http://localhost:8895/sparql?query=select+*+from+<http%3A%2F%2Fexample.org%2F>+{+%3Fs+%3Fp+%3Fo+}"><span class="icon glyphicon glyphicon-play"></span> Run Query</a>
</div>
<div style="float: left">
<p>
Now your SPARQL endpoint should be available at <a href="http://localhost:8895/sparql">http://localhost:8895/sparql</a>.<br/>
Try to execute a simple query on your new endpoint: <code>select * from <http://example.org/> { ?s ?p ?o }</code>
</p>
</div>
<div style="clear: both"></div>
</div>
</div>
<h2>Publication</h2>
<p><strong>Knowledge Base Shipping to the Linked Open Data Cloud</strong> by Natanael Arndt, Markus Ackermann, Martin Brümmer und Thomas Riechert in <em>11th International Conference on Semantic Systems Proceedings</em> [<a href="http://svn.aksw.org/papers/2015/SEMANTICS_DockerizingLOD/public.pdf">Download</a>, <a href="https://www.bibsonomy.org/bibtex/27c138bccf37b38cc49d21dabacd11b9b/aksw">Bibsonomy</a>]
</p>