You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by ti...@apache.org on 2020/03/23 07:03:24 UTC

[flink] branch master updated (cdcc25c -> f56a075)

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

tison pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git.


    from cdcc25c  [FLINK-16652][orc] BytesColumnVector should init buffer in Hive 3.x
     add f56a075  [FLINK-15667][k8s] Support to mount custom Hadoop Configurations

No new revisions were added by this update.

Summary of changes:
 .../generated/kubernetes_config_configuration.html |   6 +
 .../configuration/KubernetesConfigOptions.java     |   7 +
 .../decorators/FlinkConfMountDecorator.java        |   2 +-
 .../decorators/HadoopConfMountDecorator.java       | 186 +++++++++++++++++++++
 .../factory/KubernetesJobManagerFactory.java       |   2 +
 .../factory/KubernetesTaskManagerFactory.java      |   2 +
 .../parameters/AbstractKubernetesParameters.java   |  29 ++++
 .../parameters/KubernetesParameters.java           |  11 ++
 .../apache/flink/kubernetes/utils/Constants.java   |   8 +-
 .../flink/kubernetes/KubernetesTestBase.java       |  16 ++
 .../decorators/HadoopConfMountDecoratorTest.java   | 178 ++++++++++++++++++++
 .../factory/KubernetesJobManagerFactoryTest.java   |  53 +++++-
 .../factory/KubernetesTaskManagerFactoryTest.java  |  14 +-
 13 files changed, 507 insertions(+), 7 deletions(-)
 create mode 100644 flink-kubernetes/src/main/java/org/apache/flink/kubernetes/kubeclient/decorators/HadoopConfMountDecorator.java
 create mode 100644 flink-kubernetes/src/test/java/org/apache/flink/kubernetes/kubeclient/decorators/HadoopConfMountDecoratorTest.java