Lee-W commented on issue #41306: URL: https://github.com/apache/airflow/issues/41306#issuecomment-2275298066
The list you generate and passes into `expand` will later be used to generate n-gluejobs ```python ts = DummyOperator(task_id='start') te = DummyOperator(task_id='end') t1 = GlueJobOperator(.....).partial(...).expand(x=[1, 2, 3]) ts >> t1 >> te # will be translated in to something similar to "ts >> [t1, t1, t1] >> te" # but x will be passed separately ``` if you're able to use classic loop, I think dynamic task mapping should work 🤔 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
