Hi team,
Is there a way to pass hard coded data within a job to an op, for DRY reason
e.g. loading df to db for 2 different tables with load_df op
load_df(df = df1, tbl = <hard-coded-value-1>)
load_df(df = df2, tbl = <hard-coded-value-2>)
s
Sanidhya Singh
09/15/2022, 9:43 AM
How about config_schema with a default value?
j
Jeffery
09/15/2022, 11:31 AM
Hi Sanidhya, I looked into it as well, the config is per job, however I will need run 2 diff config per op under the same job