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

Mark Fickett

04/28/2022, 1:23 PM
Is there some kind of execution context startup hook? Looking for a way to do some setup other than when my Python modules are imported, so I can avoid doing it in unit tests.
a

alex

04/28/2022, 3:06 PM
I think using a
resource
may fit your criteria, they will be booted up for each process execution context (once for whole run in in_process, each op subprocess in multi_process)
m

Mark Fickett

04/28/2022, 3:06 PM
Ah, thank you!
3 Views