You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by GitBox <gi...@apache.org> on 2020/10/19 16:46:16 UTC

[GitHub] [flink] QingdongZeng3 opened a new pull request #13690: [FLINK-16595][YARN]support more HDFS nameServices in yarn mode when security enabled. Is…

QingdongZeng3 opened a new pull request #13690:
URL: https://github.com/apache/flink/pull/13690


   …sue 16595
   
   <!--
   *Thank you very much for contributing to Apache Flink - we are happy that you want to help us improve Flink. To help the community review your contribution in the best possible way, please go through the checklist below, which will get the contribution into a shape in which it can be best reviewed.*
   
   *Please understand that we do not do this to make contributions to Flink a hassle. In order to uphold a high standard of quality for code contributions, while at the same time managing a large number of contributions, we need contributors to prepare the contributions well, and give reviewers enough contextual information for the review. Please also understand that contributions that do not follow this guide will take longer to review and thus typically be picked up with lower priority by the community.*
   
   ## Contribution Checklist
   
     - Make sure that the pull request corresponds to a [JIRA issue](https://issues.apache.org/jira/projects/FLINK/issues). Exceptions are made for typos in JavaDoc or documentation files, which need no JIRA issue.
   
     https://issues.apache.org/jira/browse/FLINK-16595
   
   
     - Name the pull request in the form "[FLINK-XXXX] [component] Title of the pull request", where *FLINK-XXXX* should be replaced by the actual issue number. Skip *component* if you are unsure about which is the best component.
     Typo fixes that have no associated JIRA issue should be named following this pattern: `[hotfix] [docs] Fix typo in event time introduction` or `[hotfix] [javadocs] Expand JavaDoc for PuncuatedWatermarkGenerator`.
   
   
   **(The sections below can be removed for hotfixes of typos)**
   -->
   
   ## What is the purpose of the change
   
   This pull request support more HDFS nameServices in yarn mode when security enabled.
   
   
   ## Brief change log
   
   *(for example:)*
     - *The TaskInfo is stored in the blob store on job creation time as a persistent artifact*
     - *Deployments RPC transmits only the blob storage reference*
     - *TaskManagers retrieve the TaskInfo from the blob cache*
   
   
   ## Verifying this change
   
   This change is a trivial rework / code cleanup without any test coverage.
   
   
   ## Does this pull request potentially affect one of the following parts:
   
     - Dependencies (does it add or upgrade a dependency): ( no)
     - The public API, i.e., is any changed class annotated with `@Public(Evolving)`: ( no)
     - The serializers: (no )
     - The runtime per-record code paths (performance sensitive): ( no)
     - Anything that affects deployment or recovery: JobManager (and its components), Checkpointing, Kubernetes/Yarn/Mesos, ZooKeeper: ( no )
     - The S3 file system connector: ( no )
   
   ## Documentation
   
     - Does this pull request introduce a new feature? (yes )
     - If yes, how is the feature documented? ( docs )
   


----------------------------------------------------------------
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:
users@infra.apache.org



[GitHub] [flink] rmetzger commented on a change in pull request #13690: [FLINK-16595][YARN]support more HDFS nameServices in yarn mode when security enabled. Is…

Posted by GitBox <gi...@apache.org>.
rmetzger commented on a change in pull request #13690:
URL: https://github.com/apache/flink/pull/13690#discussion_r510669615



##########
File path: flink-yarn/src/main/java/org/apache/flink/yarn/configuration/YarnConfigOptions.java
##########
@@ -294,6 +294,13 @@
 				"they doesn't need to be downloaded every time for each application. An example could be " +
 				"hdfs://$namenode_address/path/of/flink/lib");
 
+	public static final ConfigOption<List<String>> YARN_ACCESS =
+		key("yarn.access.hadoopFileSystems")

Review comment:
       I believe it would be better to use `yarn.security.kerberos.additionalFileSystems`, because we have already a config key prefixed with `yarn.security.kerberos.` in the `yarn.` keys.

##########
File path: flink-yarn/src/main/java/org/apache/flink/yarn/configuration/YarnConfigOptions.java
##########
@@ -294,6 +294,13 @@
 				"they doesn't need to be downloaded every time for each application. An example could be " +
 				"hdfs://$namenode_address/path/of/flink/lib");
 
+	public static final ConfigOption<List<String>> YARN_ACCESS =
+		key("yarn.access.hadoopFileSystems")
+			.stringType()
+			.asList()
+			.noDefaultValue()
+			.withDescription("If you have extra Hadoop filesystems and enabled security, list all of those URLs.");

Review comment:
       ```suggestion
   			.withDescription("A comma-separated list of additional Kerberos-secured Hadoop filesystems Flink is going to access. For example, yarn.security.kerberos.additionalFileSystems=hdfs://namenode2:9002,hdfs://namenode3:9003. The client submitting to YARN needs to have access to these file systems to retrieve the security tokens.");
   ```




----------------------------------------------------------------
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:
users@infra.apache.org



[GitHub] [flink] flinkbot edited a comment on pull request #13690: [FLINK-16595][YARN]support more HDFS nameServices in yarn mode when security enabled. Is…

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #13690:
URL: https://github.com/apache/flink/pull/13690#issuecomment-712304240


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "8a6f115753059c365915d4e41570506e82397a4a",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7878",
       "triggerID" : "8a6f115753059c365915d4e41570506e82397a4a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 8a6f115753059c365915d4e41570506e82397a4a Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7878) 
   * 67f01dfa8c82c0575564f7d20961f36a3d0c623b UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
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:
users@infra.apache.org



[GitHub] [flink] flinkbot edited a comment on pull request #13690: [FLINK-16595][YARN]support more HDFS nameServices in yarn mode when security enabled. Is…

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #13690:
URL: https://github.com/apache/flink/pull/13690#issuecomment-712304240


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "8a6f115753059c365915d4e41570506e82397a4a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7878",
       "triggerID" : "8a6f115753059c365915d4e41570506e82397a4a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7951",
       "triggerID" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 67f01dfa8c82c0575564f7d20961f36a3d0c623b Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7951) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
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:
users@infra.apache.org



[GitHub] [flink] flinkbot edited a comment on pull request #13690: [FLINK-16595][YARN]support more HDFS nameServices in yarn mode when security enabled. Is…

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #13690:
URL: https://github.com/apache/flink/pull/13690#issuecomment-712304240


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "8a6f115753059c365915d4e41570506e82397a4a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7878",
       "triggerID" : "8a6f115753059c365915d4e41570506e82397a4a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7951",
       "triggerID" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7971",
       "triggerID" : "713234240",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7951",
       "triggerID" : "713234240",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7971",
       "triggerID" : "713237396",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "563501f776b532c88a7e3a5d3b180cb76bdf094c",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "713547160",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "563501f776b532c88a7e3a5d3b180cb76bdf094c",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "713547249",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "",
       "status" : "CANCELED",
       "url" : "TBD",
       "triggerID" : "713547160",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "",
       "status" : "CANCELED",
       "url" : "TBD",
       "triggerID" : "713547249",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "563501f776b532c88a7e3a5d3b180cb76bdf094c",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "563501f776b532c88a7e3a5d3b180cb76bdf094c",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   *  Unknown: [CANCELED](TBD) 
   * 563501f776b532c88a7e3a5d3b180cb76bdf094c UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
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:
users@infra.apache.org



[GitHub] [flink] QingdongZeng3 commented on pull request #13690: [FLINK-16595][YARN]support more HDFS nameServices in yarn mode when security enabled. Is…

Posted by GitBox <gi...@apache.org>.
QingdongZeng3 commented on pull request #13690:
URL: https://github.com/apache/flink/pull/13690#issuecomment-713237396


   @flinkbot run travis  
   Hi all, I want to re-run  the Failed CI,what shall I do? Is this command  useful?


----------------------------------------------------------------
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:
users@infra.apache.org



[GitHub] [flink] QingdongZeng3 commented on pull request #13690: [FLINK-16595][YARN]support more HDFS nameServices in yarn mode when security enabled. Is…

Posted by GitBox <gi...@apache.org>.
QingdongZeng3 commented on pull request #13690:
URL: https://github.com/apache/flink/pull/13690#issuecomment-715322368


   > > > Have you tested this change with multiple kerberos-enabled NameNodes?
   > 
   > > yes ,It has works in my production environment for a long time.
   > 
   > Okay, that's great to hear! If extending the e2e tests turns out to be extremely difficult, I would also be fine with merging this change without tests, given that this is a non critical add on feature that is difficult to test.
   > But first it would be nice if you could look into the e2e tests. In my opinion it should be possible. Sneaking in the right 2nd namenode config could be a bit difficult, but there's probably a HADOOP_CONF_DIR environment variable (or HADOOP_CLASSPATH) variable that you need to temporary overwrite for the 2nd NameNode)
   
   Hi Robert,
   Through team members, I learned that we use our own independent test system and don't have an environment for E2E tests using docker, it seems difficult to implement this test. As you say, this is a non critical add on feature  , and  it wouldn't affect any other functions, so I  expect to merge this change without e2e test,Thanks!


----------------------------------------------------------------
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:
users@infra.apache.org



[GitHub] [flink] rmetzger edited a comment on pull request #13690: [FLINK-16595][YARN]support more HDFS nameServices in yarn mode when security enabled. Is…

Posted by GitBox <gi...@apache.org>.
rmetzger edited a comment on pull request #13690:
URL: https://github.com/apache/flink/pull/13690#issuecomment-714968604


   Have you tested this change with multiple kerberos-enabled NameNodes?


----------------------------------------------------------------
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:
users@infra.apache.org



[GitHub] [flink] flinkbot edited a comment on pull request #13690: [FLINK-16595][YARN]support more HDFS nameServices in yarn mode when security enabled. Is…

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #13690:
URL: https://github.com/apache/flink/pull/13690#issuecomment-712304240


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "8a6f115753059c365915d4e41570506e82397a4a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7878",
       "triggerID" : "8a6f115753059c365915d4e41570506e82397a4a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7951",
       "triggerID" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7971",
       "triggerID" : "713234240",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7951",
       "triggerID" : "713234240",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7971",
       "triggerID" : "713237396",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "563501f776b532c88a7e3a5d3b180cb76bdf094c",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8018",
       "triggerID" : "713547160",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "563501f776b532c88a7e3a5d3b180cb76bdf094c",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8018",
       "triggerID" : "713547249",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "563501f776b532c88a7e3a5d3b180cb76bdf094c",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8018",
       "triggerID" : "563501f776b532c88a7e3a5d3b180cb76bdf094c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "",
       "status" : "DELETED",
       "url" : "TBD",
       "triggerID" : "713547160",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "",
       "status" : "DELETED",
       "url" : "TBD",
       "triggerID" : "713547249",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "563501f776b532c88a7e3a5d3b180cb76bdf094c",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8036",
       "triggerID" : "713702630",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * 563501f776b532c88a7e3a5d3b180cb76bdf094c Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8018) Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8036) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
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:
users@infra.apache.org



[GitHub] [flink] flinkbot commented on pull request #13690: [FLINK-16595][YARN]support more HDFS nameServices in yarn mode when security enabled. Is…

Posted by GitBox <gi...@apache.org>.
flinkbot commented on pull request #13690:
URL: https://github.com/apache/flink/pull/13690#issuecomment-712304240


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "8a6f115753059c365915d4e41570506e82397a4a",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "8a6f115753059c365915d4e41570506e82397a4a",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 8a6f115753059c365915d4e41570506e82397a4a UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
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:
users@infra.apache.org



[GitHub] [flink] rmetzger commented on pull request #13690: [FLINK-16595][YARN]support more HDFS nameServices in yarn mode when security enabled. Is…

Posted by GitBox <gi...@apache.org>.
rmetzger commented on pull request #13690:
URL: https://github.com/apache/flink/pull/13690#issuecomment-714959084


   I will take a look at the pull request!


----------------------------------------------------------------
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:
users@infra.apache.org



[GitHub] [flink] flinkbot edited a comment on pull request #13690: [FLINK-16595][YARN]support more HDFS nameServices in yarn mode when security enabled. Is…

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #13690:
URL: https://github.com/apache/flink/pull/13690#issuecomment-712304240


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "8a6f115753059c365915d4e41570506e82397a4a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7878",
       "triggerID" : "8a6f115753059c365915d4e41570506e82397a4a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7951",
       "triggerID" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7971",
       "triggerID" : "713234240",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7951",
       "triggerID" : "713234240",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7971",
       "triggerID" : "713237396",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "563501f776b532c88a7e3a5d3b180cb76bdf094c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8018",
       "triggerID" : "713547160",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "563501f776b532c88a7e3a5d3b180cb76bdf094c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8018",
       "triggerID" : "713547249",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "563501f776b532c88a7e3a5d3b180cb76bdf094c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8018",
       "triggerID" : "563501f776b532c88a7e3a5d3b180cb76bdf094c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "",
       "status" : "DELETED",
       "url" : "TBD",
       "triggerID" : "713547160",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "",
       "status" : "DELETED",
       "url" : "TBD",
       "triggerID" : "713547249",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "563501f776b532c88a7e3a5d3b180cb76bdf094c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8036",
       "triggerID" : "713702630",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "518581ab52a2d976ff344404a6828cec23c260f9",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8039",
       "triggerID" : "518581ab52a2d976ff344404a6828cec23c260f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "518581ab52a2d976ff344404a6828cec23c260f9",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8054",
       "triggerID" : "714144954",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "518581ab52a2d976ff344404a6828cec23c260f9",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8039",
       "triggerID" : "714144954",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "a689eb093d75ad658d56b4f1d1eb2701689f9e3b",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "a689eb093d75ad658d56b4f1d1eb2701689f9e3b",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 518581ab52a2d976ff344404a6828cec23c260f9 Azure: [SUCCESS](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8054) Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8039) 
   * a689eb093d75ad658d56b4f1d1eb2701689f9e3b UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
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:
users@infra.apache.org



[GitHub] [flink] rmetzger commented on pull request #13690: [FLINK-16595][YARN]support more HDFS nameServices in yarn mode when security enabled. Is…

Posted by GitBox <gi...@apache.org>.
rmetzger commented on pull request #13690:
URL: https://github.com/apache/flink/pull/13690#issuecomment-715011784


   > > Have you tested this change with multiple kerberos-enabled NameNodes?
   >yes ,It has works in my production environment for a long time.


----------------------------------------------------------------
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:
users@infra.apache.org



[GitHub] [flink] QingdongZeng3 commented on a change in pull request #13690: [FLINK-16595][YARN]support more HDFS nameServices in yarn mode when security enabled. Is…

Posted by GitBox <gi...@apache.org>.
QingdongZeng3 commented on a change in pull request #13690:
URL: https://github.com/apache/flink/pull/13690#discussion_r510678304



##########
File path: flink-yarn/src/main/java/org/apache/flink/yarn/configuration/YarnConfigOptions.java
##########
@@ -294,6 +294,13 @@
 				"they doesn't need to be downloaded every time for each application. An example could be " +
 				"hdfs://$namenode_address/path/of/flink/lib");
 
+	public static final ConfigOption<List<String>> YARN_ACCESS =
+		key("yarn.access.hadoopFileSystems")

Review comment:
       
   > I believe it would be good to look into covering this change in our Kerberos end to end tests, to guarantee this is properly working.
   > 
   > You should be able to extend the end to end test defined in `test_yarn_job_kerberos_docker.sh` for this.
   > You will probably need to set up a secondary namenode configuration in flink-end-to-end-tests/test-scripts/docker-hadoop-secure-cluster/config, create additional keys in `bootstrap.sh` and launch a second nameNode there.
   
   okay,I will follow your advice. Thanks!




----------------------------------------------------------------
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:
users@infra.apache.org



[GitHub] [flink] flinkbot edited a comment on pull request #13690: [FLINK-16595][YARN]support more HDFS nameServices in yarn mode when security enabled. Is…

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #13690:
URL: https://github.com/apache/flink/pull/13690#issuecomment-712304240


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "8a6f115753059c365915d4e41570506e82397a4a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7878",
       "triggerID" : "8a6f115753059c365915d4e41570506e82397a4a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7951",
       "triggerID" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7971",
       "triggerID" : "713234240",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7951",
       "triggerID" : "713234240",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7971",
       "triggerID" : "713237396",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "563501f776b532c88a7e3a5d3b180cb76bdf094c",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8018",
       "triggerID" : "713547160",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "563501f776b532c88a7e3a5d3b180cb76bdf094c",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8018",
       "triggerID" : "713547249",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "563501f776b532c88a7e3a5d3b180cb76bdf094c",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8018",
       "triggerID" : "563501f776b532c88a7e3a5d3b180cb76bdf094c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "",
       "status" : "DELETED",
       "url" : "TBD",
       "triggerID" : "713547160",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "",
       "status" : "DELETED",
       "url" : "TBD",
       "triggerID" : "713547249",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "563501f776b532c88a7e3a5d3b180cb76bdf094c",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8036",
       "triggerID" : "713702630",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "518581ab52a2d976ff344404a6828cec23c260f9",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "518581ab52a2d976ff344404a6828cec23c260f9",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 563501f776b532c88a7e3a5d3b180cb76bdf094c Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8018) Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8036) 
   * 518581ab52a2d976ff344404a6828cec23c260f9 UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
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:
users@infra.apache.org



[GitHub] [flink] QingdongZeng3 edited a comment on pull request #13690: [FLINK-16595][YARN]support more HDFS nameServices in yarn mode when security enabled. Is…

Posted by GitBox <gi...@apache.org>.
QingdongZeng3 edited a comment on pull request #13690:
URL: https://github.com/apache/flink/pull/13690#issuecomment-713237396


   @flinkbot run travis  


----------------------------------------------------------------
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:
users@infra.apache.org



[GitHub] [flink] QingdongZeng3 commented on pull request #13690: [FLINK-16595][YARN]support more HDFS nameServices in yarn mode when security enabled. Is…

Posted by GitBox <gi...@apache.org>.
QingdongZeng3 commented on pull request #13690:
URL: https://github.com/apache/flink/pull/13690#issuecomment-714144954


   @flinkbot run azure
   @flinkbot run travis


----------------------------------------------------------------
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:
users@infra.apache.org



[GitHub] [flink] flinkbot edited a comment on pull request #13690: [FLINK-16595][YARN]support more HDFS nameServices in yarn mode when security enabled. Is…

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #13690:
URL: https://github.com/apache/flink/pull/13690#issuecomment-712304240


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "8a6f115753059c365915d4e41570506e82397a4a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7878",
       "triggerID" : "8a6f115753059c365915d4e41570506e82397a4a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7951",
       "triggerID" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7971",
       "triggerID" : "713234240",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7951",
       "triggerID" : "713234240",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7971",
       "triggerID" : "713237396",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "563501f776b532c88a7e3a5d3b180cb76bdf094c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8018",
       "triggerID" : "713547160",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "563501f776b532c88a7e3a5d3b180cb76bdf094c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8018",
       "triggerID" : "713547249",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "563501f776b532c88a7e3a5d3b180cb76bdf094c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8018",
       "triggerID" : "563501f776b532c88a7e3a5d3b180cb76bdf094c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "",
       "status" : "DELETED",
       "url" : "TBD",
       "triggerID" : "713547160",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "",
       "status" : "DELETED",
       "url" : "TBD",
       "triggerID" : "713547249",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "563501f776b532c88a7e3a5d3b180cb76bdf094c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8036",
       "triggerID" : "713702630",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "518581ab52a2d976ff344404a6828cec23c260f9",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8039",
       "triggerID" : "518581ab52a2d976ff344404a6828cec23c260f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "518581ab52a2d976ff344404a6828cec23c260f9",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8054",
       "triggerID" : "714144954",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "518581ab52a2d976ff344404a6828cec23c260f9",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8039",
       "triggerID" : "714144954",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * 518581ab52a2d976ff344404a6828cec23c260f9 Azure: [SUCCESS](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8054) Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8039) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
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:
users@infra.apache.org



[GitHub] [flink] rmetzger closed pull request #13690: [FLINK-16595][YARN]support more HDFS nameServices in yarn mode when security enabled. Is…

Posted by GitBox <gi...@apache.org>.
rmetzger closed pull request #13690:
URL: https://github.com/apache/flink/pull/13690


   


----------------------------------------------------------------
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:
users@infra.apache.org



[GitHub] [flink] QingdongZeng3 commented on pull request #13690: [FLINK-16595][YARN]support more HDFS nameServices in yarn mode when security enabled. Is…

Posted by GitBox <gi...@apache.org>.
QingdongZeng3 commented on pull request #13690:
URL: https://github.com/apache/flink/pull/13690#issuecomment-716951090


   Thanks for the review and Merging!


----------------------------------------------------------------
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:
users@infra.apache.org



[GitHub] [flink] flinkbot edited a comment on pull request #13690: [FLINK-16595][YARN]support more HDFS nameServices in yarn mode when security enabled. Is…

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #13690:
URL: https://github.com/apache/flink/pull/13690#issuecomment-712304240


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "8a6f115753059c365915d4e41570506e82397a4a",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7878",
       "triggerID" : "8a6f115753059c365915d4e41570506e82397a4a",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 8a6f115753059c365915d4e41570506e82397a4a Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7878) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
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:
users@infra.apache.org



[GitHub] [flink] flinkbot edited a comment on pull request #13690: [FLINK-16595][YARN]support more HDFS nameServices in yarn mode when security enabled. Is…

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #13690:
URL: https://github.com/apache/flink/pull/13690#issuecomment-712304240


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "8a6f115753059c365915d4e41570506e82397a4a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7878",
       "triggerID" : "8a6f115753059c365915d4e41570506e82397a4a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7951",
       "triggerID" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7971",
       "triggerID" : "713234240",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7951",
       "triggerID" : "713234240",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "713237396",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * 67f01dfa8c82c0575564f7d20961f36a3d0c623b Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7971) Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7951) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
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:
users@infra.apache.org



[GitHub] [flink] flinkbot edited a comment on pull request #13690: [FLINK-16595][YARN]support more HDFS nameServices in yarn mode when security enabled. Is…

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #13690:
URL: https://github.com/apache/flink/pull/13690#issuecomment-712304240


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "8a6f115753059c365915d4e41570506e82397a4a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7878",
       "triggerID" : "8a6f115753059c365915d4e41570506e82397a4a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7951",
       "triggerID" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7971",
       "triggerID" : "713234240",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7951",
       "triggerID" : "713234240",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7971",
       "triggerID" : "713237396",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "563501f776b532c88a7e3a5d3b180cb76bdf094c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8018",
       "triggerID" : "713547160",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "563501f776b532c88a7e3a5d3b180cb76bdf094c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8018",
       "triggerID" : "713547249",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "563501f776b532c88a7e3a5d3b180cb76bdf094c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8018",
       "triggerID" : "563501f776b532c88a7e3a5d3b180cb76bdf094c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "",
       "status" : "DELETED",
       "url" : "TBD",
       "triggerID" : "713547160",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "",
       "status" : "DELETED",
       "url" : "TBD",
       "triggerID" : "713547249",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "563501f776b532c88a7e3a5d3b180cb76bdf094c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8036",
       "triggerID" : "713702630",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "518581ab52a2d976ff344404a6828cec23c260f9",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8039",
       "triggerID" : "518581ab52a2d976ff344404a6828cec23c260f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "518581ab52a2d976ff344404a6828cec23c260f9",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8054",
       "triggerID" : "714144954",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "518581ab52a2d976ff344404a6828cec23c260f9",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8039",
       "triggerID" : "714144954",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "a689eb093d75ad658d56b4f1d1eb2701689f9e3b",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8161",
       "triggerID" : "a689eb093d75ad658d56b4f1d1eb2701689f9e3b",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 518581ab52a2d976ff344404a6828cec23c260f9 Azure: [SUCCESS](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8054) Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8039) 
   * a689eb093d75ad658d56b4f1d1eb2701689f9e3b Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8161) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
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:
users@infra.apache.org



[GitHub] [flink] QingdongZeng3 commented on pull request #13690: [FLINK-16595][YARN]support more HDFS nameServices in yarn mode when security enabled. Is…

Posted by GitBox <gi...@apache.org>.
QingdongZeng3 commented on pull request #13690:
URL: https://github.com/apache/flink/pull/13690#issuecomment-714257949


   Hi Robert,
   I have pass the CI ,would you help to review my code?Thanks! 


----------------------------------------------------------------
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:
users@infra.apache.org



[GitHub] [flink] flinkbot edited a comment on pull request #13690: [FLINK-16595][YARN]support more HDFS nameServices in yarn mode when security enabled. Is…

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #13690:
URL: https://github.com/apache/flink/pull/13690#issuecomment-712304240


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "8a6f115753059c365915d4e41570506e82397a4a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7878",
       "triggerID" : "8a6f115753059c365915d4e41570506e82397a4a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7951",
       "triggerID" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7971",
       "triggerID" : "713234240",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7951",
       "triggerID" : "713234240",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7971",
       "triggerID" : "713237396",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "563501f776b532c88a7e3a5d3b180cb76bdf094c",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8018",
       "triggerID" : "713547160",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "563501f776b532c88a7e3a5d3b180cb76bdf094c",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8018",
       "triggerID" : "713547249",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "563501f776b532c88a7e3a5d3b180cb76bdf094c",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8018",
       "triggerID" : "563501f776b532c88a7e3a5d3b180cb76bdf094c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "",
       "status" : "DELETED",
       "url" : "TBD",
       "triggerID" : "713547160",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "",
       "status" : "DELETED",
       "url" : "TBD",
       "triggerID" : "713547249",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * 563501f776b532c88a7e3a5d3b180cb76bdf094c Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8018) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
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:
users@infra.apache.org



[GitHub] [flink] rmetzger commented on pull request #13690: [FLINK-16595][YARN]support more HDFS nameServices in yarn mode when security enabled. Is…

Posted by GitBox <gi...@apache.org>.
rmetzger commented on pull request #13690:
URL: https://github.com/apache/flink/pull/13690#issuecomment-716743648


   Thanks a lot for your contribution!


----------------------------------------------------------------
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:
users@infra.apache.org



[GitHub] [flink] QingdongZeng3 commented on pull request #13690: [FLINK-16595][YARN]support more HDFS nameServices in yarn mode when security enabled. Is…

Posted by GitBox <gi...@apache.org>.
QingdongZeng3 commented on pull request #13690:
URL: https://github.com/apache/flink/pull/13690#issuecomment-713547160






----------------------------------------------------------------
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:
users@infra.apache.org



[GitHub] [flink] flinkbot edited a comment on pull request #13690: [FLINK-16595][YARN]support more HDFS nameServices in yarn mode when security enabled. Is…

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #13690:
URL: https://github.com/apache/flink/pull/13690#issuecomment-712304240


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "8a6f115753059c365915d4e41570506e82397a4a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7878",
       "triggerID" : "8a6f115753059c365915d4e41570506e82397a4a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7951",
       "triggerID" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7971",
       "triggerID" : "713234240",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * 67f01dfa8c82c0575564f7d20961f36a3d0c623b Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7951) Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7971) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
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:
users@infra.apache.org



[GitHub] [flink] flinkbot edited a comment on pull request #13690: [FLINK-16595][YARN]support more HDFS nameServices in yarn mode when security enabled. Is…

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #13690:
URL: https://github.com/apache/flink/pull/13690#issuecomment-712304240


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "8a6f115753059c365915d4e41570506e82397a4a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7878",
       "triggerID" : "8a6f115753059c365915d4e41570506e82397a4a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7951",
       "triggerID" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7971",
       "triggerID" : "713234240",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7951",
       "triggerID" : "713234240",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7971",
       "triggerID" : "713237396",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "563501f776b532c88a7e3a5d3b180cb76bdf094c",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8018",
       "triggerID" : "713547160",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "563501f776b532c88a7e3a5d3b180cb76bdf094c",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8018",
       "triggerID" : "713547249",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "563501f776b532c88a7e3a5d3b180cb76bdf094c",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8018",
       "triggerID" : "563501f776b532c88a7e3a5d3b180cb76bdf094c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "",
       "status" : "DELETED",
       "url" : "TBD",
       "triggerID" : "713547160",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "",
       "status" : "DELETED",
       "url" : "TBD",
       "triggerID" : "713547249",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "563501f776b532c88a7e3a5d3b180cb76bdf094c",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8036",
       "triggerID" : "713702630",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "518581ab52a2d976ff344404a6828cec23c260f9",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8039",
       "triggerID" : "518581ab52a2d976ff344404a6828cec23c260f9",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 563501f776b532c88a7e3a5d3b180cb76bdf094c Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8018) Azure: [CANCELED](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8036) 
   * 518581ab52a2d976ff344404a6828cec23c260f9 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8039) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
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:
users@infra.apache.org



[GitHub] [flink] QingdongZeng3 commented on pull request #13690: [FLINK-16595][YARN]support more HDFS nameServices in yarn mode when security enabled. Is…

Posted by GitBox <gi...@apache.org>.
QingdongZeng3 commented on pull request #13690:
URL: https://github.com/apache/flink/pull/13690#issuecomment-713234240


   @flinkbot run azure


----------------------------------------------------------------
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:
users@infra.apache.org



[GitHub] [flink] QingdongZeng3 commented on a change in pull request #13690: [FLINK-16595][YARN]support more HDFS nameServices in yarn mode when security enabled. Is…

Posted by GitBox <gi...@apache.org>.
QingdongZeng3 commented on a change in pull request #13690:
URL: https://github.com/apache/flink/pull/13690#discussion_r510678304



##########
File path: flink-yarn/src/main/java/org/apache/flink/yarn/configuration/YarnConfigOptions.java
##########
@@ -294,6 +294,13 @@
 				"they doesn't need to be downloaded every time for each application. An example could be " +
 				"hdfs://$namenode_address/path/of/flink/lib");
 
+	public static final ConfigOption<List<String>> YARN_ACCESS =
+		key("yarn.access.hadoopFileSystems")

Review comment:
       thanks for your suggestion,I will change it.
   
   > I believe it would be good to look into covering this change in our Kerberos end to end tests, to guarantee this is properly working.
   > 
   > You should be able to extend the end to end test defined in `test_yarn_job_kerberos_docker.sh` for this.
   > You will probably need to set up a secondary namenode configuration in flink-end-to-end-tests/test-scripts/docker-hadoop-secure-cluster/config, create additional keys in `bootstrap.sh` and launch a second nameNode there.
   
   okay,I will follow your advice.
   
   > I believe it would be good to look into covering this change in our Kerberos end to end tests, to guarantee this is properly working.
   > 
   > You should be able to extend the end to end test defined in `test_yarn_job_kerberos_docker.sh` for this.
   > You will probably need to set up a secondary namenode configuration in flink-end-to-end-tests/test-scripts/docker-hadoop-secure-cluster/config, create additional keys in `bootstrap.sh` and launch a second nameNode there.
   
   okay,I will follow your advice. Thanks!




----------------------------------------------------------------
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:
users@infra.apache.org



[GitHub] [flink] flinkbot edited a comment on pull request #13690: [FLINK-16595][YARN]support more HDFS nameServices in yarn mode when security enabled. Is…

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #13690:
URL: https://github.com/apache/flink/pull/13690#issuecomment-712304240


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "8a6f115753059c365915d4e41570506e82397a4a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7878",
       "triggerID" : "8a6f115753059c365915d4e41570506e82397a4a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7951",
       "triggerID" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7971",
       "triggerID" : "713234240",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7951",
       "triggerID" : "713234240",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7971",
       "triggerID" : "713237396",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * 67f01dfa8c82c0575564f7d20961f36a3d0c623b Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7951) Azure: [CANCELED](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7971) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
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:
users@infra.apache.org



[GitHub] [flink] rmetzger commented on pull request #13690: [FLINK-16595][YARN]support more HDFS nameServices in yarn mode when security enabled. Is…

Posted by GitBox <gi...@apache.org>.
rmetzger commented on pull request #13690:
URL: https://github.com/apache/flink/pull/13690#issuecomment-714968604


   Have you tested this change with multiple kerberos-enabled NodeManagers?


----------------------------------------------------------------
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:
users@infra.apache.org



[GitHub] [flink] QingdongZeng3 commented on pull request #13690: [FLINK-16595][YARN]support more HDFS nameServices in yarn mode when security enabled. Is…

Posted by GitBox <gi...@apache.org>.
QingdongZeng3 commented on pull request #13690:
URL: https://github.com/apache/flink/pull/13690#issuecomment-713702630


   @flinkbot run azure 
   @flinkbot run travis


----------------------------------------------------------------
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:
users@infra.apache.org



[GitHub] [flink] flinkbot edited a comment on pull request #13690: [FLINK-16595][YARN]support more HDFS nameServices in yarn mode when security enabled. Is…

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #13690:
URL: https://github.com/apache/flink/pull/13690#issuecomment-712304240


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "8a6f115753059c365915d4e41570506e82397a4a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7878",
       "triggerID" : "8a6f115753059c365915d4e41570506e82397a4a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7951",
       "triggerID" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7971",
       "triggerID" : "713234240",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7951",
       "triggerID" : "713234240",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7971",
       "triggerID" : "713237396",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "",
       "status" : "CANCELED",
       "url" : "TBD",
       "triggerID" : "713547160",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "",
       "status" : "CANCELED",
       "url" : "TBD",
       "triggerID" : "713547249",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "563501f776b532c88a7e3a5d3b180cb76bdf094c",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8018",
       "triggerID" : "713547160",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "563501f776b532c88a7e3a5d3b180cb76bdf094c",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8018",
       "triggerID" : "713547249",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "563501f776b532c88a7e3a5d3b180cb76bdf094c",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8018",
       "triggerID" : "563501f776b532c88a7e3a5d3b180cb76bdf094c",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   *  Unknown: [CANCELED](TBD) 
   * 563501f776b532c88a7e3a5d3b180cb76bdf094c Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8018) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
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:
users@infra.apache.org



[GitHub] [flink] QingdongZeng3 commented on pull request #13690: [FLINK-16595][YARN]support more HDFS nameServices in yarn mode when security enabled. Is…

Posted by GitBox <gi...@apache.org>.
QingdongZeng3 commented on pull request #13690:
URL: https://github.com/apache/flink/pull/13690#issuecomment-714994194


   > Have you tested this change with multiple kerberos-enabled NameNodes?
   
   yes ,It has works in my production environment for a long time.
   


----------------------------------------------------------------
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:
users@infra.apache.org



[GitHub] [flink] flinkbot commented on pull request #13690: [FLINK-16595][YARN]support more HDFS nameServices in yarn mode when security enabled. Is…

Posted by GitBox <gi...@apache.org>.
flinkbot commented on pull request #13690:
URL: https://github.com/apache/flink/pull/13690#issuecomment-712294598


   Thanks a lot for your contribution to the Apache Flink project. I'm the @flinkbot. I help the community
   to review your pull request. We will use this comment to track the progress of the review.
   
   
   ## Automated Checks
   Last check on commit 8a6f115753059c365915d4e41570506e82397a4a (Mon Oct 19 16:48:54 UTC 2020)
   
   **Warnings:**
    * No documentation files were touched! Remember to keep the Flink docs up to date!
   
   
   <sub>Mention the bot in a comment to re-run the automated checks.</sub>
   ## Review Progress
   
   * ❓ 1. The [description] looks good.
   * ❓ 2. There is [consensus] that the contribution should go into to Flink.
   * ❓ 3. Needs [attention] from.
   * ❓ 4. The change fits into the overall [architecture].
   * ❓ 5. Overall code [quality] is good.
   
   Please see the [Pull Request Review Guide](https://flink.apache.org/contributing/reviewing-prs.html) for a full explanation of the review process.<details>
    The Bot is tracking the review progress through labels. Labels are applied according to the order of the review items. For consensus, approval by a Flink committer of PMC member is required <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot approve description` to approve one or more aspects (aspects: `description`, `consensus`, `architecture` and `quality`)
    - `@flinkbot approve all` to approve all aspects
    - `@flinkbot approve-until architecture` to approve everything until `architecture`
    - `@flinkbot attention @username1 [@username2 ..]` to require somebody's attention
    - `@flinkbot disapprove architecture` to remove an approval you gave earlier
   </details>


----------------------------------------------------------------
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:
users@infra.apache.org



[GitHub] [flink] flinkbot edited a comment on pull request #13690: [FLINK-16595][YARN]support more HDFS nameServices in yarn mode when security enabled. Is…

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #13690:
URL: https://github.com/apache/flink/pull/13690#issuecomment-712304240


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "8a6f115753059c365915d4e41570506e82397a4a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7878",
       "triggerID" : "8a6f115753059c365915d4e41570506e82397a4a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7951",
       "triggerID" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7971",
       "triggerID" : "713234240",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7951",
       "triggerID" : "713234240",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7971",
       "triggerID" : "713237396",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * 67f01dfa8c82c0575564f7d20961f36a3d0c623b Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7951) Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7971) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
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:
users@infra.apache.org



[GitHub] [flink] flinkbot edited a comment on pull request #13690: [FLINK-16595][YARN]support more HDFS nameServices in yarn mode when security enabled. Is…

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #13690:
URL: https://github.com/apache/flink/pull/13690#issuecomment-712304240


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "8a6f115753059c365915d4e41570506e82397a4a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7878",
       "triggerID" : "8a6f115753059c365915d4e41570506e82397a4a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7951",
       "triggerID" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7971",
       "triggerID" : "713234240",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7951",
       "triggerID" : "713234240",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7971",
       "triggerID" : "713237396",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "563501f776b532c88a7e3a5d3b180cb76bdf094c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8018",
       "triggerID" : "713547160",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "563501f776b532c88a7e3a5d3b180cb76bdf094c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8018",
       "triggerID" : "713547249",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "563501f776b532c88a7e3a5d3b180cb76bdf094c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8018",
       "triggerID" : "563501f776b532c88a7e3a5d3b180cb76bdf094c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "",
       "status" : "DELETED",
       "url" : "TBD",
       "triggerID" : "713547160",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "",
       "status" : "DELETED",
       "url" : "TBD",
       "triggerID" : "713547249",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "563501f776b532c88a7e3a5d3b180cb76bdf094c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8036",
       "triggerID" : "713702630",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "518581ab52a2d976ff344404a6828cec23c260f9",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8039",
       "triggerID" : "518581ab52a2d976ff344404a6828cec23c260f9",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 518581ab52a2d976ff344404a6828cec23c260f9 Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8039) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
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:
users@infra.apache.org



[GitHub] [flink] QingdongZeng3 edited a comment on pull request #13690: [FLINK-16595][YARN]support more HDFS nameServices in yarn mode when security enabled. Is…

Posted by GitBox <gi...@apache.org>.
QingdongZeng3 edited a comment on pull request #13690:
URL: https://github.com/apache/flink/pull/13690#issuecomment-714257949


   Hi Robert,
   I have pass the CI ,would you help to review my code?Thanks! 
   @rmetzger 


----------------------------------------------------------------
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:
users@infra.apache.org



[GitHub] [flink] rmetzger commented on pull request #13690: [FLINK-16595][YARN]support more HDFS nameServices in yarn mode when security enabled. Is…

Posted by GitBox <gi...@apache.org>.
rmetzger commented on pull request #13690:
URL: https://github.com/apache/flink/pull/13690#issuecomment-715016591


   >>Have you tested this change with multiple kerberos-enabled NameNodes?
   
   >yes ,It has works in my production environment for a long time.
   
   Okay, that's great to hear! If extending the e2e tests turns out to be extremely difficult, I would also be fine with merging this change without tests, given that this is a non critical add on feature that is difficult to test.
   But first it would be nice if you could look into the e2e tests. In my opinion it should be possible. Sneaking in the right 2nd namenode config could be a bit difficult, but there's probably a HADOOP_CONF_DIR environment variable (or HADOOP_CLASSPATH) variable that you need to temporary overwrite for the 2nd NameNode)


----------------------------------------------------------------
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:
users@infra.apache.org



[GitHub] [flink] QingdongZeng3 commented on pull request #13690: [FLINK-16595][YARN]support more HDFS nameServices in yarn mode when security enabled. Is…

Posted by GitBox <gi...@apache.org>.
QingdongZeng3 commented on pull request #13690:
URL: https://github.com/apache/flink/pull/13690#issuecomment-714866665


   @tillrohrmann @zentol  Hi,contributors of YarnClusterDescriptor.java,would you help to review my code?Thanks!


----------------------------------------------------------------
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:
users@infra.apache.org



[GitHub] [flink] findczk commented on pull request #13690: [FLINK-16595][YARN]support more HDFS nameServices in yarn mode when security enabled. Is…

Posted by GitBox <gi...@apache.org>.
findczk commented on pull request #13690:
URL: https://github.com/apache/flink/pull/13690#issuecomment-917577971


   > Thanks for the review and Merging!
   
   Hi,I see this branch is flink-1.12,does it mean that flink-1.11 cannot support multiple HDFS nameServices? How do I configure to use multiple nameservices in flink-1.12? Thank you very much!


-- 
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.

To unsubscribe, e-mail: issues-unsubscribe@flink.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [flink] rmetzger removed a comment on pull request #13690: [FLINK-16595][YARN]support more HDFS nameServices in yarn mode when security enabled. Is…

Posted by GitBox <gi...@apache.org>.
rmetzger removed a comment on pull request #13690:
URL: https://github.com/apache/flink/pull/13690#issuecomment-715011784


   > > Have you tested this change with multiple kerberos-enabled NameNodes?
   >yes ,It has works in my production environment for a long time.


----------------------------------------------------------------
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:
users@infra.apache.org



[GitHub] [flink] flinkbot edited a comment on pull request #13690: [FLINK-16595][YARN]support more HDFS nameServices in yarn mode when security enabled. Is…

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #13690:
URL: https://github.com/apache/flink/pull/13690#issuecomment-712304240


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "8a6f115753059c365915d4e41570506e82397a4a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7878",
       "triggerID" : "8a6f115753059c365915d4e41570506e82397a4a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7951",
       "triggerID" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7971",
       "triggerID" : "713234240",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7951",
       "triggerID" : "713234240",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7971",
       "triggerID" : "713237396",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "563501f776b532c88a7e3a5d3b180cb76bdf094c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8018",
       "triggerID" : "713547160",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "563501f776b532c88a7e3a5d3b180cb76bdf094c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8018",
       "triggerID" : "713547249",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "563501f776b532c88a7e3a5d3b180cb76bdf094c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8018",
       "triggerID" : "563501f776b532c88a7e3a5d3b180cb76bdf094c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "",
       "status" : "DELETED",
       "url" : "TBD",
       "triggerID" : "713547160",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "",
       "status" : "DELETED",
       "url" : "TBD",
       "triggerID" : "713547249",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "563501f776b532c88a7e3a5d3b180cb76bdf094c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8036",
       "triggerID" : "713702630",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "518581ab52a2d976ff344404a6828cec23c260f9",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8039",
       "triggerID" : "518581ab52a2d976ff344404a6828cec23c260f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "518581ab52a2d976ff344404a6828cec23c260f9",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8054",
       "triggerID" : "714144954",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * 518581ab52a2d976ff344404a6828cec23c260f9 Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8039) Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8054) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
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:
users@infra.apache.org



[GitHub] [flink] QingdongZeng3 removed a comment on pull request #13690: [FLINK-16595][YARN]support more HDFS nameServices in yarn mode when security enabled. Is…

Posted by GitBox <gi...@apache.org>.
QingdongZeng3 removed a comment on pull request #13690:
URL: https://github.com/apache/flink/pull/13690#issuecomment-713547249






----------------------------------------------------------------
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:
users@infra.apache.org



[GitHub] [flink] flinkbot edited a comment on pull request #13690: [FLINK-16595][YARN]support more HDFS nameServices in yarn mode when security enabled. Is…

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #13690:
URL: https://github.com/apache/flink/pull/13690#issuecomment-712304240


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "8a6f115753059c365915d4e41570506e82397a4a",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7878",
       "triggerID" : "8a6f115753059c365915d4e41570506e82397a4a",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 8a6f115753059c365915d4e41570506e82397a4a Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7878) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
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:
users@infra.apache.org



[GitHub] [flink] flinkbot edited a comment on pull request #13690: [FLINK-16595][YARN]support more HDFS nameServices in yarn mode when security enabled. Is…

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #13690:
URL: https://github.com/apache/flink/pull/13690#issuecomment-712304240


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "8a6f115753059c365915d4e41570506e82397a4a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7878",
       "triggerID" : "8a6f115753059c365915d4e41570506e82397a4a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7951",
       "triggerID" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7971",
       "triggerID" : "713234240",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7951",
       "triggerID" : "713234240",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7971",
       "triggerID" : "713237396",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "563501f776b532c88a7e3a5d3b180cb76bdf094c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8018",
       "triggerID" : "713547160",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "563501f776b532c88a7e3a5d3b180cb76bdf094c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8018",
       "triggerID" : "713547249",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "563501f776b532c88a7e3a5d3b180cb76bdf094c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8018",
       "triggerID" : "563501f776b532c88a7e3a5d3b180cb76bdf094c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "",
       "status" : "DELETED",
       "url" : "TBD",
       "triggerID" : "713547160",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "",
       "status" : "DELETED",
       "url" : "TBD",
       "triggerID" : "713547249",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "563501f776b532c88a7e3a5d3b180cb76bdf094c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8036",
       "triggerID" : "713702630",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "518581ab52a2d976ff344404a6828cec23c260f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8039",
       "triggerID" : "518581ab52a2d976ff344404a6828cec23c260f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "518581ab52a2d976ff344404a6828cec23c260f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8054",
       "triggerID" : "714144954",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "518581ab52a2d976ff344404a6828cec23c260f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8039",
       "triggerID" : "714144954",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "a689eb093d75ad658d56b4f1d1eb2701689f9e3b",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8161",
       "triggerID" : "a689eb093d75ad658d56b4f1d1eb2701689f9e3b",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * a689eb093d75ad658d56b4f1d1eb2701689f9e3b Azure: [SUCCESS](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8161) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
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:
users@infra.apache.org



[GitHub] [flink] flinkbot edited a comment on pull request #13690: [FLINK-16595][YARN]support more HDFS nameServices in yarn mode when security enabled. Is…

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #13690:
URL: https://github.com/apache/flink/pull/13690#issuecomment-712304240


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "8a6f115753059c365915d4e41570506e82397a4a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7878",
       "triggerID" : "8a6f115753059c365915d4e41570506e82397a4a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7951",
       "triggerID" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7971",
       "triggerID" : "713234240",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7951",
       "triggerID" : "713234240",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7971",
       "triggerID" : "713237396",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "563501f776b532c88a7e3a5d3b180cb76bdf094c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8018",
       "triggerID" : "713547160",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "563501f776b532c88a7e3a5d3b180cb76bdf094c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8018",
       "triggerID" : "713547249",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "563501f776b532c88a7e3a5d3b180cb76bdf094c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8018",
       "triggerID" : "563501f776b532c88a7e3a5d3b180cb76bdf094c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "",
       "status" : "DELETED",
       "url" : "TBD",
       "triggerID" : "713547160",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "",
       "status" : "DELETED",
       "url" : "TBD",
       "triggerID" : "713547249",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "563501f776b532c88a7e3a5d3b180cb76bdf094c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8036",
       "triggerID" : "713702630",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "518581ab52a2d976ff344404a6828cec23c260f9",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8039",
       "triggerID" : "518581ab52a2d976ff344404a6828cec23c260f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "518581ab52a2d976ff344404a6828cec23c260f9",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8054",
       "triggerID" : "714144954",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "518581ab52a2d976ff344404a6828cec23c260f9",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8039",
       "triggerID" : "714144954",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * 518581ab52a2d976ff344404a6828cec23c260f9 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8054) Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=8039) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
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:
users@infra.apache.org



[GitHub] [flink] flinkbot edited a comment on pull request #13690: [FLINK-16595][YARN]support more HDFS nameServices in yarn mode when security enabled. Is…

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #13690:
URL: https://github.com/apache/flink/pull/13690#issuecomment-712304240


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "8a6f115753059c365915d4e41570506e82397a4a",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7878",
       "triggerID" : "8a6f115753059c365915d4e41570506e82397a4a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7951",
       "triggerID" : "67f01dfa8c82c0575564f7d20961f36a3d0c623b",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 8a6f115753059c365915d4e41570506e82397a4a Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7878) 
   * 67f01dfa8c82c0575564f7d20961f36a3d0c623b Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=7951) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
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:
users@infra.apache.org