Troubleshooting¶
Container unhealthy / won't start¶
- Check
docker logs nzbdavfor migration or backend health failures. - Ensure
CONFIG_PATH(/config) is writable byPUID/PGID. - Frontend
/healthzshould pass during long migrations; backend/healthmust eventually succeed.
Streaming readiness (/ready) since 0.10.0¶
The backend readiness endpoint reports whether InfiniDysk can make progress on new streams. It returns
503 Service Unavailable when Article RAM remains at least 90% leased with no active reads for 30
seconds. A high Article RAM value while reads are active is normal backpressure and remains ready.
/ready is separate from the cheap liveness endpoints (/health on the backend and /healthz on
the frontend). The default container healthcheck stays on /healthz, so temporary streaming load
does not trigger restarts. To opt into readiness for routing or monitoring, probe the backend port:
healthcheck:
test: ["CMD-SHELL", "curl -fsSL http://localhost:8080/ready > /dev/null || exit 1"]
interval: 30s
timeout: 5s
retries: 3
start_period: 60s
Use /ready as a restart trigger only if restarting a streaming-wedged container is the intended
policy. This check detects a stuck in-flight article budget; it does not test provider connectivity.
WebDAV or playback fails¶
- Confirm WebDAV username/password.
- Behind a proxy: TLS,
/wsUpgrade,SECURE_COOKIES, Base URL /TRUST_PROXY. - Overview Active Reads: unexpected traffic → rclone VFS or media-server scans.
- Try disabling segment cache or adjusting Max Download Connections — WebDAV.
Playback slowed but nothing failed¶
When streams buffer without hard errors, read support-pack latency phases first
(metrics/recent.json → latency24Hours):
- High
responsewith lowpool-wait/permit-wait→ provider/server latency. - High provider
pool-wait→ that provider's connections are saturated or churning. - High streaming/queue
permit-wait→ that workload's configured connection cap is saturated. - High stream-trace
consumerWaitMswith low values in all three phases → prefetch geometry or consumer pacing — compare withbodyDrainMson RangeEnd events.
Generate a pack from Settings → Support — Technical support pack.
*Arr won't import¶
- Paths must match exactly between InfiniDysk completed path and *Arr containers.
- Symlinks: rclone mount healthy?
lsshowscompleted-symlinksand.ids? - STRM: Base URL reachable from Emby/Jellyfin?
- Check Automatic Queue Management rules — Arrs.
403 / 405 on MKCOL, PUT or DELETE¶
The mount is a read-only virtual filesystem — /content, /completed-symlinks and /.ids
serve data streamed from Usenet and accept no writes. Refused writes are expected, not a fault:
403 Forbidden— a client tried to create, copy, move or upload something.405 Method Not Allowed—MKCOLtargeted a directory that already exists.
Logs show one aggregated warning per read-only path every 5 minutes (Refused to create item under
read-only path …), with per-attempt detail at LOG_LEVEL=debug. InfiniDysk cannot stop a client from
re-attempting, so fix it at the source — the warning and the access-log line both name the client IP
and User-Agent:
- Media servers (Emby/Jellyfin/Plex/Kodi): turn off saving metadata, artwork or
.nfo/.srtsidecars into media folders, or scan your library rather than the InfiniDysk mount. - *Arr: disable metadata/extra-file writing for the affected root folder.
- rclone: mount with
--read-onlyso it stops probing for writability.
addurl SSRF / private indexer since 0.8.0¶
Allow Docker DNS or LAN hosts under Trusted local hosts — SABnzbd API.
Why did files disappear?¶
See Deletion audit — history retention ≠ deleting mounts; orphan cleanup and *Arr actions can remove content.
Provider / missing articles¶
- Circuit breaker may pause a bad provider — check Usenet settings and Overview.
- Storage groups skip sibling resellers after a miss — only group identical upstream storage.
- Health/repairs can replace unhealthy library items — Health and repairs.
Still stuck¶
Generate a technical support pack from Settings → Support, review it for personal paths and names, then open an issue. For local stream debugging, see Contributing.