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.comResource Pattern
projects/{project}/regions/{region}/clusters/{cluster}References
Chat
Powered by AITalk 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 Documentation
terraform
1resource "google_dataproc_cluster" "main" {2 name = "dp-${var.environment}"3 region = var.region45 cluster_config {6 master_config {7 num_instances = 18 machine_type = "e2-medium"9 }10 worker_config {11 num_instances = 212 machine_type = "e2-medium"13 }14 }15}
Utilities
Utilities to support app deployment or configuration.