Courseiva

Google ACE Practice Question: Ensuring Successful Operation of a Cloud Solution

An application is experiencing intermittent high latency. Using Cloud Trace, an engineer identifies that the bottleneck is a Pub/Sub subscription with a large backlog. Which action would MOST directly help reduce the backlog?

Answer choices

Why each option matters

Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.

Correct answer & explanation

Increase the number of subscribers

Increasing the number of subscribers (e.g., scaling out the subscriber application) will increase the processing rate and reduce backlog. Increasing the retention duration keeps messages longer, not reducing backlog. The ack deadline and message size are not the primary causes of backlog.

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • Increase the ack deadline

    Why it's wrong here

    Increasing the ack deadline gives subscribers more time to acknowledge a message before it is redelivered. While this can reduce duplicate processing, it does not reduce the end-to-end latency caused by a growing backlog; in fact, it can make latency worse by delaying redelivery of messages that a stuck subscriber failed to process. The root cause of intermittent high latency is usually insufficient processing capacity, not a too-short acknowledgement window.

  • Increase the maximum message size

    Why it's wrong here

    Increasing the maximum message size allows larger payloads to be published, but it does nothing to speed up delivery or processing of existing messages. The latency spike is unrelated to the size of individual messages unless the payloads are so large that they saturate the network or memory—an uncommon scenario. This setting has no effect on subscriber throughput or backlog clearance, so it will not resolve intermittent high latency.

  • Increase the message retention duration

    Why it's wrong here

    Extending message retention duration simply keeps undelivered messages in the topic or subscription for a longer period before they expire. It does not accelerate delivery or reduce the time a message spends waiting in the backlog. Since the problem is latency—not data loss or retention policy—increasing retention only delays when messages are discarded, without improving subscriber performance or reducing queue depth.

  • Increase the number of subscribers

    Why this is correct

    Increasing the number of subscribers (i.e., scaling out the subscriber fleet) directly raises the aggregate processing throughput of the subscription. Because the intermittent high latency is likely due to a backlog of messages accumulating faster than the current subscribers can drain, adding more subscribers allows messages to be pulled and processed in parallel, reducing the queue depth and lowering end-to-end latency. This is the correct scaling action for a latency problem caused by insufficient compute, assuming the subscribers are stateless and can process messages independently.

About these practice questions

Courseiva writes every ACE question from scratch — 769 in total, each with an explanation and a wrong-answer breakdown. None are copied from real exams or dumps. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

JA

Written by Johnson Ajibi, MSc IT Security

Senior Network & Security Engineer · founder of Courseiva

This ACE practice question is part of Courseiva's free Google Cloud certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the ACE exam.