dp

Dataproc

Analytics & IoTGCP
General

General information about the service.

Description

Google Cloud Dataproc is a fully managed service for running Apache Spark and Apache Hadoop clusters.

Service ID

dataproc.googleapis.com

Resource Pattern

projects/{project}/regions/{region}/clusters/{cluster}

Chat

Powered by AI

Talk to this service to learn more about it.

Suggested questions:

Naming

The conventions, rules, and restrictions for naming this service.

Naming Convention

dp-{workload}-{environment}

Length

1-63

Valid Characters

Lowercase letters, numbers, hyphens

Scope

project

Code

Deploy your infrastructure as code using your preferred tooling.

Official DocumentationTerraform
terraform
1resource "google_dataproc_cluster" "main" {
2 name = "dp-${var.environment}"
3 region = var.region
4
5 cluster_config {
6 master_config {
7 num_instances = 1
8 machine_type = "e2-medium"
9 }
10 worker_config {
11 num_instances = 2
12 machine_type = "e2-medium"
13 }
14 }
15}
Utilities

Utilities to support app deployment or configuration.