メインコンテンツまでスキップ
バージョン: 3.2

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_nameRoutine Load ジョブが所属するデータベースの名前。
job_nameRoutine Load ジョブの名前。

データベース example_db の Routine Load ジョブ example_tbl1_ordertest1 を停止します。

STOP ROUTINE LOAD FOR example_db.example_tbl1_ordertest1;