开发者

Does the java world have a task queue similar to celery?

开发者 https://www.devze.com 2023-02-23 10:43 出处:网络
Seeing as java is so mature, I\'m hoping someone can tell me if java has something similar to http://开发者_Go百科celeryproject.org/

Seeing as java is so mature, I'm hoping someone can tell me if java has something similar to http://开发者_Go百科celeryproject.org/

It is a distributed task queue.

I'm writing to rabbitmq, and want to know what options there are other than celery.


Seems Octobot would be something you should look into. Haven't used it though.


Does using Celery through Jython work for you? Jython is cited as working with Celery so you might be able to use the best of both worlds there.


Quartz Scheduler has support for clustering - you can run Quartz on multiple machines as a single entity. However it relies on database persistence for receiving new jobs, not sure how easy or hard it is to integrate with RabbitMQ - although you could always write a small glue app to pick up messages from the RabbitMQ and create new Quartz jobs from it.

0

精彩评论

暂无评论...
验证码 换一张
取 消