All Products
Search
Document Center

Lindorm:SHOW ETLS

Last Updated:Mar 28, 2026

SHOW ETLS lists all extract, transform, and load (ETL) tasks in the current resource group, or filters tasks by name using a wildcard pattern.

Engine and version

SHOW ETLS applies only to the stream engine. Version 3.1.8 or later is required.

View the current version and update the minor version in the console.

Syntax

show_etls_statement ::= SHOW ETLS [ LIKE string_literal ]

Usage notes

LIKE clause

The LIKE clause accepts a string literal that the system uses to perform a wildcard match on system properties. The string literal supports two wildcard characters:

  • %: Matches zero or more characters.

  • _: Matches exactly one character.

Output fields

FieldDescription
ETL_IDThe name of the ETL task.
ETL_VERSIONThe version number of the ETL task. Only the latest version is shown.
STATUSThe status of the ETL task. See Task status.
JOB_RESTART_NUMThe number of times the ETL task has been restarted.
NUM_RECORDSThe number of data records processed by the ETL task.
RECORDS_PER_SECThe number of records processed per second.
NUM_BYTESThe total amount of data processed, in bytes.
BYTES_PER_SECThe amount of data processed per second, in bytes.
EVENT_TIME_LAGThe data processing latency, in milliseconds (ms).
A negative EVENT_TIME_LAG value (for example, -1.0) indicates no data is currently flowing into the ETL task.

Task status

StatusDescription
SUBMITThe task is submitted.
RUNNINGThe task is currently running.
DELETEThe task is being deleted.

Examples

List all ETL tasks

SHOW ETLS;

Output:

+---------+---------------+---------+-----------------+-------------+-----------------+-----------+---------------+----------------+
| ETL_ID  | ETL_VERSION   | STATUS  | JOB_RESTART_NUM | NUM_RECORDS | RECORDS_PER_SEC | NUM_BYTES | BYTES_PER_SEC | EVENT_TIME_LAG |
+---------+---------------+---------+-----------------+-------------+-----------------+-----------+---------------+----------------+
| filter1 | 1753940184757 | RUNNING | 0               | 0.0         | 0.0             | 0.0       | 0.0           | -1.0           |
| filter2 | 1753945414775 | RUNNING | 0               | 0.0         | 0.0             | 0.0       | 0.0           | -1.0           |
+---------+---------------+---------+-----------------+-------------+-----------------+-----------+---------------+----------------+

Filter tasks by name pattern

List all ETL tasks whose names start with filter:

SHOW ETLS LIKE 'filter%';

Output:

+---------+---------------+---------+-----------------+-------------+-----------------+-----------+---------------+----------------+
| ETL_ID  | ETL_VERSION   | STATUS  | JOB_RESTART_NUM | NUM_RECORDS | RECORDS_PER_SEC | NUM_BYTES | BYTES_PER_SEC | EVENT_TIME_LAG |
+---------+---------------+---------+-----------------+-------------+-----------------+-----------+---------------+----------------+
| filter1 | 1753940184757 | RUNNING | 0               | 0.0         | 0.0             | 0.0       | 0.0           | -1.0           |
| filter2 | 1753945414775 | RUNNING | 0               | 0.0         | 0.0             | 0.0       | 0.0           | -1.0           |
+---------+---------------+---------+-----------------+-------------+-----------------+-----------+---------------+----------------+