cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

Time took to run the query is not showing all the time

skmami
Node Clone

I am running a query against a remotely installed Neo4J. I do see the response times for some queries but not for the others. Is there a way to check the time took to process my query. ?

2X_0_006eb556ad302214593c61cddc868e663aa11303.png

4 REPLIES 4

webtic
Graph Fellow

Do you mean the time displayed in the bottom indicated with the red arrow?
That info is only shown in the "table" view, the others do not display that info.

Thanks @webtic.

Got a followup question on how to interpret response times.

Created 19847 relationships, started streaming 5243 records after 1 ms and completed after 320 ms, displaying first 1000 rows.

In the above response ... Is it displaying the time it took to render the results or is this the whole time for processing the query and rendering the results. ?

If it is just the response time to render the results, where can I check how long the query is taking to execute ?

Thanks again.

To get more insight into your queries you can either EXPLAIN or PROFILE them.

You can find more info at https://neo4j.com/docs/cypher-manual/current/query-tuning/how-do-i-profile-a-query/ and other links from that page, especially https://neo4j.com/docs/cypher-manual/current/execution-plans/ might be of interest.

Apart from execution time this show much more info about your queries. Perhaps even too much

skmami
Node Clone

Thank you so much. You saved my day. I was thinking I am seeing it for different queries but did not realize it was the different view where I saw this data. Thanks again.