メインコンテンツまでスキップ

ClusterをGlobal Clusterに変換 (V2)

既存の専用クラスターを新しいGlobal Clusterのプライマリメンバーに変換し、1つ以上のセカンダリメンバークラスターを作成します。

POST/v2/globalClusters/convert
接続エンドポイント

https://api.cloud.zilliz.com

shell
export BASE_URL="https://api.cloud.zilliz.com"
パラメータ
Authorizationstringheader必要

認証トークンには、適切な権限を持つAPI keyを使用する必要があります。

値の例: Bearer {{TOKEN}}
リクエスト・ボディ
clusterIdstring必要

Global Clusterのプライマリメンバーに変換する既存の専用クラスターID。

値の例: in01-xxxxxxxxxxxxxxx
globalClusterNamestring必要

新しいGlobal Clusterの表示名。

値の例: my-global-cluster
secondaryClustersarray必要

Global Clusterメンバーとして作成するセカンダリクラスター。少なくとも1つの項目が必要です。

[]secondaryClustersobject必要
clusterNamestring必要

セカンダリクラスターの表示名。

値の例: secondary-cluster-ap
regionIdstring必要

セカンダリクラスターのリージョンID。

値の例: aws-ap-southeast-1
レスポンス

変換ジョブを返します。

globalClusterIdstring

新しいGlobal Cluster ID。

値の例: glo-xxxxxxxxxxxxxxx
jobIdstring

非同期変換操作のジョブID。

値の例: job-xxxxxxxxxxxxxxx

エラーメッセージを返します。

codeinteger

レスポンスコード。

値の例: 400
messagestring

エラーメッセージ。

値の例: Invalid request parameters.
Successjson
{
"globalClusterId": "glo-xxxxxxxxxxxxxxx",
"jobId": "job-xxxxxxxxxxxxxxx"
}