diff --git a/docs/faq.rst b/docs/faq.rst index 53242e4779..d2c618833d 100644 --- a/docs/faq.rst +++ b/docs/faq.rst @@ -161,3 +161,11 @@ How can we reduce the airflow UI page load time? ------------------------------------------------ If your dag takes long time to load, you could reduce the value of ``default_dag_run_display_number`` configuration in ``airflow.cfg`` to a smaller value. This configurable controls the number of dag run to show in UI with default value 25. + +How to fix Exception: Global variable explicit_defaults_for_timestamp needs to be on (1)? +--------------------------------------------------------------------------------------------- + +This means ``explicit_defaults_for_timestamp`` is disabled in your mysql server and you need to enable it by: + +#. Set ``explicit_defaults_for_timestamp = 1`` under the mysqld section in your my.cnf file. +#. Restart the Mysql server.