You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are a list of IDs I need to run jobs daily for.
Currently I have a single dimension Dynamic partition setup. Issue here is that it will not run daily
ids_partitions_def=DynamicPartitionsDefinition(name="ids")
def_make_config_for_partition(id: str) ->dict:
return {"ops": {"init_daily_dag": {"config": {"id": dw_id}}}}
@job(partitions_def=ids_partitions_def,config=PartitionedConfig(partitions_def=ids_partitions_def,run_config_for_partition_key_fn=_make_config_for_partition, ),)defdata_pipeline():
"""Job for the entire data pipeline."""config=ops.init_daily_dag()
out=ops.etl1(dp_config=config)
out=ops.etl2dp_config=config, phantom_dep=out)
ops.etl3(dp_config=config, phantom_dep=out)
I want to run these partitions everyday, found out about Multi Dimension Partitions. Am not sure if this will help my case. Am open to suggestions. Can I do something like this:
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
There are a list of IDs I need to run jobs daily for.
Currently I have a single dimension Dynamic partition setup. Issue here is that it will not run daily
I want to run these partitions everyday, found out about Multi Dimension Partitions. Am not sure if this will help my case. Am open to suggestions. Can I do something like this:
Beta Was this translation helpful? Give feedback.
All reactions