Search in sources :

Example 1 with WaitPhaseJob

use of com.linkedin.thirdeye.hadoop.wait.WaitPhaseJob in project pinot by linkedin.

the class ThirdEyeJob method run.

@SuppressWarnings("unchecked")
public void run() throws Exception {
    LOGGER.info("Input config:{}", inputConfig);
    PhaseSpec phaseSpec;
    try {
        phaseSpec = PhaseSpec.valueOf(phaseName.toUpperCase());
    } catch (Exception e) {
        usage();
        throw e;
    }
    if (PhaseSpec.TRANSFORM.equals(phaseSpec)) {
        TransformPhaseJob job = new TransformPhaseJob("Transform Job", inputConfig);
        job.run();
        return;
    } else if (PhaseSpec.JOIN.equals(phaseSpec)) {
        JoinPhaseJob job = new JoinPhaseJob("Join Job", inputConfig);
        job.run();
        return;
    } else if (PhaseSpec.WAIT.equals(phaseSpec)) {
        WaitPhaseJob job = new WaitPhaseJob("Wait for inputs", inputConfig);
        job.run();
        return;
    }
    // Get root, collection, input paths
    String root = getAndCheck(ThirdEyeJobProperties.THIRDEYE_ROOT.getName(), inputConfig);
    String collection = getAndCheck(ThirdEyeJobProperties.THIRDEYE_COLLECTION.getName(), inputConfig);
    String inputPaths = getAndCheck(ThirdEyeJobProperties.INPUT_PATHS.getName(), inputConfig);
    // Get min / max time
    DateTime minTime;
    DateTime maxTime;
    String minTimeProp = inputConfig.getProperty(ThirdEyeJobProperties.THIRDEYE_TIME_MIN.getName());
    String maxTimeProp = inputConfig.getProperty(ThirdEyeJobProperties.THIRDEYE_TIME_MAX.getName());
    minTime = ISODateTimeFormat.dateTimeParser().parseDateTime(minTimeProp);
    maxTime = ISODateTimeFormat.dateTimeParser().parseDateTime(maxTimeProp);
    Properties jobProperties = phaseSpec.getJobProperties(inputConfig, root, collection, minTime, maxTime, inputPaths);
    for (Object key : inputConfig.keySet()) {
        jobProperties.setProperty(key.toString(), inputConfig.getProperty(key.toString()));
    }
    // Instantiate the job
    Constructor<Configured> constructor = (Constructor<Configured>) phaseSpec.getKlazz().getConstructor(String.class, Properties.class);
    Configured instance = constructor.newInstance(phaseSpec.getName(), jobProperties);
    setMapreduceConfig(instance.getConf());
    // Run the job
    Method runMethod = instance.getClass().getMethod("run");
    Job job = (Job) runMethod.invoke(instance);
    if (job != null) {
        JobStatus status = job.getStatus();
        if (status.getState() != JobStatus.State.SUCCEEDED) {
            throw new RuntimeException("Job " + job.getJobName() + " failed to execute: Ran with config:" + jobProperties);
        }
    }
}
Also used : Constructor(java.lang.reflect.Constructor) Method(java.lang.reflect.Method) Properties(java.util.Properties) IOException(java.io.IOException) DateTime(org.joda.time.DateTime) Configured(org.apache.hadoop.conf.Configured) WaitPhaseJob(com.linkedin.thirdeye.hadoop.wait.WaitPhaseJob) JobStatus(org.apache.hadoop.mapreduce.JobStatus) JoinPhaseJob(com.linkedin.thirdeye.hadoop.join.JoinPhaseJob) TransformPhaseJob(com.linkedin.thirdeye.hadoop.transform.TransformPhaseJob) DerivedColumnTransformationPhaseJob(com.linkedin.thirdeye.hadoop.derivedcolumn.transformation.DerivedColumnTransformationPhaseJob) SegmentCreationPhaseJob(com.linkedin.thirdeye.hadoop.segment.creation.SegmentCreationPhaseJob) AggregationPhaseJob(com.linkedin.thirdeye.hadoop.aggregation.AggregationPhaseJob) TransformPhaseJob(com.linkedin.thirdeye.hadoop.transform.TransformPhaseJob) JoinPhaseJob(com.linkedin.thirdeye.hadoop.join.JoinPhaseJob) TopKPhaseJob(com.linkedin.thirdeye.hadoop.topk.TopKPhaseJob) WaitPhaseJob(com.linkedin.thirdeye.hadoop.wait.WaitPhaseJob) Job(org.apache.hadoop.mapreduce.Job) BackfillPhaseJob(com.linkedin.thirdeye.hadoop.backfill.BackfillPhaseJob)

Aggregations

AggregationPhaseJob (com.linkedin.thirdeye.hadoop.aggregation.AggregationPhaseJob)1 BackfillPhaseJob (com.linkedin.thirdeye.hadoop.backfill.BackfillPhaseJob)1 DerivedColumnTransformationPhaseJob (com.linkedin.thirdeye.hadoop.derivedcolumn.transformation.DerivedColumnTransformationPhaseJob)1 JoinPhaseJob (com.linkedin.thirdeye.hadoop.join.JoinPhaseJob)1 SegmentCreationPhaseJob (com.linkedin.thirdeye.hadoop.segment.creation.SegmentCreationPhaseJob)1 TopKPhaseJob (com.linkedin.thirdeye.hadoop.topk.TopKPhaseJob)1 TransformPhaseJob (com.linkedin.thirdeye.hadoop.transform.TransformPhaseJob)1 WaitPhaseJob (com.linkedin.thirdeye.hadoop.wait.WaitPhaseJob)1 IOException (java.io.IOException)1 Constructor (java.lang.reflect.Constructor)1 Method (java.lang.reflect.Method)1 Properties (java.util.Properties)1 Configured (org.apache.hadoop.conf.Configured)1 Job (org.apache.hadoop.mapreduce.Job)1 JobStatus (org.apache.hadoop.mapreduce.JobStatus)1 DateTime (org.joda.time.DateTime)1