Skip to content

Commit

Permalink
Docs: add troubleshooting for mysql (#11012)
Browse files Browse the repository at this point in the history
* add troubleshooting for mysql

* correct abhi comments
  • Loading branch information
marcosmarxm authored Mar 10, 2022
1 parent acd56cd commit c720120
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
5 changes: 5 additions & 0 deletions docs/integrations/destinations/mysql.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ To use the MySQL destination, you'll need:
* To sync data to MySQL **with** normalization MySQL database 8.0.0 or above
* To sync data to MySQL **without** normalization you'll need MySQL 5.0 or above.

#### Troubleshooting

Some users reported that they could not connect to Amazon RDS MySQL or MariaDB. This can be diagnosed with the error message: `Cannot create a PoolableConnectionFactory`.
To solve this issue add `enabledTLSProtocols=TLSv1.2` in the JDBC parameters.

#### Network Access

Make sure your MySQL database can be accessed by Airbyte. If your database is within a VPC, you may need to allow access from the IP you're using to expose Airbyte.
Expand Down
3 changes: 3 additions & 0 deletions docs/integrations/sources/mysql.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ The MySQL source does not alter the schema present in your database. Depending o

There may be problems with mapping values in MySQL's datetime field to other relational data stores. MySQL permits zero values for date/time instead of NULL which may not be accepted by other data stores. To work around this problem, you can pass the following key value pair in the JDBC connector of the source setting `zerodatetimebehavior=Converttonull`.

Some users reported that they could not connect to Amazon RDS MySQL or MariaDB. This can be diagnosed with the error message: `Cannot create a PoolableConnectionFactory`.
To solve this issue add `enabledTLSProtocols=TLSv1.2` in the JDBC parameters.

## Getting Started \(Airbyte Cloud\)

On Airbyte Cloud, only TLS connections to your MySQL instance are supported. Other than that, you can proceed with the open-source instructions below.
Expand Down

0 comments on commit c720120

Please sign in to comment.