Skip to content

This feature is currently in Preview.

relationalai.api.show_warm_engines()

show_warm_engines()

A procedure that retrieves details about all currently existing warm engines. Requires the eng_user application role.

This procedure does not take any parameters.

A table with the following columns:

NameTypeDescription
TYPESTRINGThe type of warm engine, e.g. "LOGIC".
SIZESTRINGThe size of the warm engine, e.g. "HIGHMEM_X64_S".
NAMESTRINGThe name of the warm engine.
COMPUTE_POOLSTRINGThe name of the compute pool to which the warm engine belongs.
CREATED_ONTIMESTAMPThe timestamp when the warm engine was created.
READY_ONTIMESTAMPThe timestamp when the warm engine became ready to use.

Use the api.show_warm_engines() procedure to show information about all currently existing warm engines:

CALL relationalai.api.show_warm_engines();
/*+-------+---------------+--------------------------------+-----------------------------+---------+-------------------------------+-------------------------------+
| TYPE | SIZE | NAME | COMPUTE_POOL | STATUS | CREATED_ON | READY_ON |
|-------+---------------+--------------------------------+-----------------------------+---------+--------------------------0----+-------------------------------+
| LOGIC | HIGHMEM_X64_S | WARM_ENGINE_LOGIC_a57c7945da89 | RELATIONAL_AI_HIGHMEM_X64_S | READY | 2026-01-28 07:16:55.707 -0800 | 2026-01-28 07:19:31.244 -0800 |
| LOGIC | HIGHMEM_X64_M | WARM_ENGINE_LOGIC_9f7d942067d9 | RELATIONAL_AI_HIGHMEM_X64_M | PENDING | 2026-01-28 07:17:05.645 -0800 | NULL |
+-------+---------------+--------------------------------+-----------------------------+---------+-------------------------------+-------------------------------+ */

See Warm Engines for more information on warm engines and how to manage them.