I have a python etl project that I was to run on a schedule. I am a bit lost on where to start. I have seen some tutorials using Heroku and AWS Lambda, but these were all single script files. My main script references multiple packages that are all in the same project directory. Am I able to deploy the entire project and have it run the main script on a schedule? If so, what tools/services should I be looking at?
答案 0 :(得分:1)
请参见Lambda Scheduled Events。您可以创建Lambda函数,并指示AWS Lambda定期执行它。您可以指定固定汇率(例如,每小时或15分钟执行一次Lambda函数),也可以指定Cron表达式。