wipatrick opened a new pull request #6: using same checkpoint directory for docker volume mapping and state.checkpoint.dir URL: https://github.com/apache/flink-playgrounds/pull/6 This PR fixes a minor typo for the checkpoint volume mapping in *docker-compose.yaml*. While *flink-conf.yaml* uses this config: ``` state.checkpoints.dir: file:///tmp/flink-checkpoints-directory ``` *docker-compose.yaml* uses the following: ``` ... volumes: - ./conf:/opt/flink/conf - flink-checkpoint-directory:/tmp/flink-checkpoint-directory - /tmp/flink-savepoints-directory:/tmp/flink-savepoints-directory ... volumes: flink-checkpoint-directory: ``` **Solution**: ``` volumes: - ./conf:/opt/flink/conf - flink-checkpoints-directory:/tmp/flink-checkpoints-directory - /tmp/flink-savepoints-directory:/tmp/flink-savepoints-directory ... volumes: flink-checkpoints-directory: ```
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
