How to set query timeout when using presto cli?

Member

by orpha , in category: Third Party Scripts , 4 months ago

How to set query timeout when using presto cli?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

Member

by samara , 4 months ago

@orpha 

To set a query timeout when using the Presto CLI, you can use the --query-timeout option. Here's how you can do it:

1
presto --server presto-server-url:port --catalog catalog_name --schema schema_name --query-timeout 30m


In the above command, --query-timeout 30m sets the query timeout to 30 minutes. You can adjust the timeout value as needed. When the query time exceeds the specified timeout period, the query will be automatically cancelled.


Make sure to replace presto-server-url:port, catalog_name, and schema_name with your actual Presto server URL, port, catalog name, and schema name.

Related Threads:

How to query nested fields in mongodb using presto?
How to set timeout on before hook in mocha.js?
How to set connection timeout in flask redis cache?
How to group time column into 5 second intervals and count rows using presto?
How to get the numbers from query in presto?
How to set selected option in asp.net mvc using knockout.js?