Skip to main content

data_cluster_volume_detail

Shows the details of the storage volumes for FE/BE nodes in an elastic cluster.

Example Usage

data "celerdatabyoc_data_cluster_volume_detail" "volume_detail" {
cluster_id = <cluster_resource_id>
node_type = <"FE" | "BE">
}

Argument Reference

This data source contains the following required arguments:

  • cluster_id: (String, Forces new resource) The ID of the celerdatabyoc_elastic_cluster_v2 resource.

  • node_type: The type of the cluster node. Valid values:

    • BE: WAREHOUSE node in the elastic cluster.
    • FE: Coordinator Node in the elastic cluster.

Attribute Reference

This data source exports the following attributes:

  • id: (String) The ID of this data source.
  • vol_size: The volume size of each node in the cluster. Unit: GB
  • vol_num: The volume number of each node in the cluster.
  • iops: The volume IOPS.
  • throughput: The volume throughput.

See Also