#engines:list

#rai engines:list [OPTIONS]

List all RelationalAI engines.

Options#

OptionTypeDescription
--stateTextFilter engines by state. Possible values: ready, pending, and suspended.

Example#

Use the engines:list command to list all RelationalAI engines available in your account:

#$ rai engines:list

---------------------------------------------------


  Name           Size             State
 ────────────────────────────────────────
  my_engine_s    HIGHMEM_X64_S    READY
  my_engine_m    HIGHMEM_X64_M    READY
  test_engine    HIGHMEM_X64_S    PENDING


---------------------------------------------------

To filter the list by the state of the engine, use the --state option. For example, to list only the engines that are in the READY state, execute the following command:

#$ rai engines:list --state ready

---------------------------------------------------


  Name           Size             State
 ────────────────────────────────────────
  my_engine_s    HIGHMEM_X64_S    READY
  my_engine_m    HIGHMEM_X64_M    READY


---------------------------------------------------

See Also#