Skip to main content

list

This operation lists on-demand clusters in a project/region.

Description

Lists on-demand clusters in a project and region, including the cluster status and CU size.

Synopsis

bash
zilliz on-demand-cluster list
--project-id <value>
--region-id <value>

Options

  • --project-id (string) -

    [REQUIRED]

    Project ID.

  • --region-id (string) -

    [REQUIRED]

    Cloud region (e.g. aws-us-west-2).

Example

bash
zilliz -o json on-demand-cluster list --project-id proj-xxxx --region-id aws-us-west-2

# Example output
# {
# "count": 2,
# "onDemandClusters": [
# {
# "clusterId": "in07-xxxxxxxxxxxxxxx",
# "clusterName": "c8_60",
# "status": "RUNNING",
# "cuSize": 8,
# "projectId": "proj-xxxx",
# "regionId": "aws-us-west-2"
# },
# {
# "clusterId": "in07-yyyyyyyyyyyyyyy",
# "clusterName": "e2e",
# "status": "SUSPENDED",
# "cuSize": 8,
# "projectId": "proj-xxxx",
# "regionId": "aws-us-west-2"
# }
# ]
# }

# A cluster can also temporarily report SUSPENDING while it is being suspended.
Minimum SDK versionv1.4.x
Ctrl I