🇺🇸 Google Cloud Professional Cloud Architect · subject
Google Cloud Professional Cloud Architect Designing and Planning a Cloud Solution Architecture Syllabus
Every chapter and topic of Designing and Planning a Cloud Solution Architecture examined in Google Cloud Professional Cloud Architect — 5 chapters, 20 topics and 21 sub-topics, plus 54 flashcards written against it.
Designing and Planning a Cloud Solution Architecture syllabus — full chapter and topic list
Expand any chapter to see its topics and sub-topics. This is the whole examinable outline for Designing and Planning a Cloud Solution Architecture in Google Cloud Professional Cloud Architect, not a summary of it.
-
Translating Business and Technical Requirements
4 topics- Defining business use cases and success criteria
- Mapping stakeholder goals to measurable KPIs
- Cost optimization vs. performance trade-offs
- Aligning solutions to business strategy
- Capturing technical and functional requirements
- Latency, throughput, and capacity targets
- Integration with existing systems and data
- Regulatory, compliance, and data sovereignty constraints
- HIPAA, PCI-DSS, GDPR considerations
- Data residency and regional placement
- Managing customer success and decision frameworks
- Defining business use cases and success criteria
-
Designing for High Availability and Resilience
4 topics- Availability tiers and SLA/SLO/SLI design
- Computing composite SLAs across services
- Error budgets and reliability targets
- Multi-zone and multi-region architectures
- Failover, redundancy, and graceful degradation
- Disaster recovery patterns (RTO/RPO)
- Backup and restore
- Warm standby and hot multi-region
- Availability tiers and SLA/SLO/SLI design
-
Network, Storage, and Compute Resource Design
4 topics- Selecting compute platforms for workloads
- Compute Engine vs. GKE vs. Cloud Run vs. App Engine
- Spot/preemptible and committed use planning
- Choosing storage and database services
- Object, block, and file storage selection
- Relational vs. NoSQL vs. analytical stores
- Network topology and connectivity design
- Capacity planning and quotas
- Selecting compute platforms for workloads
-
Migration Planning
4 topics- Workload assessment and discovery
- Application dependency mapping
- Total cost of ownership analysis
- Migration strategies (rehost, replatform, refactor)
- Data migration approaches
- Storage Transfer Service and Transfer Appliance
- Database Migration Service
- Validation, cutover, and rollback planning
- Workload assessment and discovery
-
Cost Optimization and Future Improvement
4 topics- Pricing models and cost estimation
- Sustained and committed use discounts
- Using the Pricing Calculator
- Right-sizing and resource efficiency
- Designing for elasticity and evolution
- Advising on continuous improvement roadmaps
- Pricing models and cost estimation
Designing and Planning a Cloud Solution Architecture flashcards for Google Cloud Professional Cloud Architect
19 of 54 cards from the Designing and Planning a Cloud Solution Architecture deck — real questions with worked answers.
In requirements gathering, what distinguishes a business use case from technical requirements?
A business use case describes the desired business outcome and value (the 'why' and 'what'), while technical requirements specify the system capabilities needed to achieve it (the 'how'). Use cases drive prioritization; technical requirements drive design.
What makes a project's success criteria effective, and what framework is commonly used?
Effective success criteria are specific, measurable, and tied to business outcomes (e.g., reduce checkout latency to <200ms). They are often expressed as SMART goals (Specific, Measurable, Achievable, Relevant, Time-bound) and mapped to KPIs.
What is the difference between functional and non-functional requirements?
Functional requirements define what the system does (features, behaviors, inputs/outputs). Non-functional requirements define how the system performs (availability, latency, scalability, security, compliance, durability).
What is data sovereignty and how does it constrain cloud architecture?
Data sovereignty is the principle that data is subject to the laws of the country where it is physically stored. It constrains architecture by requiring data residency in specific regions, dictating where compute and storage may be placed (e.g., EU data staying in EU regions).
Name three major regulatory/compliance regimes a cloud architect must design around and their domains.
GDPR (EU personal data privacy), HIPAA (US healthcare PHI), and PCI DSS (payment card data). Others include SOX (financial reporting), FedRAMP (US government), and CCPA (California privacy).
In Google Cloud, what is the difference between data residency and data location controls like Org Policy resource location restriction?
Data residency is the requirement that data stay in a jurisdiction. The Org Policy 'resource location restriction' constraint enforces it technically by limiting which regions/multi-regions resources can be created in, helping meet sovereignty obligations.
Define SLI, SLO, and SLA and how they relate.
SLI (Service Level Indicator) is a measured metric (e.g., % of successful requests). SLO (Service Level Objective) is the internal target for that SLI (e.g., 99.9% success). SLA (Service Level Agreement) is the external contract with consequences (e.g., credits) if the objective is missed. Typically SLO is stricter than SLA.
How do you compute allowed downtime per month for a 99.9% availability SLO?
Downtime = (1 - 0.999) x 30 days. (1 - 0.999) = 0.001; 0.001 x 30 x 24 x 60 min = 43.2 minutes per month (about 8.76 hours per year).
What is an error budget and how is it derived from an SLO?
An error budget is the allowable amount of unreliability: 100% minus the SLO target. For a 99.9% SLO, the error budget is 0.1% of requests/time. Teams can 'spend' it on releases and risk; when exhausted, they freeze risky changes.
What annual downtime corresponds to availability of 99.99% (four nines)?
About 52.6 minutes per year (0.0001 x 365 x 24 x 60 ≈ 52.56 minutes), or roughly 4.38 minutes per month.
In Google Cloud, what is the difference between a zone and a region?
A region is a specific geographic location (e.g., us-central1) containing multiple isolated zones. A zone is an isolated deployment area within a region (e.g., us-central1-a) with its own power/network failure domain. Zones in a region have low-latency interconnects.
What availability benefit does a multi-zone (regional) deployment provide versus a single zone?
Multi-zone deployment protects against zone-level failures (power, hardware, network in one zone) by distributing instances across zones in a region, raising availability. A single-zone deployment fails entirely if that zone goes down.
When should you choose a multi-region architecture over multi-zone?
Choose multi-region when you need protection from region-wide outages, very high availability SLOs (e.g., >99.99%), disaster recovery across geographies, or low latency for globally distributed users. It costs more and adds cross-region latency/replication complexity.
What is graceful degradation in system design?
Graceful degradation is designing a system to continue providing reduced but acceptable functionality when components fail, instead of failing completely (e.g., serving cached/read-only data, disabling non-critical features) to preserve core user experience.
Define redundancy and the principle of eliminating single points of failure (SPOF).
Redundancy is duplicating critical components so a failure of one does not cause outage. Eliminating SPOFs means ensuring no single component's failure can bring down the system, achieved via N+1/N+2 redundancy across independent failure domains.
What is the difference between active-active and active-passive failover?
Active-active runs multiple instances serving traffic simultaneously (load shared, instant failover, higher utilization). Active-passive keeps a standby that only takes over when the primary fails (simpler, but idle capacity and some failover delay).
Define RTO and RPO in disaster recovery.
RTO (Recovery Time Objective) is the maximum acceptable time to restore service after a disaster. RPO (Recovery Point Objective) is the maximum acceptable amount of data loss measured in time (how far back the last usable backup must be).
Name the four common DR patterns ordered from cheapest/slowest to most expensive/fastest.
1) Backup and restore (highest RTO/RPO, cheapest), 2) Pilot light, 3) Warm standby, 4) Hot standby / multi-site active-active (near-zero RTO/RPO, most expensive).
What does a 'pilot light' DR strategy involve?
Pilot light keeps a minimal core of the system (e.g., replicated database, base configuration/images) always running in the recovery site. On disaster, the rest of the infrastructure is rapidly provisioned and scaled up around that core.
See more Designing and Planning a Cloud Solution Architecture flashcards →
Planning Designing and Planning a Cloud Solution Architecture for Google Cloud Professional Cloud Architect
Designing and Planning a Cloud Solution Architecture is about 19% of the Google Cloud Professional Cloud Architect syllabus by topic count — 20 of 108 topics, spread over 5 chapters. At roughly 45 minutes per topic plus 12 minutes per sub-topic, a first pass runs to about 20 hours.
The heaviest chapters are Translating Business and Technical Requirements (4 topics), Designing for High Availability and Resilience (4 topics), Network, Storage, and Compute Resource Design (4 topics) . Front-load those while your energy is high; the short chapters are better revision filler later.
Work top-down: read the chapter, then tick topics off individually rather than marking the whole chapter done. Sub-topics are where silent gaps hide.
Designing and Planning a Cloud Solution Architecture (Google Cloud Professional Cloud Architect) FAQ
What is in the Google Cloud Professional Cloud Architect Designing and Planning a Cloud Solution Architecture syllabus?
Designing and Planning a Cloud Solution Architecture is split into 5 chapters — Translating Business and Technical Requirements, Designing for High Availability and Resilience, Network, Storage, and Compute Resource Design, Migration Planning and Cost Optimization and Future Improvement, containing 20 topics and 21 sub-topics in total.
How is Designing and Planning a Cloud Solution Architecture structured in the Google Cloud Professional Cloud Architect syllabus?
5 chapters. Designing and Planning a Cloud Solution Architecture accounts for about 19% of the topics in the whole Google Cloud Professional Cloud Architect syllabus (20 of 108).
How long should I spend on Designing and Planning a Cloud Solution Architecture for Google Cloud Professional Cloud Architect?
Budget around 20 hours for a first pass through Designing and Planning a Cloud Solution Architecture — about 45 minutes per topic plus 12 minutes per sub-topic across its 20 topics. Add revision cycles on top.
Are there flashcards for Google Cloud Professional Cloud Architect Designing and Planning a Cloud Solution Architecture?
Yes — a 54-card Designing and Planning a Cloud Solution Architecture deck. Sample cards are printed on this page, and the full deck is free in the Examius app with spaced repetition scheduling.