0

I am using Scylla(Cassandra's drop in replacement) db in docker container. I am using Python driver to connect with Scylla db for querying. I need to know the exact CQL query is applying on the database engine.

So, if there any way to print the query on the console(docker logs) or somewhere I can see and copy. Thanks

1 Answers1

1

You can use tracing to ask the database to store the queries in a table. Be careful as there is a large performance impact.

Avi Kivity
  • 1,362
  • 9
  • 17