How to analyze SPARQL execution plans using Jena 4.7.0 #1808
-
Hello, How to analyze SPARQL execution plans using Jena 4.7.0, could you give me a complete code sample? By the way, can Jena analyze the execution plan for SPARQL federated queries? For example:
|
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 4 replies
-
Hi @chenkun19960427 have you seen this page in the docs already? https://jena.apache.org/documentation/query/explain.html It contains some information about the ARQ query parse explain command, |
Beta Was this translation helpful? Give feedback.
-
No If you analyse the query as a whole you'll see Jena has a |
Beta Was this translation helpful? Give feedback.
-
@kinow Sorry, by the way, Is there any information on how to interpret the EXPLAIN results? |
Beta Was this translation helpful? Give feedback.
Hi @chenkun19960427 have you seen this page in the docs already? https://jena.apache.org/documentation/query/explain.html
It contains some information about the ARQ query parse explain command,
arq.qparse --explain 'SELECT * { ?s ?p ?o }'
. See if that helps 👍