Arturo Martínez
05/24/2023, 9:32 PMsubmit_job_execution
function.Here is what Im trying to do: https://pastebin.pl/view/50193ecd (pass some parameters to my asset using submit_job_execution
)whats the correct way to create the dictionary for run_config
?daniel
05/24/2023, 9:48 PMrun_config=RunConfig(ops={"timeseries_predict": MyAssetConfig(date_col_name="Date", pred_col_name="bla", steps_to_predict=10, lags=10)}).to_config_dict()
(the to_config_dict
part probably should not be needed, but is today - we'll get that fixed)Arturo Martínez
05/24/2023, 9:48 PMto_config_dict()
. As a suggestion, it should be included also in case of executing jobs using the client.daniel
05/24/2023, 11:28 PMArturo Martínez
05/24/2023, 11:50 PMto_config_dict()
I get dagster._check.ParameterCheckError: Param "run_config" is not one of ['Mapping']. Got <dagster._core.definitions.run_config.RunConfig object at 0x119b172e0> which is type <class 'dagster._core.definitions.run_config.RunConfig'>.
daniel
05/24/2023, 11:50 PMArturo Martínez
05/24/2023, 11:51 PMdaniel
05/24/2023, 11:59 PMArturo Martínez
05/25/2023, 12:00 AM