SHOW-LOAD
SHOW-LOAD
Name
SHOW LOAD
Description
This statement is used to display the execution of the specified import task
grammar:
SHOW LOAD
[FROM db_name]
[
WHERE
[LABEL [ = "your_label" | LIKE "label_matcher"]]
[STATE = ["PENDING"|"ETL"|"LOADING"|"FINISHED"|"CANCELLED"|]]
]
[ORDER BY...]
[LIMIT limit][OFFSET offset];
illustrate:
If db_name is not specified, the current default db is used
If LABEL LIKE is used, it will match import tasks whose label contains label_matcher
If LABEL = is used, it will match the specified label exactly
If STATE is specified, matches the LOAD state
You can use ORDER BY to sort on any combination of columns
If LIMIT is specified, limit matching records are displayed. Otherwise show all
If OFFSET is specified, the query results are displayed starting at offset offset. By default the offset is 0.
If you are using broker/mini load, the connections in the URL column can be viewed using the following command:
SHOW LOAD WARNINGS ON 'url'
Example
Show all import tasks for default db
SHOW LOAD;
Display the import tasks of the specified db, the label contains the string "2014_01_02", and display the oldest 10
SHOW LOAD FROM example_db WHERE LABEL LIKE "2014_01_02" LIMIT 10;
Display the import tasks of the specified db, specify the label as "load_example_db_20140102" and sort by LoadStartTime in descending order
SHOW LOAD FROM example_db WHERE LABEL = "load_example_db_20140102" ORDER BY LoadStartTime DESC;
Display the import task of the specified db, specify the label as "load_example_db_20140102", the state as "loading", and sort by LoadStartTime in descending order
SHOW LOAD FROM example_db WHERE LABEL = "load_example_db_20140102" AND STATE = "loading" ORDER BY LoadStartTime DESC;
Display the import tasks of the specified db and sort them in descending order by LoadStartTime, and display 10 query results starting from offset 5
SHOW LOAD FROM example_db ORDER BY LoadStartTime DESC limit 5,10;
SHOW LOAD FROM example_db ORDER BY LoadStartTime DESC limit 10 offset 5;Small batch import is a command to check the import status
curl --location-trusted -u {user}:{passwd} http://{hostname}:{port}/api/{database}/_load_info?label={labelname}
Keywords
SHOW, LOAD