I have a lambda function that scrapes a website, and I wish to start using it in a “massive” way (about 250 times in an 8 minute window once a day). The idea is taking a “fire and forget” approach that invokes the lambda 30 times every minute or so
My concern is that probably those 30 lambda invocations will try to access the website with the same IP address and become blocked…
Following this question I could make the lambda redeploy after each invocation, but since I will be having 30 at the same time, that would probably raise problems
If I invoke the same lambda function 30 times at the same time, will those 30 executions share the same IP address?