SYSTEM$WAIT_ FOR_ OPENFLOW_ RUNTIME_ STATUS¶
Waits until each named runtime reaches one of the statuses you specify. Use this
function when you know the expected status after an ALTER command. When you only need
to wait until the runtime settles, use
SYSTEM$WAIT_FOR_STABLE_OPENFLOW_RUNTIMES instead.
Syntax¶
Arguments¶
timeout_secondsMaximum time to wait, in seconds.
'allowed_statuses'Comma-separated list of acceptable statuses, for example
'ACTIVE'or'ACTIVE,SUSPENDED'.'runtime_name'One or more runtime names. Use the fully qualified name
<database>.<schema>.<name>. WithUSE DATABASEandUSE SCHEMAset, a simple name resolves in the current session.
Returns¶
Returns 'OK' on success. Raises an error if the timeout elapses or if a
runtime enters a failed state.
Access control¶
Requires any privilege on the named runtime.
Usage notes¶
- The Openflow UI performs equivalent polling internally.
- Runtime provisioning typically takes 3–5 minutes. A timeout of 600 seconds is a reasonable default.
- If the function times out, the underlying operation continues. Re-run the wait function with a fresh
timeout. Do not re-issue
CREATE OPENFLOW RUNTIME: the runtime already exists and is still provisioning.
Examples¶
Wait for a runtime to become SUSPENDED after suspending it: