Exam MCD - Level 1 All QuestionsBrowse all questions from this exam
Question 19

A Scatter-Gather processes a number of separate HTTP requests. Each request returns a Mule event with a JSON payload.

What is the final output of the Scatter-Gather?

    Correct Answer: B

    The final output of the Scatter-Gather is an Array containing all Mule event Objects. This component processes multiple routes in parallel and then combines the results into an array of Mule events, which is then passed to the next component in the flow.

Discussion
calazansOption: A

https://docs.mulesoft.com/mule-runtime/4.4/scatter-gather-concept After all processing routes have finished execution, the Scatter-Gather component creates a new Mule event that combines all resulting Mule events from each route, and then passes the new Mule event to the next component in the flow.

farhansiddiqui8662Option: B

B.An Array containing all Mule event Objects.

sirious09Option: A

"When all routes are completed processing the results are combined to an object of objects. This object will contain keys that represent the index of the route in values which contain the returned mule message."

AquawormOption: A

As per calazans responce