Skip to content

Commit

Permalink
[issue-721] Upgrade Flink 1.17 (#722)
Browse files Browse the repository at this point in the history
Signed-off-by: Brian Zhou <b.zhou@dell.com>
  • Loading branch information
crazyzhou authored Oct 17, 2023
1 parent a55bfe1 commit faca104
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ supported versions of Flink and Pravega.

| Git Branch | Pravega Version | Flink Version | Status | Artifact Link |
|-------------------------------------------------------------------------------------|-----------------|---------------|-------------------|--------------------------------------------------------------------------------------|
| [master](https://github.com/pravega/flink-connectors) | 0.14 | 1.16 | Under Development | https://github.com/pravega/flink-connectors/packages/1441637 |
| [master](https://github.com/pravega/flink-connectors) | 0.14 | 1.17 | Under Development | https://github.com/pravega/flink-connectors/packages/1441637 |
| [r0.14-flink1.16](https://github.com/pravega/flink-connectors/tree/r0.14-flink1.16) | 0.14 | 1.16 | Under Development | https://github.com/pravega/flink-connectors/packages/1704300 |
| [r0.13](https://github.com/pravega/flink-connectors/tree/r0.13) | 0.13 | 1.16 | Released | https://repo1.maven.org/maven2/io/pravega/pravega-connectors-flink-1.16_2.12/0.13.0/ |
| [r0.13-flink1.15](https://github.com/pravega/flink-connectors/tree/r0.13-flink1.15) | 0.13 | 1.15 | Released | https://repo1.maven.org/maven2/io/pravega/pravega-connectors-flink-1.15_2.12/0.13.0/ |
| [r0.13-flink1.14](https://github.com/pravega/flink-connectors/tree/r0.13-flink1.14) | 0.13 | 1.14 | Released | https://repo1.maven.org/maven2/io/pravega/pravega-connectors-flink-1.14_2.12/0.13.0/ |
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# 3rd party Versions.
assertjVersion=3.23.1
checkstyleToolVersion=7.1
flinkVersion=1.16.0
flinkVersion=1.17.1
flinkScalaVersion=2.12
jacksonVersion=2.8.9
twitterMvnRepoVersion=4.3.4-TWTTR
Expand Down
7 changes: 6 additions & 1 deletion gradle/jacoco.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,9 @@ jacocoTestReport {
}
}

test { finalizedBy jacocoTestReport }
test {
jacoco {
excludes = ['**Metadata**$Handler']
}
finalizedBy jacocoTestReport
}
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,11 @@ public int getNumberOfParallelSubtasks() {
return 1;
}

@Override
public int getAttemptNumber() {
return 0;
}

@Override
public SinkWriterMetricGroup metricGroup() {
return metricGroup;
Expand Down

0 comments on commit faca104

Please sign in to comment.