STOP ROUTINE LOAD
説明
Routine Load ジョブを停止します。
You can manage Routine Load jobs that run on StarRocks tables only as a user who has the INSERT privilege on those StarRocks tables. If you do not have the INSERT privilege, follow the instructions provided in GRANT to grant the INSERT privilege to the user that you use to connect to your StarRocks cluster.
警告
- 停止した Routine Load ジョブは再開できません。そのため、このステートメントを実行する際は慎重に進めてください。
- Routine Load ジョブを一時停止するだけでよい場合は、PAUSE ROUTINE LOAD を実行できます。
構文
STOP ROUTINE LOAD FOR [db_name.]<job_name>
パラメータ
パラメータ | 必須 | 説明 |
---|---|---|
db_name | Routine Load ジョブが所属するデータベースの名前。 | |
job_name | ✅ | Routine Load ジョブの名前。 |
例
データベース example_db
の Routine Load ジョブ example_tbl1_ordertest1
を停止します。
STOP ROUTINE LOAD FOR example_db.example_tbl1_ordertest1;