Skip to content

feat: [google-cloud-dataproc] Add cluster_tier to support creating premium clusters #14047

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 30, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
__version__ = "5.20.0" # {x-release-please-version}
__version__ = "0.0.0" # {x-release-please-version}
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
__version__ = "5.20.0" # {x-release-please-version}
__version__ = "0.0.0" # {x-release-please-version}
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,8 @@ class ClusterConfig(proto.Message):
r"""The cluster config.

Attributes:
cluster_tier (google.cloud.dataproc_v1.types.ClusterConfig.ClusterTier):
Optional. The cluster tier.
config_bucket (str):
Optional. A Cloud Storage bucket used to stage job
dependencies, config files, and job driver console output.
Expand Down Expand Up @@ -258,6 +260,26 @@ class ClusterConfig(proto.Message):
Optional. The node group settings.
"""

class ClusterTier(proto.Enum):
r"""The cluster tier.

Values:
CLUSTER_TIER_UNSPECIFIED (0):
Not set. Works the same as CLUSTER_TIER_STANDARD.
CLUSTER_TIER_STANDARD (1):
Standard Dataproc cluster.
CLUSTER_TIER_PREMIUM (2):
Premium Dataproc cluster.
"""
CLUSTER_TIER_UNSPECIFIED = 0
CLUSTER_TIER_STANDARD = 1
CLUSTER_TIER_PREMIUM = 2

cluster_tier: ClusterTier = proto.Field(
proto.ENUM,
number=29,
enum=ClusterTier,
)
config_bucket: str = proto.Field(
proto.STRING,
number=1,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
],
"language": "PYTHON",
"name": "google-cloud-dataproc",
"version": "5.20.0"
"version": "0.1.0"
},
"snippets": [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6166,6 +6166,7 @@ def test_create_cluster_rest_call_success(request_type):
"project_id": "project_id_value",
"cluster_name": "cluster_name_value",
"config": {
"cluster_tier": 1,
"config_bucket": "config_bucket_value",
"temp_bucket": "temp_bucket_value",
"gce_cluster_config": {
Expand Down Expand Up @@ -6577,6 +6578,7 @@ def test_update_cluster_rest_call_success(request_type):
"project_id": "project_id_value",
"cluster_name": "cluster_name_value",
"config": {
"cluster_tier": 1,
"config_bucket": "config_bucket_value",
"temp_bucket": "temp_bucket_value",
"gce_cluster_config": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5789,6 +5789,7 @@ def test_create_workflow_template_rest_call_success(request_type):
"managed_cluster": {
"cluster_name": "cluster_name_value",
"config": {
"cluster_tier": 1,
"config_bucket": "config_bucket_value",
"temp_bucket": "temp_bucket_value",
"gce_cluster_config": {
Expand Down Expand Up @@ -6569,6 +6570,7 @@ def test_instantiate_inline_workflow_template_rest_call_success(request_type):
"managed_cluster": {
"cluster_name": "cluster_name_value",
"config": {
"cluster_tier": 1,
"config_bucket": "config_bucket_value",
"temp_bucket": "temp_bucket_value",
"gce_cluster_config": {
Expand Down Expand Up @@ -7075,6 +7077,7 @@ def test_update_workflow_template_rest_call_success(request_type):
"managed_cluster": {
"cluster_name": "cluster_name_value",
"config": {
"cluster_tier": 1,
"config_bucket": "config_bucket_value",
"temp_bucket": "temp_bucket_value",
"gce_cluster_config": {
Expand Down
Loading