Skip to content

Commit

Permalink
Merge pull request #196 from TouK/1.18-release
Browse files Browse the repository at this point in the history
1.18 release
  • Loading branch information
arkadius authored Nov 22, 2024
2 parents e3395d5 + e5d174d commit bb3b0dd
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
@@ -1 +1 @@
NUSSKNACKER_VERSION=1.17.0
NUSSKNACKER_VERSION=1.18.0
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ services:
build:
context: ./flink/
args:
FLINK_VERSION: "1.18.1-scala_2.12-java11"
FLINK_VERSION: "1.19.1-scala_2.12-java11"
no_cache: true
restart: unless-stopped
command: jobmanager
Expand All @@ -246,7 +246,7 @@ services:
build:
context: ./flink/
args:
FLINK_VERSION: "1.18.1-scala_2.12-java11"
FLINK_VERSION: "1.19.1-scala_2.12-java11"
no_cache: true
restart: unless-stopped
command: taskmanager
Expand Down
3 changes: 2 additions & 1 deletion flink/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,11 @@ RUN echo '#!/bin/sh' > /ex-docker-entrypoint.sh && \
COPY --from=lib_provider /libs/ /opt/flink/lib/

USER flink
COPY flink-properties.yml /opt/flink/conf/
RUN mkdir -p /opt/flink/data && \
chmod -R 777 /opt/flink/data

COPY flink-properties.yml /opt/flink/conf/

VOLUME /opt/flink/data

ENTRYPOINT [ "/ex-docker-entrypoint.sh" ]
6 changes: 3 additions & 3 deletions flink/flink-properties.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
taskmanager.numberOfTaskSlots: 8

state.backend: filesystem
state.backend.type: filesystem
state.checkpoints.dir: file:///opt/flink/data/checkpoints
state.savepoints.dir: file:///opt/flink/data/savepoints

Expand All @@ -21,8 +21,8 @@ metrics.reporter.influxdb_reporter.port: 8087
metrics.reporter.influxdb_reporter.db: nussknacker_metrics
metrics.reporter.influxdb_reporter.scope.variables.excludes: tm_id;job_id;task_id;task_attempt_id;operator_id;task_attempt_num;task_name
metrics.scope.jm: local.<host>.jobmanagerGlobal
metrics.scope.jm.job: local.<host>.jobmanagerJob.<job_name>
metrics.scope.jm-job: local.<host>.jobmanagerJob.<job_name>
metrics.scope.tm: local.<host>.taskmanagerGlobal.<tm_id>
metrics.scope.tm.job: local.<host>.taskmanagerJob.<tm_id>.<job_name>
metrics.scope.tm-job: local.<host>.taskmanagerJob.<tm_id>.<job_name>
metrics.scope.task: local.<host>.taskmanagerTask.<tm_id>.<job_name>.<task_name>.<subtask_index>
metrics.scope.operator: local.<host>.taskmanagerTask.<tm_id>.<job_name>.<operator_name>.<subtask_index>

0 comments on commit bb3b0dd

Please sign in to comment.