How to share a SPARQL query result as a datasource

52 views Asked by At

i built a Apache Jena fuseki tdb and create some triples in it. i create some queries by sparql. the results of the queries seem like a table which is like a table in RDBMS. now i want to operate these results by SQL, or share the results as a data source that is like a table or a view in Apache Drill. Is it possible? if it's possible, how can I realize this thought.

1

There are 1 answers

0
Dzamo Norton On

I'll list three possibilities.

  1. You can try to use Drill's HTTP storage plugin against the Fuseki API serving JSON or XML formatted responses.
  2. With more effort you can write a new TDB or Fuseki storage plugin for Drill.
  3. As noted in a comment, you can export your data to a file format already queryable by Drill. It looks like JSON, XML and delimited text are options in this vein.