MAPREDUCE-5213. Re-assess TokenCache methods marked @Private. (kkambatl via tucu)

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1506758 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Alejandro Abdelnur 2013-07-24 22:31:31 +00:00
parent 9c453d4432
commit c43c763151
3 changed files with 15 additions and 3 deletions

View File

@ -654,6 +654,9 @@ Release 2.1.0-beta - 2013-07-02
MAPREDUCE-5310. MRAM should not normalize allocation request capabilities.
(tucu)
MAPREDUCE-5213. Re-assess TokenCache methods marked @Private.
(kkambatl via tucu)
Release 2.0.5-alpha - 06/06/2013
INCOMPATIBLE CHANGES

View File

@ -159,10 +159,13 @@ private static void mergeBinaryTokens(Credentials creds, Configuration conf) {
/**
* load job token from a file
* @deprecated Use {@link Credentials#readTokenStorageFile} instead,
* this method is included for compatibility against Hadoop-1.
* @param conf
* @throws IOException
*/
@InterfaceAudience.Private
@Deprecated
public static Credentials loadTokens(String jobTokenFile, JobConf conf)
throws IOException {
Path localJobTokenFile = new Path ("file:///" + jobTokenFile);
@ -180,11 +183,13 @@ public static Credentials loadTokens(String jobTokenFile, JobConf conf)
/**
* load job token from a file
*
* @deprecated Use {@link Credentials#readTokenStorageFile} instead,
* this method is included for compatibility against Hadoop-1.
* @param conf
* @throws IOException
*/
@InterfaceAudience.Private
@Deprecated
public static Credentials loadTokens(String jobTokenFile, Configuration conf)
throws IOException {
return loadTokens(jobTokenFile, new JobConf(conf));
@ -220,10 +225,13 @@ public static byte[] getShuffleSecretKey(Credentials credentials) {
}
/**
*
* @deprecated Use {@link Credentials#getToken(org.apache.hadoop.io.Text)}
* instead, this method is included for compatibility against Hadoop-1
* @param namenode
* @return delegation token
*/
@InterfaceAudience.Private
@Deprecated
public static
Token<?> getDelegationToken(
Credentials credentials, String namenode) {

View File

@ -170,6 +170,7 @@ public void testCleanUpTokenReferral() throws Exception {
assertNull(conf.get(MRJobConfig.MAPREDUCE_JOB_CREDENTIALS_BINARY));
}
@SuppressWarnings("deprecation")
@Test
public void testGetTokensForNamenodes() throws IOException,
URISyntaxException {