Any frameworks or library allow me to run large amount of concurrent jobs schedully?

Posted by Yoga on Programmers See other posts from Programmers or by Yoga
Published on 2014-06-02T06:09:14Z Indexed on 2014/06/02 9:49 UTC
Read the original article Hit count: 238

Are there any high level programming frameworks that allow me to run large amount of concurrent jobs schedully?

e.g. I have 100K of urls need to check their uptime every 5 minutes

Definitely I can write a program to handle this, but then I need to handle concurrency, queuing, error handling, system throttling, job distribution etc.

Will there be a framework that I only focus on a particular job (i.e. the ping task) and the system will take care of the scaling and error handling for me?

I am open to any language.

© Programmers or respective owner

Related posts about architecture

Related posts about concurrency