次のような場合に使用: ユーザーが Zilliz Cloud 上でバックアップの作成・一覧表示・説明・削除・エクスポート(外部への保存)・復元をしたい場合、またはバックアップポリシー(バックアップ実施の規則)を管理したい場合。
Use when the user wants to create, list, describe, delete, export, or restore backups, or manage backup policies on Zilliz Cloud.
--cluster-id を直接使用します。zilliz backup create --cluster-id <cluster-id>
# オプション:
# --database <database-name>
# --collection <collection-name>
# --backup-type <CLUSTER|COLLECTION>
# または生JSONで指定: --body '{...}'
zilliz backup list
# オプション:
# --project-id <project-idでフィルタリング>
# --cluster-id <cluster-idでフィルタリング>
# --creation-method <MANUAL|AUTO>
# --backup-type <CLUSTER|COLLECTION>
# ページネーション: --page-size <n> --page <n>
# 全ページを取得: --all
zilliz backup describe --cluster-id <cluster-id> --backup-id <backup-id>
zilliz backup delete --cluster-id <cluster-id> --backup-id <backup-id-to-delete>
zilliz backup export \
--cluster-id <cluster-id> \
--backup-id <backup-id> \
--integration-id <storage-integration-id>
# オプション: --directory <directory>
zilliz backup restore-cluster \
--cluster-id <source-cluster-id> \
--backup-id <backup-id-to-restore> \
--project-id <target-project-id> \
--name <new-cluster-name> \
--cu-size <compute-units-for-new-cluster> \
--collection-status <LOADED|NOT_LOADED>
zilliz backup restore-collection \
--cluster-id <source-cluster-id> \
--backup-id <backup-id> \
--dest-cluster-id <destination-cluster-id>
# または生JSONで指定: --body '{"collections": [{"source": "col1", "target": "col1_restored"}]}'
zilliz backup describe-policy --cluster-id <cluster-id>
zilliz backup update-policy --cluster-id <cluster-id> --auto-backup <true|false>
# オプション:
# --frequency <frequency>
# --start-time <start-time>
# --retention-days <バックアップ保持日数>
# または生JSONで指定: --body '{...}'
頻度: daily | weekdays | weekends | 1-7(1=月曜、7=日曜)、例: 1,3,5
開始時刻: HH:MM または HH:MM-HH:MM(時間帯ウィンドウ)、例: 02:00 または 03:00-05:00
--collection が指定された場合は COLLECTION バックアップ、指定がない場合は CLUSTER バックアップとなります。backup describe を使用して進捗を確認してください。--integration-id は、Zilliz Cloud コンソールで設定済みのクラウドストレージインテグレーションを指します(設定方法はインポートスキルを参照)。--cluster-id directly.zilliz backup create --cluster-id <cluster-id>
# Optional:
# --database <database-name>
# --collection <collection-name>
# --backup-type <CLUSTER|COLLECTION>
# Or use raw JSON: --body '{...}'
zilliz backup list
# Optional:
# --project-id <filter-by-project-id>
# --cluster-id <filter-by-cluster-id>
# --creation-method <MANUAL|AUTO>
# --backup-type <CLUSTER|COLLECTION>
# Pagination: --page-size <n> --page <n>
# Fetch all pages: --all
zilliz backup describe --cluster-id <cluster-id> --backup-id <backup-id>
zilliz backup delete --cluster-id <cluster-id> --backup-id <backup-id-to-delete>
zilliz backup export \
--cluster-id <cluster-id> \
--backup-id <backup-id> \
--integration-id <storage-integration-id>
# Optional: --directory <directory>
zilliz backup restore-cluster \
--cluster-id <source-cluster-id> \
--backup-id <backup-id-to-restore> \
--project-id <target-project-id> \
--name <new-cluster-name> \
--cu-size <compute-units-for-new-cluster> \
--collection-status <LOADED|NOT_LOADED>
zilliz backup restore-collection \
--cluster-id <source-cluster-id> \
--backup-id <backup-id> \
--dest-cluster-id <destination-cluster-id>
# Or use raw JSON: --body '{"collections": [{"source": "col1", "target": "col1_restored"}]}'
zilliz backup describe-policy --cluster-id <cluster-id>
zilliz backup update-policy --cluster-id <cluster-id> --auto-backup <true|false>
# Optional:
# --frequency <frequency>
# --start-time <start-time>
# --retention-days <days-to-retain-backups>
# Or use raw JSON: --body '{...}'
Frequency: daily | weekdays | weekends | 1-7 (1=Mon, 7=Sun), e.g. 1,3,5
Start time: HH:MM or HH:MM-HH:MM (time window), e.g. 02:00 or 03:00-05:00
--collection is provided, it's a COLLECTION backup; otherwise it's a CLUSTER backup.backup describe to check progress.--integration-id for export refers to a cloud storage integration configured in the Zilliz Cloud console (see import skill for setup guidance).原文・著作権は Anthropic および各プラグイン作者に帰属します。日本語訳は Claude API による自動翻訳です。