Which version of MySQL is compatible with Airflow version 1.10?

前端 未结 2 1819
鱼传尺愫
鱼传尺愫 2021-01-16 19:42

I am trying to use LocalExecutor instead of the default SequentialExecutor which forces to use a different database then SQLlite.

I wanted to try MySQL, however I am

相关标签:
2条回答
  • 2021-01-16 19:57

    AIRFLOW-1405 reads:

    MySQL supports fractional seconds only from version 5.6.4 on.

    You can not use airflow >= 1.8 with earlier versions.

    5.7 should work, while field last_scheduler_run has the expected size.

    0 讨论(0)
  • 2021-01-16 20:04

    I was using Python27 all these time, once I update my linux to Python36 all started working. Now I am using Airflow1.10 with Mysql5.6.4

    One more thing to keep in mind, browser cookies should be cleared once you update your python version from python27 to python36 for this to work in the UI or else you will see the same error.

    Hope this helps someone!

    0 讨论(0)
提交回复
热议问题