Memory Monitor
This guide explains how to use the class Async::Service::Supervisor::MemoryMonitor to detect and restart workers that exceed memory limits or develop memory leaks.
Overview
Long-running worker processes often accumulate memory over time, either through legitimate growth or memory leaks. Without intervention, workers can consume all available system memory, causing performance degradation or system crashes. The MemoryMonitor solves this by automatically detecting and restarting problematic workers before they impact system stability.
Use the MemoryMonitor when you need:
- Memory leak protection: Automatically restart workers that continuously accumulate memory.
- Resource limits: Enforce maximum memory usage per worker.
- System stability: Prevent runaway processes from exhausting system memory.
- Leak diagnosis: Identify workers that should be investigated with heap diagnostics.
The monitor uses the memory-leak gem to track process memory usage over time, detecting abnormal growth patterns that indicate leaks.
Usage
Add a memory monitor to your supervisor service to automatically restart workers that exceed 500MB:
service "supervisor" do
include Async::Service::Supervisor::Environment
monitors do
[
Async::Service::Supervisor::MemoryMonitor.new(
# Check worker memory every 10 seconds:
interval: 10,
# Restart workers exceeding 500MB:
maximum_size_limit: 1024 * 1024 * 500
)
]
end
end
When a worker exceeds the limit:
- The monitor logs the leak detection.
- Sends
SIGINTto gracefully shut down the worker. - The container automatically spawns a replacement worker.
Configuration Options
The MemoryMonitor accepts the following options:
interval
The interval (in seconds) at which to check for memory leaks. Default: 10 seconds.
Async::Service::Supervisor::MemoryMonitor.new(interval: 30)
maximum_size_limit
The maximum memory size (in bytes) per process. When a process exceeds this limit, it will be restarted.
# 500MB limit
Async::Service::Supervisor::MemoryMonitor.new(maximum_size_limit: 1024 * 1024 * 500)
# 1GB limit
Async::Service::Supervisor::MemoryMonitor.new(maximum_size_limit: 1024 * 1024 * 1024)
total_size_limit
The total size limit (in bytes) for all monitored processes combined. If not specified, only per-process limits are enforced.
# Total limit of 2GB across all workers
Async::Service::Supervisor::MemoryMonitor.new(
maximum_size_limit: 1024 * 1024 * 500, # 500MB per process
total_size_limit: 1024 * 1024 * 1024 * 2 # 2GB total
)
Memory Leak Detection
When a memory leak is detected, the monitor will:
- Log the leak detection with process details.
- Send a
SIGINTsignal to gracefully restart the worker. - The container will automatically restart the worker process.
Heap Diagnostics
The monitor does not automatically capture heap data before restarting a worker. When investigating growth, use the worker diagnostic Bake tasks to:
- List live worker connection IDs.
- Capture full
ObjectSpaceheap dumps before and after representative load. - Record garbage collection profiles.
- Capture scheduler and thread state.
See the Memory Diagnostics guide for a safe capture and comparison workflow. Complete the diagnostic capture before the configured limit restarts the worker.