File: //snap/google-cloud-cli/current/lib/surface/dataproc/node_groups/resize.py
# -*- coding: utf-8 -*- #
# Copyright 2022 Google LLC. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Resize a node group command."""
from __future__ import absolute_import
from __future__ import division
from __future__ import unicode_literals
from googlecloudsdk.api_lib.dataproc import dataproc as dp
from googlecloudsdk.api_lib.dataproc import util
from googlecloudsdk.calliope import base
from googlecloudsdk.command_lib.dataproc import flags
from googlecloudsdk.core import log
import six
@base.ReleaseTracks(base.ReleaseTrack.ALPHA, base.ReleaseTrack.BETA,
base.ReleaseTrack.GA)
class Resize(base.Command):
"""Resize the number of nodes in the node group."""
detailed_help = {
'EXAMPLES':
"""\
To resize a node group, run:
$ {command} my-node-group-id --region=us-central1 --cluster=my-cluster-name --size=5
"""
}
@classmethod
def Args(cls, parser):
dataproc = dp.Dataproc(cls.ReleaseTrack())
flags.AddNodeGroupResourceArg(parser, 'resize', dataproc.api_version)
flags.AddSizeFlag(parser)
flags.AddGracefulDecommissionTimeoutFlag(parser)
# For consistency with clusters update polling timeout. Max allowed graceful
# decommission timeout is 24 hours.
flags.AddTimeoutFlag(parser, default='25h')
def Run(self, args):
dataproc = dp.Dataproc(self.ReleaseTrack())
messages = dataproc.messages
node_group = args.CONCEPTS.node_group.Parse()
resize_request = messages.ResizeNodeGroupRequest(
size=args.size, requestId=util.GetUniqueId())
if args.graceful_decommission_timeout is not None:
resize_request.gracefulDecommissionTimeout = (
six.text_type(args.graceful_decommission_timeout) + 's')
request = messages.DataprocProjectsRegionsClustersNodeGroupsResizeRequest(
name=node_group.RelativeName(), resizeNodeGroupRequest=resize_request)
operation = dataproc.client.projects_regions_clusters_nodeGroups.Resize(
request)
util.WaitForOperation(
dataproc,
operation,
message='Waiting for node group resize operation',
timeout_s=args.timeout)
request = messages.DataprocProjectsRegionsClustersNodeGroupsGetRequest(
name=node_group.RelativeName())
final_node_group = dataproc.client.projects_regions_clusters_nodeGroups.Get(
request)
log.UpdatedResource(node_group)
return final_node_group