https://dagster.io/ logo
w

wbonelli

05/19/2020, 1:07 AM
What's the recommended way to access
SystemComputeExecutionContext
within a composite solid? E.g., for logging
a

alex

05/19/2020, 1:46 AM
composites don’t execute at all during runtime - in the same way the
@pipeline
function works - it’s just a way do describe a DAG using a function. The function is invoked by the decorator at declaration time only. Any logging that you need to do should happen within regular (or lambda) solid functions.
w

wbonelli

05/19/2020, 2:51 AM
Got it - thanks!
👍 1