You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/content/connectors/oceanbase-cdc.md
+124Lines changed: 124 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,6 +16,16 @@ In order to set up the OceanBase CDC connector, the following table provides dep
16
16
</dependency>
17
17
```
18
18
19
+
If you want to use OceanBase JDBC driver to connect to the enterprise edition database, you should also include the following dependency in your class path.
20
+
21
+
```xml
22
+
<dependency>
23
+
<groupId>com.oceanbase</groupId>
24
+
<artifactId>oceanbase-client</artifactId>
25
+
<version>2.4.2</version>
26
+
</dependency>
27
+
```
28
+
19
29
### SQL Client JAR
20
30
21
31
```Download link is available only for stable releases.```
**Note:** flink-sql-connector-oceanbase-cdc-XXX-SNAPSHOT version is the code corresponding to the development branch. Users need to download the source code and compile the corresponding jar. Users should use the released version, such as [flink-sql-connector-oceanbase-cdc-2.2.1.jar](https://mvnrepository.com/artifact/com.ververica/flink-sql-connector-oceanbase-cdc), the released version will be available in the Maven central warehouse.
26
36
37
+
For JDBC driver, the cdc jar above already contains MySQL JDBC driver 5.1.47, which is our recommended version. Due to the license issue, we can not include the OceanBase JDBC driver in the cdc jar. If you need to use it, you can download it from [here](https://repo1.maven.org/maven2/com/oceanbase/oceanbase-client/2.4.2/oceanbase-client-2.4.2.jar) and put it under `<FLINK_HOME>/lib/`, you also need to set the start option `jdbc.driver` to `com.oceanbase.jdbc.Driver`.
38
+
27
39
Setup OceanBase and LogProxy Server
28
40
----------------------
29
41
@@ -251,6 +263,20 @@ The OceanBase CDC Connector contains some options for both sql and stream api as
251
263
<td>String</td>
252
264
<td>Working mode of `obcdc` in LogProxy, can be `storage` or `memory`.</td>
Copy file name to clipboardExpand all lines: flink-connector-mysql-cdc/src/main/java/com/ververica/cdc/connectors/mysql/table/MySqlTableSourceFactory.java
0 commit comments