I am writing a scraping app which is running on Lambda. I want to combine Scrapy with Splash, but I am not sure that can Splash run on lambda.
It depends on how you are trying to install Splash
.
docker
image, then take a look at Elastic container service. Lambda is not ideal for running containerized app.AWS Lambda
supports Python
, this should not be problem, as long as it doesn't require any other dependency. Also consider the starting time for your Splash
server. Lambda allocates instances on the fly, So it might take time to start your application (AWS lambda
cold start).