[I] Dynamic Task Mapping: transforming dict data with map results in KeyError [airflow]

2023-11-01 Thread via GitHub
sc-anssi opened a new issue, #35361: URL: https://github.com/apache/airflow/issues/35361 ### Apache Airflow version 2.7.2 ### What happened Trying to map over a dict instead of a list results in a KeyError (the following backtrace is issued when running the DAG below wit

Re: [I] Dynamic Task Mapping: transforming dict data with map results in KeyError [airflow]

2023-11-20 Thread via GitHub
nathadfield closed issue #35361: Dynamic Task Mapping: transforming dict data with map results in KeyError URL: https://github.com/apache/airflow/issues/35361 -- 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

Re: [I] Dynamic Task Mapping: transforming dict data with map results in KeyError [airflow]

2023-11-01 Thread via GitHub
boring-cyborg[bot] commented on issue #35361: URL: https://github.com/apache/airflow/issues/35361#issuecomment-1789835413 Thanks for opening your first issue here! Be sure to follow the issue template! If you are willing to raise PR to address this issue please do so, no need to wait for ap

Re: [I] Dynamic Task Mapping: transforming dict data with map results in KeyError [airflow]

2023-11-02 Thread via GitHub
jens-scheffler-bosch commented on issue #35361: URL: https://github.com/apache/airflow/issues/35361#issuecomment-1791379422 Mhm, I don't get your point. Iterable is for dict keys. Dynamic task mapping needs a list in order to be able to map tasks to it. You need to know the mapping is using

Re: [I] Dynamic Task Mapping: transforming dict data with map results in KeyError [airflow]

2023-11-06 Thread via GitHub
sc-anssi commented on issue #35361: URL: https://github.com/apache/airflow/issues/35361#issuecomment-1795167165 Hi, Thanks for your feedback, it helped me rewrite and simplify my workflow ! > Why are you trying to pass a dict and do not use a list instead which is working?