Lambda : Is any Batch processing scheduler available?
问题 Problem : Fetch 2000 items from Dynamo DB and process(Create a POST req from 100 items) it batch by batch (Batch size = 100). Question : Is there anyway that I can achieve it from any configuration in AWS. PS : I've configured a cron schedule to run my Lambda function. I'm using Java. I've made multi-threaded application which synchronously does so, but this eventually increases my computation time drastically. 回答1: I have the same problem and thinking of solving it in following way. Please