dbCreateCluster
dbCreateCluster(
d_cellViewId
t_clusterName
t_clusterType
)
=> d_clusterId / nil
Description
Creates a cluster in the specified cellview.
Arguments
|
d_cellViewId
|
The database ID of the cellview.
|
|
t_clusterName
|
Name of the cluster.
|
|
t_clusterType
|
Indicates the type of cluster. Valid values:
inclusive: Instances other than the instances in this cluster may be placed in the cluster’s region.
exclusive: Only instances in this cluster may be placed in the cluster’s region.
suggested: Instances in this cluster may be placed outside the cluster’s region.
|
Value Returned
|
d_clusterId
|
The database ID of the cluster if the creation is successful.
|
|
nil
|
The creation fails. Failure can occur if either another cluster having the name specified already exists in the cellview, the specified clusterType is invalid, or the specified cellview is invalid
|
Related Topics
Cluster Functions
Return to top