In Hadoop client API there is important class Configuration that stores properties for connection to cluster, job to be sent, HDFS. These are just key-value pairs and both key and values are Strings. There are not list of all meaningful keys that can by used to change map-reduce job settings? That is I need list of all keys that can by used to set properties of Configuration that would be later interpreted by client API, namenode or jobtracker.
|
|
|||
|
|
|
I would suggest that you not work with the key/value pairs in the Configuration using the literal key name. Instead, use the static helper methods on not only the Configuration class itself, but on the other classes that read and write those properties via their helper methods. These other classes include the input and output format classes, I recommend this because there is often additional logic in these static helper methods that controls or validates the String conversion to and from non-String property values. Another way of stating this answer is to look at the javadoc for the static methods on the Configuration class, input format classes, output format classes, etc. That gives you the complete API you want. If you persist in wanting to know the valid key names, then look at the source for these same helper methods since that's where the key names are used and defined. |
|||||
|