myahya
myahya

Reputation: 3171

AllegroGraph Query Plan

Is it possible to view the query execution plan for evaluating a SPARQL query in AllegroGraph (something like EXPLAIN).

Upvotes: 3

Views: 271

Answers (2)

Willem Broekema
Willem Broekema

Reputation: 15

There is no explain query command in SPARQL, but here are two ways to execute SPARQL queries with verbose output which includes the query plan:

Upvotes: 0

unxn3rd
unxn3rd

Reputation: 257

AllegroGraph provides a query analyzer through a Lisp API and REST API that will tell you what indices are being utilized. For more information, look at the following link (this is for AllegroGraph v4.14.1):

http://franz.com/agraph/support/documentation/v4/query-analysis.html

Upvotes: 0

Related Questions