I am wondering what is the best way to configure the synchronization process on Heroku. My application was completely built in Node, and I planned to use node -schedule to specify my schedules.
My question is: should the synchronization process itself trigger events in my cron process and fire them within its own dedicated dyno? Heroku seems to indicate that you must use an employee to handle this. In this case, I wonder how I can get my watch process to tell the employee to start a specific procedure?
I read the Python method for this, and it seems like they just start the process inside the same speaker.
Thanks.
source share