Package org.apache.crunch.impl.mr.plan

Examples of org.apache.crunch.impl.mr.plan.JobNameBuilder


    Job mrJob = mock(Job.class);
    when(mrJob.getConfiguration()).thenReturn(new Configuration());
    CrunchControlledJob job = new CrunchControlledJob(
        jobID,
        mrJob,
        new JobNameBuilder(mrJob.getConfiguration(), "test", 1, 1),
        mock(CrunchControlledJob.Hook.class),
        mock(CrunchControlledJob.Hook.class));
    return spy(job);
  }
View Full Code Here


    Job mrJob = mock(Job.class);
    when(mrJob.getConfiguration()).thenReturn(new Configuration());
    CrunchControlledJob job = new CrunchControlledJob(
        jobID,
        mrJob,
        new JobNameBuilder(mrJob.getConfiguration(), "test", 1, 1),
        targets,
        mock(CrunchControlledJob.Hook.class),
        mock(CrunchControlledJob.Hook.class));
    return spy(job);
  }
View Full Code Here

TOP

Related Classes of org.apache.crunch.impl.mr.plan.JobNameBuilder

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.