Scroll to navigation

SPAUSEDD(8) System Manager's Manual SPAUSEDD(8)

NAME

spauseddUtility to detect and log scheduler pause

SYNOPSIS

spausedd [-dDfhp] [-m steal_threshold] [-t timeout]

DESCRIPTION

The spausedd utility is used for detecting and logging scheduler pause. This means, when process should have been scheduled, but it was not. It's also able to use steal time (time spent in other operating systems when running in a virtualized environment) so it is (to some extend) able to detect if problem is on the VM or host side. spausedd is able to read information about steal time ether from kernel or (if compiled in) also use VMGuestLib. Internally spausedd works as following pseudocode:

repeat:
    store current monotonic time
    store current steal time
    sleep for (timeout / 3)
    set time_diff to (current monotonic time - stored monotonic time)
    if time_diff > timeout:
        display error
        set steal_time_diff to (current steal time - stored steal time)
        if (steal_time_diff / time_diff) * 100 > steal_threshold:
            display steal time error

spausedd arguments are as follows:

Display debug messages (specify twice to display also trace messages).
Run on background (daemonize).
Run on foreground (do not demonize - default).
Show help.
Do not set RR scheduler.
Do not move process to root cgroup.
steal_threshold
Set steal threshold percent. (default is 10 if kernel information is used and 100 if VMGuestLib is used).
timeout
Set timeout value in milliseconds (default 200).

If spausedd receives a SIGUSR1 signal, the current statistics are show.

EXAMPLES

To generate CPU load yes(1) together with chrt(1) is used in following examples:

chrt -r 99 yes >/dev/null &

If chrt fails it may help to use cgexec(1) like:

cgexec -g cpu:/ chrt -r 99 yes >/dev/null &

First example is physical or virtual machine with 4 CPU threads so yes(1) was executed 4 times. In a while spausedd should start logging messages similar to:

Mar 20 15:01:54 spausedd: Running main poll loop with maximum timeout 200 and steal threshold 10%
Mar 20 15:02:15 spausedd: Not scheduled for 0.2089s (threshold is 0.2000s), steal time is 0.0000s (0.00%)
Mar 20 15:02:16 spausedd: Not scheduled for 0.2258s (threshold is 0.2000s), steal time is 0.0000s (0.00%)
...

This means that spausedd didn't got time to run for longer time than default timeout. It's also visible that steal time was 0% so spausedd is running ether on physical machine or VM where host machine is not overloaded (VM was scheduled on time).

Second example is a host machine with 2 CPU threads running one VM. VM is running an instance of spausedd. Two instancies of yes(1) was executed on the host machine. After a while spausedd should start logging messages similar to:

Mar 20 15:08:20 spausedd: Not scheduled for 0.9598s (threshold is 0.2000s), steal time is 0.7900s (82.31%)
Mar 20 15:08:20 spausedd: Steal time is > 10.0%, this is usually because of overloaded host machine
...

This means that spausedd didn't got the time to run for almost one second. Also because steal time is high, it means that spausedd was not scheduled because VM wasn't scheduled by host machine.

DIAGNOSTICS

The spausedd utility exits 0 on success, and >0 if an error occurs.

AUTHORS

The spausedd utility was written by Jan Friesse ⟨jfriesse@redhat.com⟩.

BUGS

  • OS is not updating steal time as often as monotonic clock. This means that steal time difference can be (and very often is) bigger than monotonic clock difference, so steal time percentage can be bigger than 100%. It's happening very often for highly overloaded host machine when spausedd is called with small timeout. This problem is even bigger when VMGuestLib is used.
  • VMGuestLib seems to randomly block.
November 11, 2020 Linux 5.14.0-284.11.1.el9_2.x86_64