I have created one worker dyno in Heroku app that is supposed to execute cakephp command on its run. See Procfile code below:-
worker: app/Console/cake opportunity
What is the default frequency of this worker dyno execution? I have checked heroku logs that shows the above worker process executed at some intervals as below:-
2016-04-06T11:13:34.557478+00:00 app[worker.1]:
2016-04-06T11:13:34.557497+00:00 app[worker.1]:
2016-04-06T11:13:34.570029+00:00 app[worker.1]: Path: /app/app/
2016-04-06T11:13:34.570041+00:00 app[worker.1]:
2016-04-06T11:13:34.616102+00:00 app[worker.1]: entered shell--
2016-04-06T11:13:35.208536+00:00 heroku[worker.1]: State changed from up to crashed
I need to execute the above worker dyno every minute. Do I need to use scheduler add-on for this in conjunction to the worker?