https://dagster.io/ logo
#ask-community
Title
# ask-community
c

Carlos Sanoja

05/10/2022, 6:36 PM
Hello team, I've been facing some trouble executing some tasks, it seems the
compute_logs
folder that is created inside the
home/storage
folder grows until the pipeline fails. Do we have a way to avoid saving the compute logs or at least deactivate them?
y

yuhan

05/10/2022, 7:23 PM
Hi Carlos, you can modify the
compute_logs
entry in your
dagster.yaml
to point it to writing to somewhere else. Here’s the doc: https://docs.dagster.io/deployment/dagster-instance#compute-log-storage
c

Carlos Sanoja

05/10/2022, 7:37 PM
Is it any ways to not have them at all? @yuhan Thanks for your answer!
y

yuhan

05/10/2022, 7:38 PM
I don’t think so - parts of the execution machinery operate on the compute logs. however you can put it in a
/tmp/..
directory which will get cleaned up later
c

Carlos Sanoja

05/10/2022, 7:53 PM
great idea thanks