Skip to content

Commit 7d09bcf

Browse files
dependabot[bot]mbode
authored andcommitted
Bump flinkVersion from 2.1.1 to 2.2.0
Bumps `flinkVersion` from 2.1.1 to 2.2.0. Updates `org.apache.flink:flink-streaming-java` from 2.1.1 to 2.2.0 - [Commits](apache/flink@release-2.1.1...release-2.2.0) Updates `org.apache.flink:flink-test-utils` from 2.1.1 to 2.2.0 --- updated-dependencies: - dependency-name: org.apache.flink:flink-streaming-java dependency-version: 2.2.0 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.apache.flink:flink-test-utils dependency-version: 2.2.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent ae2571c commit 7d09bcf

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM gradle:9.2.0-jdk21 as builder
22
COPY . .
33
RUN gradle shadowJar
44

5-
FROM flink:2.1.1-java21
5+
FROM flink:2.2.0-java21
66
RUN echo "metrics.reporters: prom" >> "$FLINK_HOME/conf/config.yaml"; \
77
echo "metrics.reporter.prom.factory.class: org.apache.flink.metrics.prometheus.PrometheusReporterFactory" >> "$FLINK_HOME/conf/config.yaml"
88
COPY --from=builder /home/gradle/build/libs/*.jar $FLINK_HOME/usrlib/

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[![Actions Status](https://github.com/mbode/flink-prometheus-example/workflows/Gradle/badge.svg)](https://github.com/mbode/flink-prometheus-example/actions)
22
[![codecov](https://codecov.io/gh/mbode/flink-prometheus-example/branch/master/graph/badge.svg)](https://codecov.io/gh/mbode/flink-prometheus-example)
3-
[![Flink v2.1.1](https://img.shields.io/badge/flink-v2.1.1-blue.svg)](https://github.com/apache/flink/releases/tag/release-2.1.1)
3+
[![Flink v2.2.0](https://img.shields.io/badge/flink-v2.2.0-blue.svg)](https://github.com/apache/flink/releases/tag/release-2.2.0)
44
[![Prometheus v3.6.0](https://img.shields.io/badge/prometheus-v3.6.0-blue.svg)](https://github.com/prometheus/prometheus/releases/tag/v3.6.0)
55

66
This repository contains the live demo to my talk _Monitoring Flink with Prometheus_, which I have given at:

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ java {
1818

1919
repositories { mavenCentral() }
2020

21-
val flinkVersion = "2.1.1"
21+
val flinkVersion = "2.2.0"
2222

2323
dependencies {
2424
compileOnly("org.apache.flink:flink-streaming-java:$flinkVersion")

0 commit comments

Comments
 (0)