<!DOCTYPE article PUBLIC "-//NLM//DTD JATS (Z39.96) Journal Archiving and Interchange DTD v1.0 20120330//EN" "JATS-archivearticle1.dtd">
<article xmlns:xlink="http://www.w3.org/1999/xlink">
  <front>
    <journal-meta />
    <article-meta>
      <title-group>
        <article-title>Federated Query Processing: Challenges and Opportunities</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Axel-Cyrille Ngonga Ngomo</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Muhammad Saleem</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Universita ̈t Leipzig, IFI/AKSW</institution>
          ,
          <addr-line>PO 100920, D-04009 Leipzig</addr-line>
        </aff>
      </contrib-group>
      <abstract>
        <p>The increasing numbers and volumes of RDF datasets are accompanied by increasingly complex information needs. Addressing such information needs commonly requires using federated queries, which are executed over several knowledge bases to compute a result set. The aim of this invited paper is to provide an overview of current challenges and opportunities in federated query processing. To this end, we summarize the results of recent state-of-the-art studies. We then derive potential cornerstones for future research in federated query processing.</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1 Introduction</title>
      <p>Listing 1.1: Running example (LD3 from FedBench)
SELECT ? p r e s i d e n t ? p a r t y ? p a g e
WHERE f
? p r e s i d e n t r d f : t y p e d b p e d i a : P r e s i d e n t .
? p r e s i d e n t d b p e d i a : n a t i o n a l i t y d b p e d i a : U n i t e d S t a t e s .
? p r e s i d e n t d b p e d i a : p a r t y ? p a r t y .
? x n y t : t o p i c P a g e ? p a g e .</p>
      <p>? x owl : sameAs ? p r e s i d e n t .
g</p>
      <p>While several types of federated queries exist, we focus on federated SPARQL
queries herein. An example of such a query is shown in Listing 1.1. This query retrieves
the political party and the NYT website of presidents who are nationals of the United
States. The generic architecture of a federated SPARQL query engine is as shown in
Figure 1. The input query q is first sent to a parser/rewriter, which reads and checks the
query for whether it is a valid SPARQL query as well as rewrites it if necessary. The
query is then forwarded to a source selection approach, which determines the subset of
the knowledge bases S1; : : : ; Sn that must be queried to compute the result set of the
input query. This is most commonly carried out by a triple-pattern-wise source selection,
where the sources necessary to retrieve result sets for each triple pattern T1; : : : ; Tm of q
are detected. After the computation and optimization of a query plan, the sources for each
of the triple patterns are queried by means of a federator. The results are subsequently
merged by means of the integrator and the query results are returned. Improving the
performance of federated SPARQL query processing engines is equivalent to improving
the performance of each of these components.</p>
      <p>Result</p>
      <p>Query
Parsing/Rewriting</p>
      <p>Source Selection
Federation/Optimization</p>
      <p>Integration
S1</p>
      <p>S2
: : :</p>
      <p>
        Sn
This section addresses four of the most pressing challenges in the area of federated
SPARQL query processing. We derive these challenges from [
        <xref ref-type="bibr" rid="ref12 ref13">12,13</xref>
        ]. In [
        <xref ref-type="bibr" rid="ref12">12</xref>
        ], we
gathered query logs from SPARQL endpoints on the Web and performed an analysis of their
structure and runtime. The queries from which the insights presented herein were derived
can be found in LSQ’s SPARQL endpoint.1 Our other source, [
        <xref ref-type="bibr" rid="ref13">13</xref>
        ], presents a survey2
and fine-grained evaluation of state-of-the-query federated query processing engines.
2.1
      </p>
      <sec id="sec-1-1">
        <title>Source Selection</title>
        <p>
          Source selection aims to map each of the triple patterns in the input query q to a set of
data sources. Most SPARQL query federation approaches [
          <xref ref-type="bibr" rid="ref11 ref15 ref16 ref19 ref20 ref4 ref5">4,5,11,19,20,16,15</xref>
          ] perform
a triple-pattern-wise source selection (TPWSS). Here, the goal is to identify the set of
relevant (also called capable) sources for each individual triple patterns Tj of a query q,
i.e., the set of sources Si that return a non-empty result set when queried with this triple
pattern. However, it is possible that a relevant source does not contribute to the final result
set of a query. This is because the results from a particular data source can be excluded
after performing joins with the results of other triple patterns contained in the same
query. An overestimation of such sources increases the network traffic, the number of
intermediate results and thus can significantly increase the overall query processing time
[
          <xref ref-type="bibr" rid="ref15">15</xref>
          ]. Join-aware TPWSS strategies have been shown to yield great improvement potential
[
          <xref ref-type="bibr" rid="ref1 ref15">1,15</xref>
          ]. For example, [
          <xref ref-type="bibr" rid="ref15">15</xref>
          ] can reduce the number of sources selection by approximately
47%. Still, there is a gap being between the optimal number of sources to select and the
number of sources selected by current approaches. In particular, join-aware approaches
based on authorities still fail to perform well on datasets where the same authorities are
distributed across a large number of data sources. The development of better approaches
for the characterization of data contained in single knowledge bases would further reduce
both the network traffic and the source selection time.
        </p>
        <p>
          In addition, our survey suggest that desirable features of federation systems are still to
be addressed in literature. While approaches such as [
          <xref ref-type="bibr" rid="ref16">16</xref>
          ] allow approximating the recall
of incomplete query results, source selection approaches dedicated to the computation
of queries with LIMIT (approximately 17% of the queries in real query logs) remains
work in progress. Such approaches could however improve the runtime of federated
query processing further, as they would allow discarding sources that are capable but
unnecessary to compute k results to the query. Similar insights can be derived for other
SPARQL features.
2.2
        </p>
      </sec>
      <sec id="sec-1-2">
        <title>Planning and Optimization</title>
        <p>
          One of the most interesting results of the survey underlying [
          <xref ref-type="bibr" rid="ref13">13</xref>
          ] is that none of the
systems surveyed combined cardinality estimations with join-aware source selection
for planning. Devising an approach for computing more accurate join orderings can
potentially yield improvements of several orders of magnitude on queries with large
intermediate results. In addition, providing optimization of join implementations
depending on the query can also lead to improved runtimes. Furthermore none of the current
systems supports top-k queries according to the same study. However, approximately
        </p>
        <sec id="sec-1-2-1">
          <title>1 http://lsq.aksw.org/sparql</title>
          <p>2 The survey results are at https://goo.gl/bAfJJM.
17% of the queries available in the LSQ dumps use LIMIT. The provision of better
planners that make use of information contained in SPARQL features is hence yet another
opportunity for the development of more efficient federation systems. Static planning
approaches could derive more efficient plans by having to deal with less sources.</p>
          <p>
            An area of research which has been paid little attention to within the setting of
federated queries is dynamic planning [
            <xref ref-type="bibr" rid="ref1">1</xref>
            ]. During the execution of federated queries, the
planner most commonly generates a plan, which is executed as is. Therewith, current
federation engines fail to make use of intermediary information they receive while
executing portions of the queries. For example, receiving small intermediary results
where large intermediary results were expected is a potent hint towards the subsequent
steps of the plan needing readjustment. New results on dynamic planning in other areas
of research such as link discovery [
            <xref ref-type="bibr" rid="ref9">9</xref>
            ] suggest that runtimes can be reduced by more than
80%. Approaches which can update their cost functions and therewith also their query
processing plan should lead to a new generation of SPARQL federation engines.
          </p>
        </sec>
      </sec>
      <sec id="sec-1-3">
        <title>2.3 Integration</title>
        <p>
          The role of the integration module is to gather result sets from the previous step and to
merge these result sets to the final result of the engine. Caching seems to be an obvious
solution to improving the runtime of federated queries. In particular, tailored caching
solutions have been shown to outperform generic caching approaches significantly (see,
e.g., [
          <xref ref-type="bibr" rid="ref10 ref7">7,10</xref>
          ]). However, non of the systems we surveyed rely on caching the intermediate
results when processing federated SPARQL queries. Thus, they were unable to reuse
information on highly recurrent queries. Providing novel caching methods for the
aggregation of results is thus one low-hanging fruit for future research. Another improvement
would be in the development of polymorphic implementation of joins. Being able to
choose the correct join implementation for merging the results gathered from a set of
SPARQL endpoints can potentially lead to further improvements of the overall runtime
of federated queries or even of triple stores.
2.4
        </p>
      </sec>
      <sec id="sec-1-4">
        <title>Benchmarking</title>
        <p>
          The main question that remains after composing a federated system is “how well does
the new approach perform”? A large number of benchmarks for SPARQL have been
devised over the last years [
          <xref ref-type="bibr" rid="ref14 ref17 ref18 ref2 ref3 ref6 ref8">2,3,6,8,17,18,14</xref>
          ]. However, only a few tackle federated query
processing. While LargeRDFBench3 is being used in a growing number of experiments,
the most popular federated benchmark is FedBench [
          <xref ref-type="bibr" rid="ref17">17</xref>
          ]. This benchmark consists of 9
datasets and 25 queries. A deeper look into this benchmark however suggests that the
queries it provised do not reflect real queries as found in query logs. For example, none
of FedBench queries uses ORDER BY, DISTINCT, REGEX or LIMIT. However, these
features are common in real queries. In addition, the average runtime of these queries
(approx. 2 s for [
          <xref ref-type="bibr" rid="ref15">15</xref>
          ]) makes the evaluation of the significance of runtime differences
between systems tedious to evaluate. We thus suggest that the queries in this benchmark
are not sufficient to carry out a thorough evaluation of the performance of existing
        </p>
        <sec id="sec-1-4-1">
          <title>3 https://github.com/AKSW/LargeRDFBench</title>
          <p>
            systems, especially when aiming to have an idea of their performance in real settings.
A look at the size of the datasets included also suggest that the benchmark has stopped
reflecting the complexity of the Data Web in which we currently live. The results of the
evaluation in [
            <xref ref-type="bibr" rid="ref13">13</xref>
            ] suggest that benchmarks for federated queries must:
1. SPARQL features. While FedBench queries do not use a large number of SPARQL
features (e.g.., LIMIT), LSQ clearly show that most SPARQL features are often
used in Web queries (e.g., LIMIT is used in approximately 17% of the LSQ queries).
We’d suggest including more queries into existing benchmarks that allow evaluating
the performance of existing systems for all SPARQL features.
2. Large data sources. A large number of the current data sources dispatch billions of
RDF triples. According to LodStats,4 144 SPARQL endpoints contain an average
of 1.03 billion triples. Reflecting these ever growing dataset sizes is of central
importance to implement the vision of realistic benchmarks that allow selecting the
right solution for a given problem.
3. Duplicated data. The distributed and decentral architecture of the Linked Data Web
leads to (1) data sources being duplicated or replicated (e.g., DBLP) and (2) portions
of datasets being duplicated across different endpoints (e.g., copies of DBpedia).
Modern federated benchmark must contain this characteristic of the Linked Data
Web to allow evaluating the performance of existing systems. That the presence of
duplicates can lead to different rankings in performance is shown in [
            <xref ref-type="bibr" rid="ref13">13</xref>
            ].
4. Complex queries. The largest query available in the LSQ dataset encompasses 37
triple patters. While the distribution of the number of triple patterns is a long-tailed
distribution, this piece of information suggests that modern federation engines can
be confronted with very large SPARQL queries. Including such queries into existing
benchmarks would ensure a better and more realistic assessement of SPARQL
federation systems. With this requirement also comes the needs for the inclusion of
queries with large intermediary results and large result sets.
3
          </p>
        </sec>
      </sec>
    </sec>
    <sec id="sec-2">
      <title>Conclusion</title>
      <p>The aim of this paper was to give an overview of federated SPARQL query federation.
In addition, we aimed to present some of the challenges and opportunities linked to this
area of research. We presented a generic architecture for federation systems and derived
challenges for the modules underlying these systems. We also addressed the current state
of benchmarking federated RDF triple stores and
4</p>
    </sec>
    <sec id="sec-3">
      <title>Acknowledgment</title>
      <p>This work was supported by the project HOBBIT, which has received funding from
the European Unions Horizon 2020 research and innovation programme under grant
agreement No 688227.</p>
      <sec id="sec-3-1">
        <title>4 http://stats.lod2.eu/</title>
      </sec>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          1.
          <string-name>
            <given-names>M.</given-names>
            <surname>Acosta</surname>
          </string-name>
          , M.-E. Vidal,
          <string-name>
            <given-names>T.</given-names>
            <surname>Lampo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Castillo</surname>
          </string-name>
          , and
          <string-name>
            <surname>E. Ruckhaus.</surname>
          </string-name>
          <article-title>ANAPSID: an adaptive query processing engine for SPARQL endpoints</article-title>
          .
          <source>In ISWC</source>
          ,
          <year>2011</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          2.
          <string-name>
            <given-names>G.</given-names>
            <surname>Aluc¸</surname>
          </string-name>
          ,
          <string-name>
            <given-names>O.</given-names>
            <surname>Hartig</surname>
          </string-name>
          , M. T. O¨zsu, and
          <string-name>
            <given-names>K.</given-names>
            <surname>Daudjee</surname>
          </string-name>
          .
          <article-title>Diversified stress testing of rdf data management systems</article-title>
          .
          <source>In ISWC</source>
          .
          <year>2014</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          3.
          <string-name>
            <given-names>C.</given-names>
            <surname>Bizer</surname>
          </string-name>
          and
          <string-name>
            <surname>A. Schultz.</surname>
          </string-name>
          <article-title>The berlin sparql benchmark</article-title>
          .
          <source>IJSWIS</source>
          ,
          <volume>5</volume>
          (
          <issue>2</issue>
          ):
          <fpage>1</fpage>
          -
          <lpage>24</lpage>
          ,
          <year>2009</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          4.
          <string-name>
            <given-names>A.</given-names>
            <surname>Charalambidis</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Troumpoukis</surname>
          </string-name>
          , and
          <string-name>
            <given-names>S.</given-names>
            <surname>Konstantopoulos</surname>
          </string-name>
          . Semagrow:
          <article-title>Optimizing federated sparql queries</article-title>
          .
          <source>In SEMANTICS</source>
          ,
          <year>2015</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          5.
          <string-name>
            <given-names>O.</given-names>
            <surname>Go</surname>
          </string-name>
          <article-title>¨rlitz and</article-title>
          <string-name>
            <given-names>S.</given-names>
            <surname>Staab</surname>
          </string-name>
          . Splendid:
          <article-title>Sparql endpoint federation exploiting void descriptions</article-title>
          .
          <source>In COLD at ISWC</source>
          ,
          <year>2011</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          6.
          <string-name>
            <given-names>Y.</given-names>
            <surname>Guo</surname>
          </string-name>
          and
          <string-name>
            <surname>J. Heflin.</surname>
          </string-name>
          <article-title>LUBM: A benchmark for owl knowledge base systems</article-title>
          .
          <source>JWS</source>
          ,
          <year>2005</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          7.
          <string-name>
            <given-names>M.</given-names>
            <surname>Martin</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Unbehauen</surname>
          </string-name>
          , and
          <string-name>
            <given-names>S.</given-names>
            <surname>Auer</surname>
          </string-name>
          .
          <article-title>Improving the performance of semantic web applications with sparql query caching</article-title>
          .
          <source>In The Semantic Web: Research and Applications</source>
          , pages
          <fpage>304</fpage>
          -
          <lpage>318</lpage>
          . Springer,
          <year>2010</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          8.
          <string-name>
            <given-names>M.</given-names>
            <surname>Morsey</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Lehmann</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Auer</surname>
          </string-name>
          , and A.
          <string-name>
            <surname>-C. Ngonga Ngomo</surname>
          </string-name>
          .
          <article-title>Dbpedia sparql benchmark - performance assessment with real queries on real data</article-title>
          .
          <source>In International Semantic Web Conference</source>
          , pages
          <fpage>454</fpage>
          -
          <lpage>469</lpage>
          ,
          <year>2011</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          9.
          <string-name>
            <surname>A</surname>
          </string-name>
          .
          <string-name>
            <surname>-C. Ngonga Ngomo</surname>
          </string-name>
          .
          <article-title>Helios-execution optimization for link discovery</article-title>
          .
          <source>In The Semantic Web-ISWC</source>
          <year>2014</year>
          , pages
          <fpage>17</fpage>
          -
          <lpage>32</lpage>
          . Springer,
          <year>2014</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          10.
          <string-name>
            <surname>A</surname>
          </string-name>
          .
          <string-name>
            <surname>-C. Ngonga Ngomo</surname>
            and
            <given-names>M.</given-names>
          </string-name>
          <string-name>
            <surname>Hassan</surname>
          </string-name>
          .
          <article-title>The lazy traveling salesman - memory management for large-scale link discovery</article-title>
          .
          <source>In Extended Semantic Web Conference</source>
          . Springer,
          <year>2016</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          11.
          <string-name>
            <given-names>B.</given-names>
            <surname>Quilitz</surname>
          </string-name>
          and
          <string-name>
            <given-names>U.</given-names>
            <surname>Leser</surname>
          </string-name>
          .
          <article-title>Querying distributed rdf data sources with sparql</article-title>
          .
          <source>In Extended Semantic Web Conference</source>
          ,
          <year>2008</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          12.
          <string-name>
            <surname>M. Saleem</surname>
            ,
            <given-names>M. I.</given-names>
          </string-name>
          <string-name>
            <surname>Ali</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Hogan</surname>
            ,
            <given-names>Q.</given-names>
          </string-name>
          <string-name>
            <surname>Mehmood</surname>
          </string-name>
          , and A.
          <string-name>
            <surname>-C. Ngonga Ngomo</surname>
          </string-name>
          .
          <article-title>Lsq: The linked sparql queries dataset</article-title>
          .
          <source>In The Semantic Web-ISWC</source>
          <year>2015</year>
          , pages
          <fpage>261</fpage>
          -
          <lpage>269</lpage>
          . Springer,
          <year>2015</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          13.
          <string-name>
            <surname>M. Saleem</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          <string-name>
            <surname>Khan</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Hasnain</surname>
            ,
            <given-names>I. Ermilov</given-names>
          </string-name>
          , and A.
          <string-name>
            <surname>-C. Ngonga Ngomo</surname>
          </string-name>
          .
          <article-title>A fine-grained evaluation of sparql endpoint federation systems</article-title>
          .
          <source>Semantic Web</source>
          , (Preprint):
          <fpage>1</fpage>
          -
          <lpage>26</lpage>
          ,
          <year>2015</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          14.
          <string-name>
            <surname>M. Saleem</surname>
            ,
            <given-names>Q.</given-names>
          </string-name>
          <string-name>
            <surname>Mehmood</surname>
          </string-name>
          , and A.
          <string-name>
            <surname>-C. Ngonga</surname>
          </string-name>
          <article-title>Ngomo. FEASIBLE: A featured-based sparql benchmark generation framework</article-title>
          .
          <source>In ISWC</source>
          ,
          <year>2015</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          15.
          <string-name>
            <given-names>M.</given-names>
            <surname>Saleem</surname>
          </string-name>
          and A.
          <string-name>
            <surname>-C. Ngonga</surname>
          </string-name>
          <article-title>Ngomo. HiBISCuS: Hypergraph-based source selection for sparql endpoint federation</article-title>
          .
          <source>In Extended Semantic Web Conference</source>
          ,
          <year>2014</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          16.
          <string-name>
            <surname>M. Saleem</surname>
          </string-name>
          , A.
          <string-name>
            <surname>-C. Ngonga Ngomo</surname>
            ,
            <given-names>J. X.</given-names>
          </string-name>
          <string-name>
            <surname>Parreira</surname>
            ,
            <given-names>H. F.</given-names>
          </string-name>
          <string-name>
            <surname>Deus</surname>
            , and
            <given-names>M.</given-names>
          </string-name>
          <string-name>
            <surname>Hauswirth</surname>
          </string-name>
          . Daw:
          <article-title>Duplicate-aware federated query processing over the web of data</article-title>
          .
          <source>In ISWC</source>
          ,
          <year>2013</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          17.
          <string-name>
            <surname>M. Schmidt</surname>
            , O. Go¨rlitz, P. Haase,
            <given-names>G.</given-names>
          </string-name>
          <string-name>
            <surname>Ladwig</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Schwarte</surname>
            , and
            <given-names>T.</given-names>
          </string-name>
          <string-name>
            <surname>Tran</surname>
          </string-name>
          .
          <article-title>Fedbench: a benchmark suite for federated semantic data query processing</article-title>
          .
          <source>In ISWC</source>
          ,
          <year>2011</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          18.
          <string-name>
            <surname>M. Schmidt</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          <string-name>
            <surname>Hornung</surname>
            , G. Lausen, and
            <given-names>C.</given-names>
          </string-name>
          <string-name>
            <surname>Pinkel</surname>
          </string-name>
          .
          <article-title>Spˆ 2bench: a sparql performance benchmark</article-title>
          .
          <source>In ICDE</source>
          , pages
          <fpage>222</fpage>
          -
          <lpage>233</lpage>
          ,
          <year>2009</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          19.
          <string-name>
            <given-names>A.</given-names>
            <surname>Schwarte</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Haase</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Hose</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Schenkel</surname>
          </string-name>
          , and
          <string-name>
            <given-names>M.</given-names>
            <surname>Schmidt</surname>
          </string-name>
          . Fedx:
          <article-title>Optimization techniques for federated query processing on linked data</article-title>
          .
          <source>In ISWC</source>
          ,
          <year>2011</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          20.
          <string-name>
            <given-names>X.</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Tiropanis</surname>
          </string-name>
          , and
          <string-name>
            <given-names>H. C.</given-names>
            <surname>Davis</surname>
          </string-name>
          . Lhd:
          <article-title>Optimising linked data query processing using parallelisation</article-title>
          .
          <source>In LDOW at WWW</source>
          ,
          <year>2013</year>
          .
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>