Skip to content
Snippets Groups Projects
Commit 15f6fcde authored by Sören Henning's avatar Sören Henning
Browse files

Upgrade to Beam 2.35

parent 93ec2862
No related branches found
No related tags found
2 merge requests!227Draft: Test child pipeline,!223Upgrade Beam version
Pipeline #5953 failed
...@@ -19,11 +19,11 @@ dependencies { ...@@ -19,11 +19,11 @@ dependencies {
implementation 'com.google.code.gson:gson:2.8.2' implementation 'com.google.code.gson:gson:2.8.2'
implementation 'com.google.guava:guava:24.1-jre' implementation 'com.google.guava:guava:24.1-jre'
implementation('org.apache.beam:beam-sdks-java-io-kafka:2.22.0'){ implementation('org.apache.beam:beam-sdks-java-io-kafka:2.35.0'){
exclude group: 'org.apache.kafka', module: 'kafka-clients' exclude group: 'org.apache.kafka', module: 'kafka-clients'
} }
implementation group: 'org.slf4j', name: 'slf4j-simple', version: '1.7.30' implementation group: 'org.slf4j', name: 'slf4j-simple', version: '1.7.30'
implementation group: 'org.apache.beam', name: 'beam-sdks-java-core', version: '2.22.0' implementation group: 'org.apache.beam', name: 'beam-sdks-java-core', version: '2.35.0'
runtimeOnly 'org.slf4j:slf4j-api:1.7.32' runtimeOnly 'org.slf4j:slf4j-api:1.7.32'
runtimeOnly 'org.slf4j:slf4j-jdk14:1.7.32' runtimeOnly 'org.slf4j:slf4j-jdk14:1.7.32'
......
...@@ -3,6 +3,6 @@ plugins { ...@@ -3,6 +3,6 @@ plugins {
} }
dependencies { dependencies {
implementation group: 'org.apache.beam', name: 'beam-runners-flink-1.12', version: '2.27.0' implementation group: 'org.apache.beam', name: 'beam-runners-flink-1.13', version: '2.35.0'
implementation group: 'org.apache.flink', name: 'flink-statebackend-rocksdb_2.11', version: '1.12.0' implementation group: 'org.apache.flink', name: 'flink-statebackend-rocksdb_2.11', version: '1.13.0'
} }
\ No newline at end of file
...@@ -18,7 +18,7 @@ repositories { ...@@ -18,7 +18,7 @@ repositories {
} }
} }
def apacheBeamVersion = '2.22.0' //'2.27.0' // '2.34.0' def apacheBeamVersion = '2.35.0'
dependencies { dependencies {
// These dependencies are used internally, and not exposed to consumers on their own compile classpath. // These dependencies are used internally, and not exposed to consumers on their own compile classpath.
......
...@@ -3,7 +3,7 @@ plugins { ...@@ -3,7 +3,7 @@ plugins {
} }
dependencies { dependencies {
implementation('org.apache.beam:beam-runners-samza:2.22.0') { implementation('org.apache.beam:beam-runners-samza:2.35.0') {
exclude group: 'org.apache.samza', module: 'samza-yarn_2.11' exclude group: 'org.apache.samza', module: 'samza-yarn_2.11'
} }
} }
\ No newline at end of file
...@@ -45,7 +45,7 @@ public class AggregatedActivePowerRecordCoder extends Coder<AggregatedActivePowe ...@@ -45,7 +45,7 @@ public class AggregatedActivePowerRecordCoder extends Coder<AggregatedActivePowe
@Override @Override
public List<? extends Coder<?>> getCoderArguments() { public List<? extends Coder<?>> getCoderArguments() {
return null; return List.of();
} }
@Override @Override
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment