".recycle" folder is taking up a bunch of space on disk #22185
-
|
How can I setup the config file to avoid this problem? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
The However, if you're experiencing storage issues with Frigate recordings, you can configure retention policies to control how much disk space recordings consume. Here are the key configuration options: Configure recording retention by days: record:
enabled: True
continuous:
days: 3
motion:
days: 7
alerts:
retain:
days: 30
mode: motion
detections:
retain:
days: 30
mode: motionEnable automatic cleanup when storage is low: As of Frigate 0.12, if there is less than an hour left of storage, the oldest 2 hours of recordings will be deleted automatically(1). Adjust cleanup frequency: record:
enabled: True
expire_interval: 60The Note: Currently, Frigate only supports time-based retention (days), not size-based retention. There is an open feature request for configurable retention by size(2), but this functionality is not yet available in the current stable version. To address your 📚 Sources: Have another question? Just tag @inkeep. |
Beta Was this translation helpful? Give feedback.
The
.recyclefolder isn't a Frigate-specific folder, but rather appears to be created by your operating system or NAS storage system (like Synology). Frigate doesn't create or manage a.recyclefolder.However, if you're experiencing storage issues with Frigate recordings, you can configure retention policies to control how much disk space recordings consume. Here are the key configuration options:
Configure recording retention by days:
(1)
Enable automatic cleanup when storage is low:
As of Frigate 0.12…