You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: hadoop-yarn-project/hadoop-yarn/hadoop-yarn-applications/hadoop-yarn-services/hadoop-yarn-services-core/src/main/java/org/apache/hadoop/yarn/service/api/records/KerberosPrincipal.java
+11-9Lines changed: 11 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -71,8 +71,9 @@ public KerberosPrincipal keytab(String keytab) {
71
71
}
72
72
73
73
/**
74
-
* The URI of the kerberos keytab. It supports two schemes \"
75
-
* hdfs\" and \"file\". If the URI starts with \"
74
+
* The URI of the kerberos keytab. It supports hadoop supported schemes
75
+
* like \"hdfs\" \"file\" \"s3\"
76
+
* \"viewfs\" etc.If the URI starts with \"
76
77
* hdfs://\" scheme, it indicates the path on hdfs where the keytab is
77
78
* stored. The keytab will be localized by YARN and made available to AM in
78
79
* its local directory. If the URI starts with \"file://\"
@@ -81,13 +82,14 @@ public KerberosPrincipal keytab(String keytab) {
81
82
*
82
83
* @return keytab
83
84
**/
84
-
@ApiModelProperty(value = "The URI of the kerberos keytab. It supports two " +
85
-
"schemes \"hdfs\" and \"file\". If the URI starts with \"hdfs://\" " +
86
-
"scheme, it indicates the path on hdfs where the keytab is stored. The " +
87
-
"keytab will be localized by YARN and made available to AM in its local" +
88
-
" directory. If the URI starts with \"file://\" scheme, it indicates a " +
89
-
"path on the local host where the keytab is presumbaly installed by " +
90
-
"admins upfront. ")
85
+
@ApiModelProperty(value = "The URI of the kerberos keytab. It supports"
86
+
+ " Hadoop supported filesystem types like \"hdfs\", \"file\","
87
+
+ " \"viewfs\", \"s3\" etc.If the URI starts with \"hdfs://\" scheme, "
88
+
+ "it indicates the path on hdfs where the keytab is stored. The "
89
+
+ "keytab will be localized by YARN and made available to AM in its local"
90
+
+ " directory. If the URI starts with \"file://\" scheme, it indicates a "
91
+
+ "path on the local host where the keytab is presumbaly installed by "
Copy file name to clipboardExpand all lines: hadoop-yarn-project/hadoop-yarn/hadoop-yarn-applications/hadoop-yarn-services/hadoop-yarn-services-core/src/main/java/org/apache/hadoop/yarn/service/client/ServiceClient.java
0 commit comments