Can someone give me direction how to setup a cron job on EngineYard that checks the database every x minutes and performs a task on them?

Most basically, I'm not sure how to have the script access the database.

link|improve this question

58% accept rate
feedback

2 Answers

up vote 2 down vote accepted

One way to do this would be to first create a rake task for your application. With a rake task you automatically have access to your environment database and code structure.

Then you can schedule the task as a cron job in the Engine Yard Admin page. You find it in Dashboard > More Options > Crontabs

The command to execute a rake task is like this:

cd /data/YourAppName/current && RAILS_ENV=production rake namespace:task
link|improve this answer
feedback

Assuming you're on AppCloud, we fully support cron tasks via the UI.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.