Topic 1 Question 279
You are developing a flower ordering application. Currently you have three microservices: • Order Service (receives the orders) • Order Fulfillment Service (processes the orders) • Notification Service (notifies the customer when the order is filled)
You need to determine how the services will communicate with each other. You want incoming orders to be processed quickly and you need to collect order information for fulfillment. You also want to make sure orders are not lost between your services and are able to communicate asynchronously. How should the requests be processed?
ユーザの投票
コメント(2)
- 正解だと思う選択肢: D
For efficient and reliable communication in a flower ordering application with microservices, the best approach is "Order request -> Order Service -> Pub/Sub queue -> Order Fulfillment Service -> Firestore Database -> Pub/Sub queue -> Notification Service," ensuring quick processing and asynchronous communication without data loss.
More information can be found at: Google Cloud Documentation: https://cloud.google.com/pubsub/docs/overview
👍 3plutonians1232023/12/13 - 正解だと思う選択肢: D
key to find answer is asynchronous communication. Answer is D
👍 2prasadjblin2023/12/27
シャッフルモード



