Github user tillrohrmann commented on a diff in the pull request: https://github.com/apache/flink/pull/6284#discussion_r202075077 --- Diff: flink-core/src/main/java/org/apache/flink/configuration/CoreOptions.java --- @@ -181,12 +181,17 @@ * The config parameter defining the directories for temporary files, separated by * ",", "|", or the system's {@link java.io.File#pathSeparator}. */ - @Documentation.OverrideDefault("System.getProperty(\"java.io.tmpdir\")") + @Documentation.OverrideDefault("'LOCAL_DIRS' on Yarn and '_FLINK_TMP_DIR' on Mesos.") --- End diff -- We should also keep saying that in the standalone mode we use `System.getProperty("java.io.tmpdir")`
---