-
Notifications
You must be signed in to change notification settings - Fork 2.1k
[Document] list databases which supports MySQL protocol #954
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Document] list databases which supports MySQL protocol #954
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @Cleverdada for the contribution, left minor comments
README.md
Outdated
|
||
| Protocol | Connector | Database | Driver | | ||
|------------|----------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------| | ||
| MySQL | [mysql-cdc](https://ververica.github.io/flink-cdc-connectors/master/content/connectors/mysql-cdc.html) | <li> [MySQL](https://dev.mysql.com/doc): 5.7, 8.0.x <li> [MariaDB](https://mariadb.org): 10.x <li> [PolarDB MySQL](https://www.aliyun.com/product/polardb): 5.7, 8.0.x <li> [PolarDB X](https://github.com/ApsaraDB/galaxysql): 2.0.1 <li> [RDS MySQL](https://www.aliyun.com/product/rds/mysql): 5.7, 8.0.x <li> [Aurora MySQL](https://aws.amazon.com/cn/rds/aurora): 5.7, 8.0.x | JDBC Driver: 8.0.16 | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
MySQL 5.6
has been supported in #396, we can add it for all mysql protocol database.
README.md
Outdated
| Protocol | Connector | Database | Driver | | ||
|------------|----------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------| | ||
| MySQL | [mysql-cdc](https://ververica.github.io/flink-cdc-connectors/master/content/connectors/mysql-cdc.html) | <li> [MySQL](https://dev.mysql.com/doc): 5.7, 8.0.x <li> [MariaDB](https://mariadb.org): 10.x <li> [PolarDB MySQL](https://www.aliyun.com/product/polardb): 5.7, 8.0.x <li> [PolarDB X](https://github.com/ApsaraDB/galaxysql): 2.0.1 <li> [RDS MySQL](https://www.aliyun.com/product/rds/mysql): 5.7, 8.0.x <li> [Aurora MySQL](https://aws.amazon.com/cn/rds/aurora): 5.7, 8.0.x | JDBC Driver: 8.0.16 | | ||
| PostgreSQL | [postgresql-cdc](https://ververica.github.io/flink-cdc-connectors/master/content/connectors/postgres-cdc.html) | <li> [PostgreSQL](https://www.postgresql.org): 9.6, 10, 11, 12 | JDBC Driver: 42.2.12 | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
when we cut branch release-2.2 from master, we don't want to change the link, could you use [postgresql-cdc](postgres-cdc.md)
?
README.md
Outdated
| Sqlserver | Database: 2017, 2019 <br/>JDBC Driver: 7.2.2.jre8| | ||
## Supported (Tested) Databases | ||
|
||
| Protocol | Connector | Database | Driver | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We shouldn't use protocol
word here after think twice. We always say one database vendor is compatible with MySQL but don’t say it follows MySQL protocol, and other databases are not protocols.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
+1
Update readme: Add links for connectors and databases, for 943