Topic 1 Question 290
You work for a company that operates an ecommerce website. You are developing a new integration that will manage all order fulfillment steps after orders are placed. You have created multiple Cloud Functions to process each order. You need to orchestrate the execution of the functions, using the output of each function to determine the flow. You want to minimize the latency of this process. What should you do?
Use Workflows to call the functions, and use callbacks to handle the execution logic.
Use Workflows to call the functions, and use conditional jumps to handle the execution logic.
Use Cloud Composer to call the functions, and use an Apache Airflow HTTP operator to handle the execution logic.
Use Cloud Composer to call the functions, and use an Apache Airflow operator to handle the execution logic.
ユーザの投票
コメント(1)
- 正解だと思う選択肢: B
Workflows is a service in Google Cloud that allows you to orchestrate serverless functions and services in a sequence or in parallel. It is specifically designed for orchestrating tasks like this in a simple and efficient manner. Using conditional jumps within Workflows allows you to dynamically control the flow based on the outputs of the functions. This means you can easily determine which function to call next based on the results of the previous steps.
👍 2anshad6662024/10/11
シャッフルモード