We want to use AWS step function to processing a large amount of data from a CSV file but we are not sure if this is the best choice.
Our use case is below : - We upload a CSV with a large amount of lines (Like 50K) and for each line we process a small traitements (Each traitement is processed by a lambda function). At this time, we think the best choice is to insert each line from our CSV in a DynamoDB and for each line launch our lambda functions.
What do you think of this ?