Skip Reasons
Every item Houndarr evaluates but does not search gets an
action=skipped row in the log with a reason string attached. Most
reasons are normal scheduling behavior, not errors.
Reasons
| Reason string | Scope | What it means |
|---|---|---|
on cooldown (Nd) | per-item | Missing item was searched less than Cooldown (days) ago. |
on cutoff cooldown (Nd) | per-item | Cutoff item was searched less than Cutoff Cooldown ago. |
on upgrade cooldown (Nd) | per-item | Upgrade item was searched less than Upgrade Cooldown (days) ago. Default 90 days. |
not yet released | per-item | No release date, or the release date is in the future. |
post-release grace (Nh) | per-item | Release date passed but the grace window (default 6 hours) has not elapsed. |
in hot retry window (Nh) | per-item | Missing item is inside its hot retry window, but the retry interval has not elapsed. |
hourly limit reached (N/hr) | per-item | Missing pass hit Hourly Cap of N for the current hour. |
cutoff hourly limit reached (N/hr) | per-item | Cutoff pass hit Cutoff Cap of N. |
upgrade hourly limit reached (N/hr) | per-item | Upgrade pass hit Upgrade Cap of N. |
tag filter (no included tag) | per-item | Tag Filter · Include is set and the item does not carry any matching tag. |
tag filter (excluded tag) | per-item | Tag Filter · Exclude is set and the item carries one of those tags. |
queue backpressure (N/M) | cycle-level | Download queue has N items, at or above Queue Limit of M. Entire cycle is skipped. |
outside allowed time window | cycle-level | Current time falls outside every window defined in Allowed Search Window. Entire cycle is skipped. |
Cycle-level skips write one log row and the supervisor sleeps until the next cycle. Per-item skips write one row per candidate evaluated.
Release-aware retry
With the default hot retry window of 0, missing items skipped with
not yet released or post-release grace (Nh) get one immediate
retry on a later cycle once the release-timing gate clears, even when
the normal missing cooldown has not fully elapsed. After that one retry,
normal missing cooldown applies again.
When Hot Retry Window (hrs) is enabled, the latest post-release grace (Nh) row opens a short retry window. Houndarr can retry the item after
Hot Retry Interval (hrs) elapses, still respecting batch size and the
hourly cap. When the window closes, normal missing cooldown applies.
Cutoff and upgrade passes do not use this early retry. They always wait for their full cooldown.
Queue backpressure
Setting Queue Limit to a value above zero makes Houndarr check the
download queue before each cycle. When the queue count meets or
exceeds the limit, the cycle writes one queue backpressure (N/M)
skip and sleeps. If the queue endpoint is unreachable, the cycle
proceeds normally (fail-open).
Outside allowed time window
The Allowed Search Window field restricts scheduled cycles to one
or more time-of-day windows. When the current container-local time
falls outside every configured window, the cycle writes one
outside allowed time window info row with the current time and the
configured windows, then sleeps. Manual Run Now clicks bypass this
gate.
Tag filter
Tag Filter · Include and Tag Filter · Exclude in instance
settings scope the missing, cutoff, and upgrade passes to (or away
from) items carrying specific *arr tags. Both fields take
comma-separated tag labels and default to empty. With both empty the
filter is a no-op and behavior matches earlier versions.
The engine resolves labels to numeric tag IDs once per cycle by
GET-ing each instance's /tag endpoint, so renaming a tag in Radarr
or Sonarr does not require re-editing the field. Two cycle-level info
rows can appear:
tag filter (unknown label)lists labels the operator typed that did not resolve to any *arr tag on the current cycle. The remaining labels still apply.tag filter (fetch failed)indicates the/tagGET failed for that one cycle. The filter is disabled for that cycle and the search pass proceeds normally; the next cycle retries the fetch.
See Instance Settings > Tag filter for the field reference and the per-app tag-source mapping.
Log deduplication
Six reasons are deduplicated in the log: on cooldown, on cutoff cooldown, on upgrade cooldown, in hot retry window, and the two
tag filter skip reasons. Each (instance, item, reason) triple
writes at most one search_log row per 24 hours. The engine still
evaluates every candidate every cycle; only the log write is
suppressed. This keeps the logs scannable when hundreds of items
share the same cooldown, the same hot-retry interval throttle, or the
same tag-filter outcome.
The other reasons in the table above write a row every cycle they apply.
Why skips are normal
A high skip count with zero errors is pacing working as designed. The engine evaluates candidates, finds most ineligible, and waits.
Worked example: 500 monitored movies, 50 flagged cutoff-unmet, 35 of those on cooldown, 8 inside post-release grace, batch size 1. The cycle searches 1 movie and skips 49. Over days and weeks the engine works through the backlog as cooldowns expire and grace windows close.
Errors (HTTP 401, connection refused) are the real signal that something is wrong. See Troubleshoot Connection when errors appear.