How to execute scheduled SQL script on Amazon Redshift?
I have series of ~10 queries to be executed every hour automatically in Redshift (maybe report success/failure). Most queries are aggregation on my tables. I have tried using AWS Lambda with CloudWatch Events , but Lambda functions only survive for 5 minutes max and my queries can take up to 25 minutes. systemjack It's kind of strange that AWS doesn't provide a simple distributed cron style service. It would be useful for so many things. There is SWF , but the timing/scheduling aspect is left up to the user. You could use Lambda/Cloudwatch to trigger SWF events. That's a lot of overhead to get