RethinkDB Query Plan

296 Views Asked by At

I'd like to look at the query execution plan of a complex query written for RethinkDB. How can I open it? I already looked in other forums but I did not get a hint whether such a function exists.

1

There are 1 best solutions below

0
On

I couldn't tell how to get the query plan from Python, but, to use Rethinkdb's profiler, you should use the latest version of Rethinkdb (>= 1.11)

You can then view the query plan using the Web admin interface (you'll have a new 'Query profile' tab in data explorer).

You can also enable profiling in your query using .run(profile=True).

Read Rethinkdb official blog for more information about this query plan/profiling feature.