I have two questions
1. if I have a DAG used by our production system now, I need to release the same DAG(same ID) with some changes(e.g. add new operators), whats the best way to do it? should I create a new DAG for the new changes and turn off the old DAG? I also wonder how will this affect the retry logic, will airflow system try to run the re-try on the new DAG if the new DAG uses the same name/ID
2. my DAG has 3 operators, can I set retry logic for one of the operators, but not for the whole DAG? if so, how to do it
Thanks
Frank