Is there a good distributed job scheduler for Kotl...
# announcements
m
Is there a good distributed job scheduler for Kotlin (Coroutines)? Maybe even one that can use MongoDB for coordination (or where support can easily be added)? Best one I could find so far is written in Java, based on threads and also a little dated: https://github.com/michaelklishin/quartz-mongodb
n
may i suggest hazelcast? (disclaimer: i work for the company) https://docs.hazelcast.org/docs/4.0/manual/html-single/index.html#executor-service
it’s still java but you shouldn’t care that much anyway
m
That looks way too overblown for a simple job scheduler 😅
n
it’s distributed by nature and it can run embedded (as a simple jar dependency in your app) up to you 🙂
100 Views