Reputation: 3171
Is it possible to view the query execution plan for evaluating a SPARQL query in AllegroGraph (something like EXPLAIN
).
Upvotes: 3
Views: 271
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:
PREFIX franzOption_logQuery: <franz:yes>
to the query, which will write an execution log to agraph.log
Upvotes: 0
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