I am currently using amazon's elastic beanstalk as my web server. I need to be able to run some cron jobs every minute (so launching machines and shutting them down is not an option).
The solutions i have found for now are:
- run an ec2 machine and run those cron's over there
- use aws ops that is bit complicated to setup + will eventually run an ec2 machine anyways.
both of those solutions seems like an over kill. is there any better solution out there? the perfect solution would be a "Platform as a service" (PaaS) one.
Thanks