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:
parent
9c453d4432
commit
c43c763151
|
@ -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
|
||||
|
|
|
@ -159,10 +159,13 @@ public class TokenCache {
|
|||
|
||||
/**
|
||||
* 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 class TokenCache {
|
|||
|
||||
/**
|
||||
* 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 class TokenCache {
|
|||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @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) {
|
||||
|
|
|
@ -170,6 +170,7 @@ public class TestTokenCache {
|
|||
assertNull(conf.get(MRJobConfig.MAPREDUCE_JOB_CREDENTIALS_BINARY));
|
||||
}
|
||||
|
||||
@SuppressWarnings("deprecation")
|
||||
@Test
|
||||
public void testGetTokensForNamenodes() throws IOException,
|
||||
URISyntaxException {
|
||||
|
|
Loading…
Reference in New Issue