You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-dev@hadoop.apache.org by "Robert Joseph Evans (Created) (JIRA)" <ji...@apache.org> on 2012/03/15 16:07:38 UTC

[jira] [Created] (HADOOP-8172) Configuration no longer sets all keys in a deprecated key list.

Configuration no longer sets all keys in a deprecated key list.
---------------------------------------------------------------

                 Key: HADOOP-8172
                 URL: https://issues.apache.org/jira/browse/HADOOP-8172
             Project: Hadoop Common
          Issue Type: Bug
          Components: conf
    Affects Versions: 0.24.0, 0.23.3
            Reporter: Robert Joseph Evans
            Assignee: Robert Joseph Evans
            Priority: Blocker


I did not look at the patch for HADOOP-8167 previously, but I did in response to a recent test failure. The patch appears to have changed the following code (I am just paraphrasing the code)

{code}
if(!deprecated(key)) {
  set(key, value);
} else {
  for(String newKey: depricatedKeyMap.get(key)) {
    set(newKey, value);
  }
}
{code}

to be 

{code}
set(key, value);
if(depricatedKeyMap.contains(key)) {
   set(deprecatedKeyMap.get(key)[0], value);
} else if(reverseKeyMap.contains(key)) {
   set(reverseKeyMap.get(key), value);
}
{code}

If a key is deprecated and is mapped to more then one new key value only the first one in the list will be set, where as previously all of them would be set.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Resolved] (HADOOP-8172) Configuration no longer sets all keys in a deprecated key list.

Posted by "Robert Joseph Evans (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HADOOP-8172?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Robert Joseph Evans resolved HADOOP-8172.
-----------------------------------------

       Resolution: Fixed
    Fix Version/s: 3.0.0
                   2.0.0

Thanks Anupam,

I put this into trunk and branch-2.  +1
                
> Configuration no longer sets all keys in a deprecated key list.
> ---------------------------------------------------------------
>
>                 Key: HADOOP-8172
>                 URL: https://issues.apache.org/jira/browse/HADOOP-8172
>             Project: Hadoop Common
>          Issue Type: Bug
>          Components: conf
>    Affects Versions: 0.23.3, 0.24.0
>            Reporter: Robert Joseph Evans
>            Assignee: Anupam Seth
>            Priority: Critical
>             Fix For: 2.0.0, 3.0.0
>
>         Attachments: HADOOP-8172-branch-2.patch, HADOOP-8172-branch-2.patch
>
>
> I did not look at the patch for HADOOP-8167 previously, but I did in response to a recent test failure. The patch appears to have changed the following code (I am just paraphrasing the code)
> {code}
> if(!deprecated(key)) {
>   set(key, value);
> } else {
>   for(String newKey: depricatedKeyMap.get(key)) {
>     set(newKey, value);
>   }
> }
> {code}
> to be 
> {code}
> set(key, value);
> if(depricatedKeyMap.contains(key)) {
>    set(deprecatedKeyMap.get(key)[0], value);
> } else if(reverseKeyMap.contains(key)) {
>    set(reverseKeyMap.get(key), value);
> }
> {code}
> If a key is deprecated and is mapped to more then one new key value only the first one in the list will be set, where as previously all of them would be set.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira