Exam Associate-Cloud-Engineer Topic 4 Question 143 Discussion
Actual exam question for Google's Associate-Cloud-Engineer exam
Question #: 143
Topic #: 4
Question #: 143
Topic #: 4
You are planning to move your company's website and a specific asynchronous background job to Google Cloud Your website contains only static HTML content The background job is started through an HTTP endpoint and generates monthly invoices for your customers. Your website needs to be available in multiple geographic locations and requires autoscaling. You want to have no costs when your workloads are not In use and follow recommended practices. What should you do?
Suggested Answer: C Vote an answer
The critical constraint for both the website and the background job is the requirement for autoscaling and no costs when not in use (scale to zero). Both workloads are suitable for containerization and HTTP invocation.
* Cloud Run is the single best platform for both use cases under these constraints. It is serverless, fully managed, and natively supports scaling to zero when a containerized service is not receiving requests, making it the most cost-effective option for sporadic workloads.
* The static website can run in a simple web server container on Cloud Run. The HTTP-triggered background job is a perfect fit for a Cloud Run service that runs, performs its work (invoice generation), and then scales down to zero.
Reference: Google Cloud Documentation - Cloud Run (Overview):
"Because Cloud Run is serverless... It scales up or down automatically, including scaling to zero to minimize your cost." Reference: Google Cloud Documentation - Cloud Run (Use cases):
"Cloud Run is suitable for... background processing (jobs, batch processing, and other non-HTTP services), and services that require scaling to zero."
* Cloud Run is the single best platform for both use cases under these constraints. It is serverless, fully managed, and natively supports scaling to zero when a containerized service is not receiving requests, making it the most cost-effective option for sporadic workloads.
* The static website can run in a simple web server container on Cloud Run. The HTTP-triggered background job is a perfect fit for a Cloud Run service that runs, performs its work (invoice generation), and then scales down to zero.
Reference: Google Cloud Documentation - Cloud Run (Overview):
"Because Cloud Run is serverless... It scales up or down automatically, including scaling to zero to minimize your cost." Reference: Google Cloud Documentation - Cloud Run (Use cases):
"Cloud Run is suitable for... background processing (jobs, batch processing, and other non-HTTP services), and services that require scaling to zero."
by Tim at Dec 22, 2025, 03:32 PM
0
0
0
10
Comments
Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.
Report Comment
Commenting
You can sign-up / login (it's free).