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
Because some APIs are incompatible between Flink 2.x and Flink 1.x, the project was refactored, resulting in the creation of the modules flink1 and flink2.
Flink1 supports Flink 1.15-1.20 and is compiled using JDK 1.8.
Flink2 supports Flink 2.0 and above and is compiled using JDK 17.
Copy file name to clipboardExpand all lines: README.md
+16-1Lines changed: 16 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,19 @@ under the License.
24
24
25
25
## Flink Doris Connector
26
26
27
-
Flink Doris Connector now support flink version from 1.11 to 1.20.
27
+
Flink Doris Connector supports the following Flink versions:
28
+
29
+
| Flink Version | JDK Requirement |
30
+
|:--------------|:----------------|
31
+
| 1.15.x | JDK 8 |
32
+
| 1.16.x | JDK 8 |
33
+
| 1.17.x | JDK 8 |
34
+
| 1.18.x | JDK 8 |
35
+
| 1.19.x | JDK 8 |
36
+
| 1.20.x | JDK 8 |
37
+
| 2.0.x | JDK 17 |
38
+
| 2.1.x | JDK 17 |
39
+
| 2.2.x | JDK 17 |
28
40
29
41
If you wish to contribute or use a connector from flink 1.13 (and earlier), please use the [branch-for-flink-before-1.13](https://github.com/apache/doris-flink-connector/tree/branch-for-flink-before-1.13)
30
42
@@ -37,6 +49,9 @@ More information about compilation and usage, please visit [Flink Doris Connecto
37
49
## How to Build
38
50
39
51
You need to copy customer_env.sh.tpl to customer_env.sh before build and you need to configure it before build.
52
+
53
+
> **JDK requirement:** Use JDK 8 for Flink 1.x, and JDK 17 for Flink 2.x.
0 commit comments