Professional Cloud Architect Exam QuestionsBrowse all questions from this exam

Professional Cloud Architect Exam - Question 168


Your marketing department wants to send out a promotional email campaign. The development team wants to minimize direct operation management. They project a wide range of possible customer responses, from 100 to 500,000 click-through per day. The link leads to a simple website that explains the promotion and collects user information and preferences.

Which infrastructure should you recommend? (Choose two.)

Show Answer
Correct Answer: AC

AC

Reference:

https://cloud.google.com/storage-options/

Discussion

12 comments
Sign in to comment
rishab86Options: AC
Jun 3, 2021

A & C seems to be the correct answer.

victory108Options: AC
Jul 3, 2021

A. Use Google App Engine to serve the website and Google Cloud Datastore to store user data. C. Use a managed instance group to serve the website and Google Cloud Bigtable to store user data.

J19G
Oct 13, 2021

Why not D?

Bert_77
Dec 9, 2021

Because a single GCE instance might not be able to handle the unpredictable load

omermahgoubOptions: AC
Dec 26, 2022

A: Google App Engine is a fully managed platform for building and running web applications and APIs. It can automatically scale to meet high traffic demands, making it a good choice for serving the website for the promotional email campaign. Google Cloud Datastore can also scale automatically to meet high traffic demands, making it a good choice for storing user data. C: A managed instance group are managed as a single entity and can automatically scale up or down based on demand. This makes it a good choice for serving the website for the promotional email campaign. Google Cloud Bigtable is a fully managed, high-performance NoSQL database that can store and serve large amounts of structured data with low latency. It is designed to scale horizontally and can handle high traffic demands, making it a good choice for storing user data.

omermahgoub
Dec 26, 2022

B, using a Google Container Engine cluster to serve the website and store data to persistent disk, could be a valid solution as well. However, persistent disks may not be able to scale horizontally to meet high traffic demands, which could impact the performance of the website. D, using a single Compute Engine VM to host a web server, backed by Google Cloud SQL, would not be a good choice for this scenario. A single VM would not be able to scale to meet the wide range of possible traffic levels for the promotional email campaign, and Google Cloud SQL may not be able to scale horizontally to meet high traffic demands.

alan9999Options: AB
Jun 13, 2021

A & B with less operations management. Also Containers and App Engine as the clicks varies.

Ak_2020
Jun 14, 2021

But user data storing in persistent disks? Not correct to me. Seems A & C

poseidon24
Jul 25, 2021

"Google Container Engine" does not exist, only "GKE", but operating a Kubernetes cluster is not easy, in that case, an option could be Cloud Run.

AzureDP900Options: AC
Oct 15, 2022

A and C is right choice, D is saying single VM

zerg0Options: AC
Feb 3, 2023

Cloud Data store and Big Table are the only solutions that can handle 500000 clicks

NircaOptions: AC
Sep 18, 2022

AC (100%) !!!

MaxNRGOptions: AC
Oct 23, 2021

A only, choose two - App Engine + Datastore Use GAE to serve the website and Google Datastore to store user data. GCE – is too complex solution with specific OS to maintain. GKE – is for microservices apps, and Persistent Disk is not good solution for relational data storage; GAE – is fast and reliable solution, you write just code and run it on fully managed service. DataStore also matches perfectly since intended for storing user profiles, key-value pairs.

vincy2202Options: AC
Dec 15, 2021

AC is the correct answer.

NircaOptions: AC
Sep 17, 2022

A & C seems to be the correct answer.

anil23Options: BC
Aug 12, 2023

Why not B, GKE si best fit and preferred over MI

SephethusOptions: AC
Jun 20, 2024

Both bigtable and datastore seem like overkill solutions but A&C are the only options that make sense here. In the real world use BigQuery and either App Engine or Cloud Run.