diff --git a/docs/apache-airflow/howto/set-up-database.rst b/docs/apache-airflow/howto/set-up-database.rst index c5cab0a2e5e34..3c8f7a9bb113b 100644 --- a/docs/apache-airflow/howto/set-up-database.rst +++ b/docs/apache-airflow/howto/set-up-database.rst @@ -298,18 +298,9 @@ We recommend using the ``mysqlclient`` driver and specifying it in your SqlAlche mysql+mysqldb://:@[:]/ -We also support the ``mysql-connector-python`` driver, which lets you connect through SSL -without any cert options provided. If you wish to use ``mysql-connector-python`` driver, please install it with extras. - -.. code-block:: text - - $ pip install mysql-connector-python - -The connection string in this case should look like: - -.. code-block:: text - - mysql+mysqlconnector://:@[:]/ +.. important:: + The integration of MySQL backend has only been validated using the ``mysqlclient`` driver + during Apache Airflow's continuous integration (CI) process. If you want to use other drivers visit the `MySQL Dialect `__ in SQLAlchemy documentation for more information regarding download and setup of the SqlAlchemy connection.