DEA-C01 · Question #63
A data engineer needs to use AWS Step Functions to design an orchestration workflow. The workflow must parallel process a large collection of data files and apply a specific transformation to each fil
The correct answer is C. Map state. Map state is designed precisely for the requirement described. It allows you to iterate over a collection of items, processing each item individually. The Map state can automatically manage the iteration and execute the specified transformation on each item in parallel, making it
Question
A data engineer needs to use AWS Step Functions to design an orchestration workflow. The workflow must parallel process a large collection of data files and apply a specific transformation to each file. Which Step Functions state should the data engineer use to meet these requirements?
Options
- AParallel state
- BChoice state
- CMap state
- DWait state
How the community answered
(30 responses)- A3% (1)
- B10% (3)
- C80% (24)
- D7% (2)
Explanation
Map state is designed precisely for the requirement described. It allows you to iterate over a collection of items, processing each item individually. The Map state can automatically manage the iteration and execute the specified transformation on each item in parallel, making it the perfect choice for parallel processing of a large collection of data files.
Topics
Community Discussion
No community discussion yet for this question.