We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b7ab0c commit a6741d5Copy full SHA for a6741d5
flink/Dockerfile
@@ -16,10 +16,11 @@ RUN echo '#!/bin/sh' > /ex-docker-entrypoint.sh && \
16
COPY --from=lib_provider /libs/ /opt/flink/lib/
17
18
USER flink
19
-COPY flink-properties.yml /opt/flink/conf/
20
RUN mkdir -p /opt/flink/data && \
21
chmod -R 777 /opt/flink/data
22
+COPY flink-properties.yml /opt/flink/conf/
23
+
24
VOLUME /opt/flink/data
25
26
ENTRYPOINT [ "/ex-docker-entrypoint.sh" ]
flink/flink-properties.yml
@@ -1,6 +1,6 @@
1
taskmanager.numberOfTaskSlots: 8
2
3
-state.backend: filesystem
+state.backend.type: filesystem
4
state.checkpoints.dir: file:///opt/flink/data/checkpoints
5
state.savepoints.dir: file:///opt/flink/data/savepoints
6
0 commit comments