190191192193194195196
/** {@inheritDoc} */ public void configure(JobConf job) { this.jobconf = job; ignoreFailures = jobconf.getBoolean(IGNORE_FAILURES_OPTION_LABEL, true); st = new Statistics(); }
201202203204205206207
/** {@inheritDoc} */ public void configure(JobConf job) { this.jobconf = job; ignoreFailures = false; st = new Statistics(); }
191192193194195196197
289290291292293294295
public void configure(JobConf job) { this.jobconf = job; ignoreFailures = jobconf.getBoolean(IGNORE_FAILURES_OPTION_LABEL, true); retryNum = jobconf.getInt(DistRaid.MAX_FAILURE_RETRY_KEY, DistRaid.DEFAULT_MAX_FAILURE_RETRY); st = new Statistics(); }