Periodic tasks and task queue

Hey guys.

I have a strong Python background, and I’m still new to node.js and Meteor. Is there any task queue packages allowing to run periodic and long-running tasks? I’m looking for something similar to Celery.

Thanks.

I’m not familiar with celery, but you could take a look at percolate:synced-cron

2 Likes

I am having a similar problem.
I am trying to solve this by using Celery for periodic tasks and tasks that require a long processing time.
I am using Celery-Shoot to initiate a task from meteor.
To update data from the tasks back to meteor I am using python-meteor
Good luck