This is an automated email from the ASF dual-hosted git repository.

ephraimanierobi pushed a commit to branch v2-7-test
in repository https://gitbox.apache.org/repos/asf/airflow.git

commit ce7ce267077f270b7dab7f99a099ec1ac19f553d
Author: Andrey Anshin <andrey.ans...@taragol.is>
AuthorDate: Fri Oct 20 21:27:53 2023 +0400

    Remove `mysql-connector-python` from recommended MySQL driver (#34287)
    
    (cherry picked from commit 44831db2070a3564ea77ac262356c7638b62490e)
---
 docs/apache-airflow/howto/set-up-database.rst | 15 +++------------
 1 file changed, 3 insertions(+), 12 deletions(-)

diff --git a/docs/apache-airflow/howto/set-up-database.rst 
b/docs/apache-airflow/howto/set-up-database.rst
index c5cab0a2e5..3c8f7a9bb1 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://<user>:<password>@<host>[:<port>]/<dbname>
 
-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://<user>:<password>@<host>[:<port>]/<dbname>
+.. 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 
<https://docs.sqlalchemy.org/en/14/dialects/mysql.html>`__  in SQLAlchemy 
documentation for more information regarding download
 and setup of the SqlAlchemy connection.

Reply via email to