Skip to content
This repository was archived by the owner on Jan 28, 2025. It is now read-only.

DQP Distributed Query Process

Erwan Demairy edited this page Mar 8, 2016 · 6 revisions

Introduction

The purpose of this extension if to allow to split a SPARQL request and execute its subparts on various SPARQL endpoints.

Comparison between a local request and a distributed request

Local request

Collection<String> queries = ...;
Graph graph = Graph.create();
QueryProcess exec = QueryProcessDQP.create(graph);
Load ld = Load.create(graph);
ld.load( data_uri );

for (String q : queries) {
  Mappings results = exec.query(q);
}

Clone this wiki locally