On Wed, Sep 21, 2011 at 1:05 AM, Steinmaurer Thomas <[email protected]> wrote: > when writing/executing a self-written MR-Job. How are you guys handle > custom properties? As command-line arguments when starting the MR-job or > via a property file? >
Command-line args works or passing w/ -D if your main is using GenericOptionsParser then add them to the Job if they need to be passed out to the cluster or add them to Configuration that is included in job or distributed out on cluster. There are probably more kosher ways of doing this. St.Ack
