Show HN: Clockwork- Distributed, Scalable Job Scheduler
1–7 of 7 posts
Re: Show HN: Clockwork- Distributed, Scalable Job Scheduler
#2Thanks for checking, would love to discuss
Re: Show HN: Clockwork- Distributed, Scalable Job Scheduler
#3Clockwork-Scheduler is a general-purpose distributed job scheduler. It offers you horizontally scalable scheduler with at least once delivery guarantees. It is fault-tolerant, persistent, easy to deploy and maintain. Thanks for checking, would love to discuss
Re: Show HN: Clockwork- Distributed, Scalable Job Scheduler
#4Clockwork-Scheduler is a general-purpose distributed job scheduler. It offers you horizontally scalable scheduler with at least once delivery guarantees. It is fault-tolerant, persistent, easy to deploy and maintain. Thanks for checking, would love to discuss
Thanks for posting, Loved the graphics and layout. They made for enjoyable reading. However maybe you could add or share the motivation for creating the project? Were their shortcomings of existing job scheduler solutions that you evaluated? Is there an edge case that you have that existing solutions didn't address etc?
I will just point to major shortcomings here of quartz (the go to job scheduler) scaling beyond one node is difficult because
* as it uses db locks to adding more nodes does not scale linearly.
* we can add custom partitioning (consistent hashing) on top of multi node multi db setup, but maintaining such setup would be very difficult eg adding and removing nodes, handling node failure (will have to move data around from its db to let other node execute those schedules).
Re: Show HN: Clockwork- Distributed, Scalable Job Scheduler
#5Clockwork-Scheduler is a general-purpose distributed job scheduler. It offers you horizontally scalable scheduler with at least once delivery guarantees. It is fault-tolerant, persistent, easy to deploy and maintain. Thanks for checking, would love to discuss
Thanks for posting, Loved the graphics and layout. They made for enjoyable reading. However maybe you could add or share the motivation for creating the project? Were their shortcomings of existing job scheduler solutions that you evaluated? Is there an edge case that you have that existing solutions didn't address etc?
While there are some existing solutions like BigBen from Walmart, it might be possible that they were overkill for the task required.
Re: Show HN: Clockwork- Distributed, Scalable Job Scheduler
#6Above has a limit. In general, more partitions in a Kafka cluster leads to higher throughput. However, one does have to be aware of the potential impact of having too many partitions in total or per broker on things like availability and latency.
How do we handle too many kafka partitions?
Re: Show HN: Clockwork- Distributed, Scalable Job Scheduler
#7Great post! In the last part of your blog you've mentioned: "To scale out we can increase number of partition in kafka topic and add more clockwork nodes." Above has a limit. In general, more partitions in a Kafka cluster leads to higher throughput. However, one does have to be aware of the potential impact of having too many partitions in total or per broker on things like availability and latency. How do we handle…