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 "Amar Kamat (JIRA)" <ji...@apache.org> on 2010/04/16 08:33:25 UTC

[jira] Created: (HADOOP-6711) Configuration should support list of values

Configuration should support list of values
-------------------------------------------

                 Key: HADOOP-6711
                 URL: https://issues.apache.org/jira/browse/HADOOP-6711
             Project: Hadoop Common
          Issue Type: New Feature
          Components: conf
            Reporter: Amar Kamat


Configuration supports 2 operations namely _set()_ and _get()_. It would be nice to have an inbuild support for lists where there can be multiple values (i.e list of values) assigned to one key. A workaround could be
{code}
// Assume Key be the parameter key and newValue be the value to be added/appended
Configuration c = new Configuration();
String value = c.get(Key);
value = value + " " + newValue
c.set(Key, value);
{code}

One common usecase is that in a production enviroment, some user facing params (e.g mapred.child.java.opts) are set to default values (say for performance reasons). Users themselves might want to *add* to this list. Doing a set would overwrite the previous values. The above mentioned hack is doable via code but not via command line. Hence we need the framework to support lists.


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