Skip to content

Commit 9ba7bd6

Browse files
authored
use Flink 1.19 consistently throughout example jobs (#86)
1 parent edd5e24 commit 9ba7bd6

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

examples/custom-pipelines-hello-world/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ Run the following to build this example project using [Gradle](https://gradle.or
2626

2727
Set the `job_file_path` property for the pipeline resource in _decodable-resources.yaml_ depending on your chosen build tool:
2828

29-
* `target/custom-pipelines-hello-world-0.1.jar` when using Maven
30-
* `build/libs/custom-pipelines-hello-world-0.1-all.jar` when using Gradle
29+
* `target/custom-pipelines-hello-world-0.2.jar` when using Maven
30+
* `build/libs/custom-pipelines-hello-world-0.2-all.jar` when using Gradle
3131

3232
Deploy the example to Decodable using the CLI:
3333

examples/custom-pipelines-hello-world/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ group = 'co.decodable.examples'
1616
version = '0.2'
1717

1818
ext {
19-
flinkVersion = '1.20.1'
20-
kafkaConnectorVersion = '3.4.0-1.20'
19+
flinkVersion = '1.19.2'
20+
kafkaConnectorVersion = '3.3.0-1.19'
2121
log4jVersion = '2.17.1'
22-
sdkVersion = '1.20.1-1.0.0.Beta9'
22+
sdkVersion = '1.19.2-1.0.0.Beta9'
2323
}
2424

2525
repositories {

examples/custom-pipelines-hello-world/decodable-resources.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,17 +123,17 @@ spec:
123123
type: JAVA
124124

125125
# When building with Maven
126-
job_file_path: target/custom-pipelines-hello-world-0.2.jar
126+
# job_file_path: target/custom-pipelines-hello-world-0.2.jar
127127
# When building with Gradle
128-
# job_file_path: build/libs/custom-pipelines-hello-world-0.2-all.jar
128+
job_file_path: build/libs/custom-pipelines-hello-world-0.2-all.jar
129129

130130
# When running the DataStream API Job
131131
entry_class: co.decodable.examples.cpdemo.DataStreamJob
132132
# When running the Table API Job
133133
# entry_class: co.decodable.examples.cpdemo.TableAPIJob
134134

135135
properties:
136-
flink_version: 1.16-java11
136+
flink_version: 1.19-java11
137137
execution:
138138
active: true
139139
task_count: 1

examples/custom-pipelines-hello-world/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@
2525
<scala.binary.version>2.12</scala.binary.version>
2626
<maven.compiler.source>${target.java.version}</maven.compiler.source>
2727
<maven.compiler.target>${target.java.version}</maven.compiler.target>
28-
<decodable.pipeline.sdk.version>1.20.1-1.0.0.Beta9</decodable.pipeline.sdk.version>
29-
<flink.kafka.connector.version>3.4.0-1.20</flink.kafka.connector.version>
28+
<decodable.pipeline.sdk.version>1.19.2-1.0.0.Beta9</decodable.pipeline.sdk.version>
29+
<flink.kafka.connector.version>3.3.0-1.19</flink.kafka.connector.version>
3030
<aws.msk.iam.auth.version>1.1.6</aws.msk.iam.auth.version>
31-
<flink.version>1.20.1</flink.version>
31+
<flink.version>1.19.2</flink.version>
3232
<log4j.version>2.17.1</log4j.version>
3333
</properties>
3434

0 commit comments

Comments
 (0)