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: |
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, |
No If you analyse the query as a whole you'll see Jena has a |
|
@kinow Sorry, by the way, Is there any information on how to interpret the EXPLAIN results? |
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 👍