Learn R Programming

paws.database (version 0.1.5)

redshift_resize_cluster: 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.

Usage

redshift_resize_cluster(ClusterIdentifier, ClusterType, NodeType,
  NumberOfNodes, Classic)

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.

NumberOfNodes

[required] The new number of nodes for the cluster.

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.

Request syntax

svc$resize_cluster(
  ClusterIdentifier = "string",
  ClusterType = "string",
  NodeType = "string",
  NumberOfNodes = 123,
  Classic = TRUE|FALSE
)

Details

Elastic resize operations have the following restrictions:

  • You can only resize clusters of the following types:

  • dc2.large

  • dc2.8xlarge

  • ds2.xlarge

  • ds2.8xlarge

  • The type of nodes that you add must match the node type for the cluster.