-
Notifications
You must be signed in to change notification settings - Fork 0
configuration reload
You will learn how to reload the daemon configuration without restarting, what reloads, what does not, and how the pipeline handles in-flight work during a reload.
Send SIGHUP to the daemon process. The daemon reads the updated YAML catalog and applies the new configuration.
systemctl kill -s HUP update-ipsetsIf you run the daemon outside systemd, send SIGHUP to that specific process:
kill -HUP <update-ipsets-pid>- YAML catalog: source definitions, merges, artifact parents, runtime settings, categories, supporting registries
- Derived feed configurations: history derivatives, merge expansions, artifact-backed children
- Effective enable/disable state, recalculated from the new catalog and the existing source/artifact enable marker files
The daemon re-reads the --config directory, re-validates everything, and swaps to the new configuration atomically.
These require a full restart:
- Listen addresses (
--listen,--admin-listen) - TLS certificates and keys (
--tls-cert,--tls-key) - Log level (
--silent,--verbose) - Markdown templates under
templates/markdown/
To change these, restart the service:
systemctl restart update-ipsetsIf the new configuration fails validation, the daemon rejects it and keeps the previous configuration active. The daemon logs the validation error with enough detail to identify the problem.
The daemon does not swap to a partial or broken configuration. Committed state, staged state, and queue ownership are never corrupted by a failed reload.
- In-flight downloads and processing batches complete using the configuration they started with.
- New work picked up after the reload uses the new configuration.
- No feed is left in a half-processed state by a reload boundary.
| Change | Reload | Restart |
|---|---|---|
| Add, remove, or edit a feed definition | yes | |
| Change runtime settings in the catalog | yes | |
Change --listen or --admin-listen
|
yes | |
| Change TLS certificates | yes | |
Change --interval
|
yes | |
| Change log level | yes | |
| Change Markdown templates | yes | |
| Fix a broken feed definition that blocked reload | yes (or fix the config and reload again) |
After a reload, the daemon logs the outcome. Check the journal:
journalctl --namespace=iplists -u update-ipsets -n 50 --no-pagerThe admin status endpoint also shows the current configuration state:
curl -u "$UPDATE_IPSETS_ADMIN_USER:$UPDATE_IPSETS_ADMIN_PASSWORD" http://127.0.0.1:18889/api/v1/admin/status- Daemon Reference — all flags and subcommands
- Admin Authentication — accessing admin endpoints
- Daemon Command Reference
- Environment Variables
- Configuration Reload
- Listener Topologies
- Admin Authentication
- Feed Families
- Source Feeds
- Processor Reference
- Static Feeds
- Merge Feeds
- Artifact Parents
- History Derivatives
- Provider Databases
- Use Roles
- Critical Infrastructure Reference Feeds
- Legal Fields
- Feed Visibility & Lifecycle
- YAML Field Reference
- Pipeline Overview
- Download Lifecycle
- Processing Lifecycle
- Feed Status Reference
- Health Classes
- What Triggers Reprocessing
- Accessing the Admin
- Runtime Status
- Feed Inventory
- Artifact Inventory
- Live Queues
- Background Work
- Schedule State
- Operator Actions
- Enable & Disable