I have an issue with the .prefect/results folder t...
# prefect-community
d
I have an issue with the .prefect/results folder taking up a large amount of space and it's causing issues on our server. Can these results be safely removed? Is there a way to automatically clean up these files? I am using local storage. Thanks for the help!
a
Yes, if you don't need those, you can clean up this folder to avoid storing results for the future, you can add this to your task:
Copy code
@task(checkpoint=False)
d
got it, thanks!
👍 1