-
Notifications
You must be signed in to change notification settings - Fork 0
recovery model
You will learn the two recovery classes, how the daemon chooses between them, and why recovery targets the root cause instead of the symptom.
Every integrity finding maps to one of two recovery actions:
The daemon needs fresh or staged input before it can repair the feed.
Use recheck when:
- the committed input is missing for a downloadable feed (fetch upstream again)
- the child input is missing for an artifact-backed child and the parent must be refreshed first
- the history snapshots needed to rebuild a derivative are missing (target the parent, not the derivative)
- an artifact-backed child has never been materialized locally (target the parent artifact recheck)
Recheck re-acquires upstream data or refreshes parent artifacts before local processing. Merge feeds can also be queued for recheck, but their recheck is local recomposition from parent feed bodies, not an upstream download.
The daemon already has enough local input to regenerate the missing outputs without a new upstream fetch.
Use reprocess when:
- public outputs are missing but the feed already has committed local input
- an output-only repair is needed after local artifact loss
- a secondary is stale or malformed but the primary data is intact
Reprocess is a local-only operation. The downloader has already done its job. The problem is in the engine-owned outputs.
Integrity recovery targets the root cause, not just the visible symptom.
Example: a derivative artifact (like a history summary) is stale. The immediate cause is the stale derivative, but the root cause is that the parent feed's history snapshots are missing or corrupt. Recovery queues a parent recheck, not a derivative reprocess.
This avoids repeated repair cycles where the daemon regenerates a derivative from incomplete parent data, only to find it stale again on the next check.
Another example: a merge feed has missing outputs because one of its parents lacks a local body. Recovery queues the parent for recheck. Once the parent has fresh data, the merge can reprocess correctly.
- The daemon evaluates the current findings and splits targets into
recheck_namesandreprocess_names. - Recheck targets are queued for fresh input, parent-artifact refresh, or local merge recomposition.
- Reprocess targets are queued for local output regeneration from existing staged or committed input.
- If the engine is already running, recovery reports
in_progressinstead of queuing duplicate work. - After the repair settles, the next integrity check confirms whether the finding is resolved.
- 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