Skip to content

Queue monitor

Queue Monitor#

amltk.scheduling.queue_monitor #

A QueueMonitor is a monitor for the scheduler queue.

This module contains a monitor for the scheduler queue. The monitor tracks the queue state at every event emitted by the scheduler. The data can be converted to a pandas DataFrame or plotted as a stacked barchart.

Monitoring Frequency

To prevent repeated polling, we sample the scheduler queue at every scheduler event. This is because the queue is only modified upon one of these events. This means we don't need to poll the queue at a fixed interval. However, if you need more fine grained updates, you can add extra events/timings at which the monitor should update().

Performance impact

If your tasks and callbacks are very fast (~sub 10ms), then the monitor has a non-nelgible impact however for most use cases, this should not be a problem. As anything, you should profile how much work the scheduler can get done, with and without the monitor, to see if it is a problem for your use case.

In the below example, we have a very fast running function that runs on repeat, sometimes too fast for the scheduler to keep up, letting some futures buildup needing to be processed.

import time
import matplotlib.pyplot as plt
from amltk.scheduling import Scheduler
from amltk.scheduling.queue_monitor import QueueMonitor

def fast_function(x: int) -> int:
    return x + 1

N_WORKERS = 2
scheduler = Scheduler.with_processes(N_WORKERS)
monitor = QueueMonitor(scheduler)
task = scheduler.task(fast_function)

@scheduler.on_start(repeat=N_WORKERS)
def start():
    task.submit(1)

@task.on_result
def result(_, x: int):
    if scheduler.running():
        task.submit(x)

scheduler.run(timeout=1)
df = monitor.df()
print(df)
                               queue_size  queued  finished  cancelled  idle
time                                                                        
2024-04-24 14:12:10.916230193           0       0         0          0     2
2024-04-24 14:12:10.933280979           1       1         0          0     1
2024-04-24 14:12:10.933848553           2       2         0          0     0
2024-04-24 14:12:10.946140461           1       1         0          0     1
2024-04-24 14:12:10.946238906           2       2         0          0     0
...                                   ...     ...       ...        ...   ...
2024-04-24 14:12:11.934096392           2       2         0          0     0
2024-04-24 14:12:11.935873893           2       2         0          0     0
2024-04-24 14:12:11.946748464           2       2         0          0     0
2024-04-24 14:12:11.947030403           1       0         1          0     1
2024-04-24 14:12:11.947066310           0       0         0          0     2

[1909 rows x 5 columns]

We can also plot() the data as a stacked barchart with a set interval.

fig, ax = plt.subplots()
monitor.plot(interval=(50, "ms"))

2024-04-24T14:12:12.094027 image/svg+xml Matplotlib v3.8.4, https://matplotlib.org/