Skip to main content

Professional Cloud Database Engineer (PCDE) Certification Lab Map

The Professional Cloud Database Engineer certification validates your ability to design, manage, migrate, and deploy scalable, highly available database solutions on Google Cloud. The RAD foundation modules — Services_GCP, App_CloudRun, App_GKE, and App_Common — serve as a live lab for the bulk of this exam: Services_GCP provisions Cloud SQL (PostgreSQL and MySQL), AlloyDB, Firestore Enterprise, and Memorystore Redis behind a private VPC, while App_CloudRun and App_GKE demonstrate how real applications connect, authenticate, back up, monitor, and rotate credentials against those databases — all driven by infrastructure-as-code, which is itself the exam's "automate database instance provisioning" objective made concrete.

Abbreviation note: in this repository PDE refers to the Professional Cloud DevOps Engineer guides. This certification — Professional Cloud Database Engineer — uses the abbreviation PCDE throughout.

How to use this guide

  • Deploy one of the profiles below through your deployment portal, then work through the matching section guide while the infrastructure is live.
  • Each section guide pairs a portal change with what to observe in the GCP console and a real gcloud/psql/kubectl command.
  • Use the coverage legend to know which exam topics must be studied outside the platform — Spanner, Bigtable, BigQuery, and Database Migration Service are not implemented by these modules, and the section guides say so plainly.
  • Destroy or scale down expensive profiles (REGIONAL Cloud SQL, AlloyDB) when you finish a study session.

Coverage legend

SymbolMeaning
Fully demonstrated — deploy it, see it, modify it in the RAD platform
🟡Partially demonstrated — the modules touch the concept; supplement with docs
📘Concept-only — not implemented by the modules; study pointers provided

Deployment profiles

Profile: relational-baseline

Purpose: The minimum-cost lab — a zonal private-IP PostgreSQL instance plus a Cloud Run application that connects to it through the Cloud SQL connector volume. Modules: Services_GCP + App_CloudRun.

VariableValue
create_postgrestrue (default)
postgres_database_availability_typeZONAL (default)
postgres_tierdb-custom-1-3840 (default)
database_type (App_CloudRun)POSTGRES (default)
enable_cloudsql_volume (App_CloudRun)true (default)

Estimated incremental cost: low — one 1-vCPU Cloud SQL Enterprise instance with a 10 GB PD_SSD disk is the dominant cost.

Profile: ha-production

Purpose: Section 1.2 and Section 4 — REGIONAL high availability, a cross-region read replica, CMEK, IAM database authentication, and database alerting. Modules: Services_GCP (redeploy/update the baseline).

VariableValue
availability_regions["us-central1", "us-east1"]
subnet_cidr_rangeone CIDR per region, e.g. ["10.0.0.0/24", "10.0.1.0/24"]
postgres_database_availability_typeREGIONAL
create_postgres_read_replicatrue
postgres_read_replica_count1
enable_cloudsql_iam_authtrue
enable_cmektrue
configure_email_notificationtrue
notification_alert_emails["you@example.com"]

Estimated incremental cost: moderate-to-high — REGIONAL roughly doubles the primary's instance cost, and each read replica bills like another primary-sized instance.

Profile: multi-engine

Purpose: Section 1.4 and Section 2 — run PostgreSQL, MySQL, Memorystore Redis, and Firestore Enterprise (MongoDB-compatible) side by side to compare engines. Modules: Services_GCP.

VariableValue
create_postgrestrue (default)
create_mysqltrue
create_redistrue
redis_tierSTANDARD_HA
redis_persistence_modeRDB
create_firestoretrue

Estimated incremental cost: moderate — a second Cloud SQL instance plus a STANDARD_HA Redis instance (~2× BASIC); Firestore Enterprise bills per operation and is negligible at lab scale.

Profile: alloydb-ai

Purpose: Sections 1.1, 1.4, and 2.4 — an AlloyDB cluster with a primary and a horizontally scalable read pool, for analytics/vector-workload study. Modules: Services_GCP.

VariableValue
enable_alloydbtrue
alloydb_cpu_count2 (default; allowed: 2, 4, 8, 16, 32, 64)
enable_alloydb_read_pooltrue
alloydb_read_pool_node_count1 (default; 1–20)

Estimated incremental cost: high — AlloyDB has no shared-core tier; the 2-vCPU primary plus each read-pool node is the dominant cost. Tear down after each session.

Profile: app-dataops

Purpose: Sections 2.3, 2.5, and 3.1 — scheduled database exports, one-time backup imports, automated password rotation, and database users managed by initialization jobs. Modules: App_CloudRun (or App_GKE) on top of relational-baseline.

VariableValue
database_typePOSTGRES (default)
backup_schedule"0 2 * * *" (default)
backup_retention_days7 (default)
enable_backup_importtrue (after staging a file; see Section 3 guide)
backup_source / backup_file / backup_formatgcs / backup.sql / sql
enable_auto_password_rotationtrue
secret_rotation_period"2592000s" (default, 30 days)

Estimated incremental cost: low — Cloud Run jobs, Cloud Scheduler, and Secret Manager versions cost cents; the backup GCS bucket is lifecycle-pruned.

Section 1: Design innovative, scalable, and highly available cloud database solutions (~32% of the exam)

The heaviest section. Services_GCP is the star: every design decision the exam tests — machine tier, zonal vs regional availability, private connectivity, encryption, engine selection — is a variable you can flip and observe.

Exam topicCoverageWhere in RADGuide
1.1 Database capacity and usage planningpostgres_tier, alloydb_cpu_count, redis_memory_size_gb, disk autoresizeSection 1 guide
1.2 HA and DR optionspostgres_database_availability_type, create_postgres_read_replica, PITR/backup settings, sql_maintenance_window_day/_hour + sql_maintenance_update_trackSection 1 guide
1.3 Application connectivity, encryption, auditingprivate IP via PSA, ssl_mode, enable_cmek, enable_cloudsql_volume, Auth Proxy sidecar (App_GKE), enable_audit_logging (session poolers 📘)Section 1 guide
1.4 Evaluating database solutions (SQL/NoSQL/vector, managed vs unmanaged, gen-AI)🟡Cloud SQL vs AlloyDB vs Firestore Enterprise (MongoDB compat) vs Redis vs self-managed Redis VM; Spanner/Bigtable/BigQuery 📘Section 1 guide

Section 2: Manage a solution that can span multiple database technologies (~25% of the exam)

Day-2 operations: users and IAM, monitoring, backup/recovery, scaling, and automation. The application modules (App_CloudRun/App_GKE) carry most of this section — db-init jobs, export schedulers, rotation pipelines, and alert policies.

Exam topicCoverageWhere in RADGuide
2.1 Connectivity and access management (IAM, database users)enable_cloudsql_iam_auth, roles/cloudsql.instanceUser grants, the db-init user-creation script, per-secret IAMSection 2 guide
2.2 Monitoring and troubleshootingCloud SQL CPU/memory/disk alert policies (Services_GCP), alert_policies + uptime_check_config in App modules, enable_query_insights (Services_GCP); slow-query analysis 📘Section 2 guide
2.3 Backup and recovery (RTO/RPO/PITR, retention)managed backup configuration, PITR + 7-day log retention, export/import jobs, backup_retention_daysSection 2 guide
2.4 Cost and performance optimizationscale up (postgres_tier, alloydb_cpu_count) vs out (postgres_read_replica_count, alloydb_read_pool_node_count), postgres_database_flags; query optimization 📘Section 2 guide
2.5 Automating common database tasksCloud Scheduler export job, db-export CronJob (GKE), the password-rotation pipeline, scheduled maintenance via sql_maintenance_window_*; managed upgrades 📘Section 2 guide

Section 3: Migrate data solutions (~23% of the exam)

The modules implement the export/import (extended-outage) migration path end to end, but Database Migration Service, Datastream, and continuous replication from external sources are concept-only — budget real study time here.

Exam topicCoverageWhere in RADGuide
3.1 Design and implement data migration and replication🟡enable_backup_import + backup_source (gcs/gdrive) import jobs, scheduled logical export jobs, enable_custom_sql_scripts; DMS / Datastream / zero-downtime migration / reverse replication 📘Section 3 guide

Section 4: Deploy scalable and highly available databases in Google Cloud (~20% of the exam)

This section is the repository's home turf: "automate database instance provisioning" is literally what these infrastructure-as-code modules do. Deploy the ha-production profile and practice failover, replica scaling, and HA monitoring against real instances.

Exam topicCoverageWhere in RADGuide
4.1 Implement scalable and highly available databases (provision HA, test HA/DR, read replicas, automated provisioning, monitoring)postgres_database_availability_type = REGIONAL, postgres_read_replica_count, gcloud sql instances failover, the infrastructure-as-code modules themselves, the Cloud SQL alert policies (cross-region promotion workflow 🟡)Section 4 guide