-
Notifications
You must be signed in to change notification settings - Fork 0
processing failures
You will learn what each processing exception means and how to recover from it.
When the processing engine fails, it reports a structured status. These are severe runtime faults — they indicate something went wrong while using local input, not just a transient upstream download problem.
The local feed body exists but cannot be parsed into a valid IP set.
What it means: The file on disk is corrupt, truncated, or contains content the parser cannot handle.
What to do: Trigger a recheck to download fresh input:
curl -X POST -u "$UPDATE_IPSETS_ADMIN_USER:$UPDATE_IPSETS_ADMIN_PASSWORD" http://localhost:18889/api/v1/admin/feeds/<name>/recheckDownstream publication or promotion of the processing output failed.
What it means: The feed was processed successfully, but writing the results to disk failed. This often indicates disk space issues or permission problems.
What to do: Check disk space and permissions. Then reprocess:
curl -X POST -u "$UPDATE_IPSETS_ADMIN_USER:$UPDATE_IPSETS_ADMIN_PASSWORD" http://localhost:18889/api/v1/admin/feeds/<name>/reprocessThe processing input or configuration is invalid for this processing path.
What it means: The daemon accepted the catalog, but this run cannot process the selected feed with its current local input or dependency state.
What to do: Check the feed configuration and dependencies, then recheck or reprocess after fixing the root cause.
No staged or committed local feed body exists for processing.
What it means: The feed has never been downloaded, or its local data was lost.
What to do: Trigger a recheck to fetch fresh data:
curl -X POST -u "$UPDATE_IPSETS_ADMIN_USER:$UPDATE_IPSETS_ADMIN_PASSWORD" http://localhost:18889/api/v1/admin/feeds/<name>/recheckProcessing was cancelled because the run context was closed — usually due to daemon shutdown.
What it means: The feed was in the processing queue when the daemon shut down or restarted.
What to do: No action needed. The daemon recovers staged input on restart and re-queues the feed.
Configuration for this feed is invalid or inconsistent.
What it means: A config field references a missing provider, an invalid URL, or a broken dependency chain.
What to do: Check the feed's configuration in the YAML catalog. Fix the error and reload or restart the daemon.
Source material was obtained but the extraction or normalization pipeline failed.
What it means: The download succeeded, but converting the raw content into a canonical IP set failed. This could be a malformed archive, an unexpected format change, or a processor bug.
What to do: Check the logs for the specific extraction error. If the upstream format changed, the processor pipeline may need updating. Trigger a recheck after the fix.
The engine could not open a required file — typically a provider dataset or a committed feed body.
What it means: A file that should exist on disk is missing or unreadable.
What to do: Check file permissions and disk health. For provider datasets, verify the provider is enabled and has been downloaded. Reprocess after the fix.
A supporting resource (provider dataset, artifact parent) is not available.
What it means: The feed depends on a provider or parent that has not been downloaded or is disabled.
What to do: Enable and recheck the missing dependency. Then reprocess the affected feed.
The input or supporting data is too old to be useful.
What it means: The feed body or a provider dataset has exceeded its useful lifetime.
What to do: Recheck the feed to get fresh input.
Integrity findings are not reported as feed processing last_status values.
They appear in the integrity panel and through the admin integrity API. Use the
integrity recovery action when the finding says existing local input can rebuild
the missing or stale artifacts.
Most processing failures resolve with one of two actions:
| Action | When to use |
|---|---|
| Recheck | The local input is corrupt, missing, or stale — you need fresh upstream data |
| Reprocess | The local input is valid but outputs are missing or corrupt — rebuild from existing data |
curl -X POST -u "$UPDATE_IPSETS_ADMIN_USER:$UPDATE_IPSETS_ADMIN_PASSWORD" http://localhost:18889/api/v1/admin/feeds/<name>/recheckcurl -X POST -u "$UPDATE_IPSETS_ADMIN_USER:$UPDATE_IPSETS_ADMIN_PASSWORD" http://localhost:18889/api/v1/admin/feeds/<name>/reprocessIf the same feed fails repeatedly after recheck and reprocess, check the logs:
journalctl --namespace=iplists -u update-ipsets | grep '<name>' | grep 'level=ERROR'Recurring parse_failed or finalize_failed exceptions suggest a bug or a serious consistency problem. Report the issue with the feed name, error message, and relevant log excerpts.
- 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