Ultimate access to all questions.
You are tasked with designing a scalable data pipeline to facilitate data exchange between job generators and job runners. The solution must be adaptable to include new applications without affecting the performance of existing ones. Which approach would best meet these requirements?
Explanation:
The correct answer is B: Implement a Cloud Pub/Sub topic for job publishing and subscriptions for job execution. Cloud Pub/Sub is designed for asynchronous messaging between applications, making it an ideal choice for scalable and flexible data pipelines. It allows for the decoupling of job generators and runners, facilitating easy scalability and the integration of new applications without impacting existing ones.
Why the other options are less suitable: