Question-11: Sending out promotional emails is a simple but effective method of getting the word out about your product or service. The purpose of promotional emails is to raise awareness, produce income, or promote client retention and loyalty in order to achieve one of these goals. Your marketing department wants to send out promotional emails as part of an email marketing campaign. Promotional emails are an integral component of any email marketing plan that is successful. The development team's goal is to have as little direct supervision of the business as possible. They anticipate a very broad spectrum of potential reactions from customers, ranging anywhere from 100 to 500,000 click-throughs every day. Following the link will take you to a straightforward website that offers details on the offer and solicits information regarding the user's interests and personal information. Which kind of infrastructure would you suggest we use? (Choose two.)
A. Run the website using Google App Engine, and store user information using Google Cloud Datastore.
B. The website should be served via a cluster of Google Container Engine instances, and the data should be stored on a persistent disc.
C. Make advantage of Google Cloud Bigtable to store user data, and a managed instance group to handle website serving responsibilities.
D. Compute Engine should be used to run a web server using a single virtual machine (VM), and Google Cloud SQL should be used for the back end.
Correct Answer
Get All 340 Questions and Answer for Google Professional Cloud Architect
: 1,3 Explanation:Option 1: Serve the website using Google App Engine, and use Google Cloud Datastore to store user data. Option Three: Use Google Cloud Bigtable to store user data and a managed instance group to serve the website. Option 4 shouldn't be used since it's possible that a single GCE instance wouldn't be able to manage the fluctuating demand. App Engine + Datastore Use GAE to serve the website and Google Datastore to store user data. Both of these services are provided by Google. GCE is an overly complicated approach that requires a specialized operating system. GKE is for applications that are microservices, and Persistent Disk is not a suitable option for relational data storage; GAE is a solution that is both quick and reliable, and all you have to do is write code in order to execute it on a service that is completely managed. In addition, DataStore is an ideal fit since it is designed for the storage of user profiles as key-value pairs. The term Google Container Engine does not exist; instead, the term GKE is used. However, running a Kubernetes cluster might be difficult; in such a scenario, Cloud Run could be a possibility.