CANCEL LOAD
This statement is used to undo an import job for the specified label. Or batch undo import jobs via fuzzy matching
CANCEL LOAD [FROM db_name] WHERE [LABEL = "load_label" | LABEL like "label_pattern" | STATE = "PENDING/ETL/LOADING"]
Notice: Cancel by State is supported since 1.2.0.
Cancel the import job whose label is example_db_test_load_label on the database example_db
CANCEL LOAD FROM example_db WHERE LABEL = "example_db_test_load_label";
Cancel all import jobs containing example* on the database example*db.
CANCEL LOAD FROM example_db WHERE LABEL like "example_";
Cancel all import jobs which state are “LOADING”
CANCEL LOAD FROM example_db WHERE STATE = "loading";
CANCEL, LOAD