Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Applies to:
Databricks SQL
The STATEMENT_TIMEOUT configuration parameter specifies a timeout duration in seconds. The count starts at the beginning of the SQL statement's execution. Any Databricks SQL statement with a run time exceeding the value is timed out.
You can set this parameter at three scopes:
- Session: Applies to statements in the current session. Use the SET statement.
- Warehouse (Beta): Applies to all statements that run on a specific SQL warehouse. Use the SQL warehouses API.
- Workspace: Applies to all SQL warehouses in the workspace. Use workspace admin settings or the SQL warehouses API.
Setting
Set a timeout value in seconds between 0 and 172800 seconds (2 days). Any Databricks SQL statement that has an execution time exceeding the set value is halted.
System default
The system default is 172800 seconds (2 days).
Precedence
When the timeout is set at more than one scope, the first non-null value in the following order applies:
Session
Workspace
If the timeout is not set at any scope, the system default applies.
Examples
The following example sets a session-level timeout and then resets it.
-- Set a session-level timeout
> SET STATEMENT_TIMEOUT = 86400;
> SELECT * FROM DIAMONDS;
-- Reset the timeout duration
> RESET STATEMENT_TIMEOUT;
> SELECT * FROM DIAMONDS;
To set a workspace-level timeout, go to the workspace admin settings, click Compute, then click Manage next to SQL warehouses. In the SQL Configuration Parameters setting, add a configuration parameter where the timeout value is in seconds.
-- Set a workspace-level timeout
> STATEMENT_TIMEOUT 86400