aboutsummaryrefslogtreecommitdiff
path: root/core/src/hadoop1/scala/org/apache/hadoop/mapred/HadoopMapRedUtil.scala
blob: ca9f7219de7399218634d1833377e3e8719b7886 (plain) (blame)
1
2
3
4
5
6
7
package org.apache.hadoop.mapred

trait HadoopMapRedUtil {
  def newJobContext(conf: JobConf, jobId: JobID): JobContext = new JobContext(conf, jobId)

  def newTaskAttemptContext(conf: JobConf, attemptId: TaskAttemptID): TaskAttemptContext = new TaskAttemptContext(conf, attemptId)
}