https://kotlinlang.org logo
Title
l

Luiz Aguiar

10/21/2021, 8:55 PM
Hi there! Do you have any recommendations for "scheduling/background jobs" framework other than Quartz? Ideally more kotlin-friendly.
b

Big Chungus

10/21/2021, 9:18 PM
I'm guessing something naive/simple like coroutines with delay wouldn't work for you?
h

hho

10/21/2021, 10:00 PM
l

Luiz Aguiar

10/21/2021, 10:18 PM
@Big Chungus not really… because it needs storage support out of the box like Quartz or JobRun.
b

Big Chungus

10/21/2021, 10:40 PM
I usually just use k8s jobs for scheduling. Much easier to maintain than separate jvm service
But I appreciate that might not be applicable for your case.
c

Carlosb007

10/22/2021, 7:06 AM
I’ve been using this one as a replacement for Quartz which is much simpler: https://github.com/kagkarlsson/db-scheduler
👍 1