is normal that when I use "execute_in_process" to ...
# ask-community
s
is normal that when I use "execute_in_process" to execute job inside a job ...Dagit don't show the execution of the process internal job? EX: I run "main_job" using dagit UI, inside of this job I execute "dynamic_job.execute_in_process()" but dagit only show the process of "main_job" is there way yo make it visible on dagit? My goal is execute dynamic job after a "main job" is done
o
answered above, but for others who find this, yes this is expected -- you'll want to pass in a value to the
instance
parameter in order for these events to be written to the correct place. It might also be worth reading through: https://docs.dagster.io/_apidocs/execution as it covers the whole python execution API
❤️ 1