Skip to content

Commit

Permalink
[AIRFLOW-XXX] Update manage-connections.rst (apache#4020)
Browse files Browse the repository at this point in the history
Explain how to connect with MySQL
  • Loading branch information
ron819 authored and Alice Berard committed Jan 3, 2019
1 parent cb4fc07 commit ef5e2f7
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions docs/howto/manage-connections.rst
Original file line number Diff line number Diff line change
Expand Up @@ -133,3 +133,26 @@ Scopes (comma separated)
Scopes are ignored when using application default credentials. See
issue `AIRFLOW-2522
<https://issues.apache.org/jira/browse/AIRFLOW-2522>`_.
MySQL
~~~~~~~~~~~~~~~~~~~~~
The MySQL connect type allows to connect with MySQL database.

Configuring the Connection
''''''''''''''''''''''''''
Host (required)
The host to connect to.

Schema (optional)
Specify the schema name to be used in the database.

Login (required)
Specify the user name to connect.

Password (required)
Specify the password to connect.

Extra (optional)
Specify the charset. Example: {"charset": "utf8"}

.. note::
If encounter UnicodeDecodeError while working with MySQL connection check the charset defined is matched to the database charset.

0 comments on commit ef5e2f7

Please sign in to comment.