summaryrefslogtreecommitdiff
path: root/lib/daemon.c
diff options
context:
space:
mode:
authorBen Pfaff <blp@nicira.com>2010-05-12 10:02:23 -0700
committerBen Pfaff <blp@nicira.com>2010-05-13 09:45:21 -0700
commita9633ada756ec15e1ed3dd9b503af3027dee3d10 (patch)
tree9811a6f3cdc10286aaa3485adbeee39ce0ae5444 /lib/daemon.c
parent7c2dd4c64823397d82d7d1c4e44f6a420df52aa6 (diff)
downloadopenvswitch-a9633ada756ec15e1ed3dd9b503af3027dee3d10.tar.gz
daemon: Throttle max respawning rate.
If a monitored daemon dies quickly at startup, the system can waste a lot of CPU time continually restarting it. This commit prevents a given daemon from restarting more than once every 10 seconds.
Diffstat (limited to 'lib/daemon.c')
-rw-r--r--lib/daemon.c18
1 files changed, 17 insertions, 1 deletions
diff --git a/lib/daemon.c b/lib/daemon.c
index 292be1465..78f88a0f9 100644
--- a/lib/daemon.c
+++ b/lib/daemon.c
@@ -323,14 +323,15 @@ should_restart(int status)
static void
monitor_daemon(pid_t daemon_pid)
{
- /* XXX Should limit the rate at which we restart the daemon. */
/* XXX Should log daemon's stderr output at startup time. */
const char *saved_program_name;
+ time_t last_restart;
char *status_msg;
saved_program_name = program_name;
program_name = xasprintf("monitor(%s)", program_name);
status_msg = xstrdup("healthy");
+ last_restart = TIME_MIN;
for (;;) {
int retval;
int status;
@@ -365,6 +366,21 @@ monitor_daemon(pid_t daemon_pid)
}
}
+ /* Throttle restarts to no more than once every 10 seconds. */
+ if (time(NULL) < last_restart + 10) {
+ VLOG_WARN("%s, waiting until 10 seconds since last "
+ "restart", status_msg);
+ for (;;) {
+ time_t now = time(NULL);
+ time_t wakeup = last_restart + 10;
+ if (now >= wakeup) {
+ break;
+ }
+ sleep(wakeup - now);
+ }
+ }
+ last_restart = time(NULL);
+
VLOG_ERR("%s, restarting", status_msg);
daemon_pid = fork_and_wait_for_startup(&daemonize_fd);
if (!daemon_pid) {