https://delta.io logo
a

Ashutosh Pandey

02/24/2023, 8:25 PM
Hello, I have a delta log folder ( _delta_log) having millions of files. It is retaining all old log files. Is there a way to remove/archive/ consolidate the _delta_log log files?
s

Scott Sandre (Delta Lake)

02/24/2023, 8:43 PM
`delta.logRetentionDuration = "interval <interval>"`: controls how long the history for a table is kept. The default is
interval 30 days
.
we keep the delta logs for a default of 30 days
a

Ashutosh Pandey

02/24/2023, 8:44 PM
Thanks for a quick response.
s

Scott Sandre (Delta Lake)

02/24/2023, 8:44 PM
🙂
a

Ashutosh Pandey

02/24/2023, 8:45 PM
Where to set this? as env variable?
cluster level?
s

Scott Sandre (Delta Lake)

02/24/2023, 9:06 PM
this is a table property
a

Ashutosh Pandey

02/24/2023, 9:07 PM
thanks