You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by tr...@apache.org on 2019/10/31 13:01:54 UTC

[flink] branch release-1.9 updated (4368f1d -> 0af24d7)

This is an automated email from the ASF dual-hosted git repository.

trohrmann pushed a change to branch release-1.9
in repository https://gitbox.apache.org/repos/asf/flink.git.


    from 4368f1d  [FLINK-14547][table-planner-blink] Fix UDF cannot in the join condition in blink planner for Table API.
     add af5f3a4  [FLINK-14561] Don't write FLINK_PLUGINS_DIR env variable to Configuration
     add 68cb12f  [hotfix] Fix checkstyle violations in FlinkDistributionOverlayTest
     add 7de0ae2  [hotfix] Fix checkstyle violations in FlinkDistributionOverlay
     add d1841554 [hotfix] Introduce ContainerSpecification#createDynamicProperty
     add bfd9c7f  [hotfix] Fix checkstyle violations in ContainerSpecification
     add d460278  [hotfix] Rename and move MesosEntrypointUtils to o.a.f.mesos.util.MesosUtils
     add d2844b0  [hotfix] Rename ContainerSpecification#dynamicConfiguration to flinkConfiguration
     add ec366e3  [hotfix] Remove clone method from ContainerSpecification
     add 2c6d4ff  [hotfix][mesos] Remove dynamicProperties from ContainerSpecification
     add 97ff5a0  [FLINK-14074][mesos] Forward configuration to Mesos TaskExecutor
     add 0af24d7  [hotfix][mesos] Add more logging information to LaunchableMesosWorker

No new revisions were added by this update.

Summary of changes:
 .../flink/configuration/ConfigConstants.java       |  3 +
 .../flink/configuration/GlobalConfiguration.java   | 25 -------
 .../org/apache/flink/core/plugin/PluginConfig.java | 19 +++--
 .../apache/flink/core/plugin/PluginConfigTest.java | 80 ++++++++++++++++++++++
 .../entrypoint/MesosJobClusterEntrypoint.java      | 28 ++------
 .../entrypoint/MesosSessionClusterEntrypoint.java  | 28 ++------
 .../mesos/entrypoint/MesosTaskExecutorRunner.java  |  3 +-
 .../clusterframework/LaunchableMesosWorker.java    |  8 ++-
 .../MesosResourceManagerFactory.java               | 19 ++---
 .../MesosUtils.java}                               | 18 ++---
 .../LaunchableMesosWorkerTest.java                 | 37 ++++++++++
 .../clusterframework/ContainerSpecification.java   | 74 +++++++++++---------
 .../overlays/FlinkDistributionOverlay.java         | 34 ++++-----
 .../overlays/HadoopConfOverlay.java                |  2 +-
 .../clusterframework/overlays/KeytabOverlay.java   |  2 +-
 .../clusterframework/overlays/SSLStoreOverlay.java |  4 +-
 .../overlays/FlinkDistributionOverlayTest.java     | 32 ++-------
 .../overlays/HadoopConfOverlayTest.java            |  2 +-
 .../overlays/KeytabOverlayTest.java                |  2 +-
 .../overlays/SSLStoreOverlayTest.java              |  4 +-
 .../flink/yarn/AbstractYarnClusterDescriptor.java  | 15 ++--
 21 files changed, 241 insertions(+), 198 deletions(-)
 create mode 100644 flink-core/src/test/java/org/apache/flink/core/plugin/PluginConfigTest.java
 rename flink-mesos/src/main/java/org/apache/flink/mesos/{entrypoint/MesosEntrypointUtils.java => util/MesosUtils.java} (93%)