redshift_resize_cluster: Changes the size of the cluster

View source: R/redshift_operations.R

redshift_resize_clusterR Documentation

Changes the size of the cluster

Description

Changes the size of the cluster. You can change the cluster's type, or change the number or type of nodes. The default behavior is to use the elastic resize method. With an elastic resize, your cluster is available for read and write operations more quickly than with the classic resize method.

See https://www.paws-r-sdk.com/docs/redshift_resize_cluster/ for full documentation.

Usage

redshift_resize_cluster(
  ClusterIdentifier,
  ClusterType = NULL,
  NodeType = NULL,
  NumberOfNodes = NULL,
  Classic = NULL,
  ReservedNodeId = NULL,
  TargetReservedNodeOfferingId = NULL
)

Arguments

ClusterIdentifier

[required] The unique identifier for the cluster to resize.

ClusterType

The new cluster type for the specified cluster.

NodeType

The new node type for the nodes you are adding. If not specified, the cluster's current node type is used.

NumberOfNodes

The new number of nodes for the cluster. If not specified, the cluster's current number of nodes is used.

Classic

A boolean value indicating whether the resize operation is using the classic resize process. If you don't provide this parameter or set the value to false, the resize type is elastic.

ReservedNodeId

The identifier of the reserved node.

TargetReservedNodeOfferingId

The identifier of the target reserved node offering.


paws.database documentation built on Sept. 12, 2023, 1:21 a.m.