2

Is there any way to get all the query history that is executed in trino?

I need an API or query to get the history of the executed query.

1 Answers1

1

https://trino.io/docs/current/connector/system.html#runtime-queries

show columns from system.runtime.queries;
select * from system.runtime.queries;
Dyno Fu
  • 8,753
  • 4
  • 39
  • 64