Various ways to implement a daemon that pings remote hosts.
images | Remove executable file permissions. | 2019-07-05 20:09:23 |
---|---|---|
LICENSE.txt | first commit. | 2019-07-05 20:08:07 |
README.md | Update the README.md with better links to images. | 2019-07-05 20:33:19 |
long_lived_looping_workers.py | first commit. | 2019-07-05 20:08:07 |
long_lived_worker_queue.py | first commit. | 2019-07-05 20:08:07 |
short_lived_workers.py | first commit. | 2019-07-05 20:08:07 |
These are different approaches to how one might implement a daemon to repeatedly ping multiple hosts to see if the network is up.
This is the most naive implementation. For each ping host, the main process thread pings them one at a time, and prints any changes.
It's so simple that I'm not going to provide a sample source file, but for the others below, I will.
Really simple code.
Since the pings are serialized, one long timeout from one host could affect detecting a problem at another host.
Raymond Hettinger's PyBay 2018 Keynote uses the queue module to send data between threads, so I thought I'd make a version of the pinger that did the same.
See the source: long_lived_worker_queue.py
Multi-threaded ping calls won't block each other.
The ping tasks read from, and write to a shared dictionary. (Reading and updating the last status.)
How about we don't keep the workers around, and only spawn them when there's something to do? That way, we won't waste memory when there's nothing going on.
See the source: short_lived_workers.py
The worker tasks aren't in memory if they're not doing anything. So usually a smaller memory profile.
The ping tasks still read from, and write to a shared dictionary. (Reading and updating the last status.)
I saved the best for last. The only thing the main thread does is bring the workers and the print manager to life. The workers each independently do their own loop: ping, compare, print, and wait.
See the source: long_lived_looping_workers.py
No more race conditions! The worker threads mind their own business.
The worker threads remain in memory.
Yes.
This software uses the MIT license.