UPDATE COMPUTE_POOL

Syntax

UPDATE COMPUTE_POOL compute_pool_name
WITH (compute_pool_parameter = value [, …]);

Description

Updates a compute_pool with new parameters.

Arguments

compute_pool_name

The name of the compute_pool to update. If the name is case sensitive you must wrap it in double quotes; otherwise the system uses the lower case name.

Compute Pool Parameters

Parameter Name
Description

compute_pool.size

Required: Yes Default value: None Type: String Valid values: Small, Medium, Large

  • Small - 1 compute worker (8cpu, 6Gi memory)

  • Medium - Small x 2

  • Large - Small x 4

compute_pool.timeout_min

Once a compute_pool is idle for timeout_min, it will be stopped.

Required: No Default value: 60 minutes (3600 seconds) Type: Int

Examples

UPDATE COMPUTE_POOL mypool 
WITH(‘compute_pool.size’=medium, ‘compute_pool.timeout_min’ =120);

Last updated