Can I choose not to store the returned values in o...
# ask-community
u
Can I choose not to store the returned values in op, and will they be cleaned up after completion?
j
Hi @王昊 you could set your I/O manager to the InMemoryIOManager and then all results will be cleaned up after completion
Copy code
from dagster import Definitions, InMemoryIOManager

defs = Definitions(
    assets=[...],
    resources={
       "io_manager": InMemoryIOManager()
    }
)