本文為英文版的機器翻譯版本,如內容有任何歧義或不一致之處,概以英文版為準。
statement_timeout
值 (粗體為預設值)
0 (關閉限制)、x 毫秒
描述
停止任何超過指定毫秒數的陳述式。
statement_timeout
值是指查詢在 Amazon Redshift 將其終止前可執行的最長時間。此時間包括規劃、在工作負載管理 (WLM) 中佇列,以及執行時間。將此時間與WLM逾時 (max_execution_time) 和 QMR(query_execution_time) 進行比較,其中僅包含執行時間。
如果也指定WLM逾時 (max_execution_time) 作為WLM組態的一部分,則會使用 statement_timeout 和 max_execution_time 的較低值。如需詳細資訊,請參閱WLM 逾時。
範例
以下查詢因為時間超過 1 毫秒,所以會逾時並被取消。
set statement_timeout = 1; select * from listing where listid>5000; ERROR: Query (150) canceled on user's request