Hello! I’m using `submit_job_execution` function f...
# dagster-plus
a
Hello! I’m using
submit_job_execution
function for executing jobs in Dagster cloud and I see that the function has a parameter called
run_config
, do you have an example of how can I pass a dictionary or a dataframe or both using that parameter? Thanks!
d
Hi Arturo - there are some examples here of how to specify that configuration: https://docs.dagster.io/concepts/configuration/config-schema#specifying-runtime-configuration It can be a dictionary, but it can't be a dataframe. The full set of types that can be used as run configuration in dagster are described in more detail here: https://docs.dagster.io/concepts/configuration/advanced-config-types
a
nice, thanks a lot Daniel