Upgrade to Airflow 1.10 - _mysql_exceptions.OperationalError: (1054, "Unknown column 'task_instance.executor_config' in 'field list'")

Viewed 4376
2 Answers

OK, found out that there is a command airflow upgradedb that fixes this and should be run after upgrading from Airflow 1.9 to 1.10.

airflow upgradedb won't work if you upgrade from airflow 1.8 directly to 1.10, you should upgrade to 1.9 first, use airflow upgradedb and then do the same process from 1.9 to 1.10.

Related