Package org.apache.flink.test.compiler.plandump

Source Code of org.apache.flink.test.compiler.plandump.PreviewPlanDumpTest

/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements.  See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership.  The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License.  You may obtain a copy of the License at
*
*     http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.apache.flink.test.compiler.plandump;

import java.util.List;

import org.apache.flink.api.common.Plan;
import org.apache.flink.compiler.PactCompiler;
import org.apache.flink.compiler.dag.DataSinkNode;
import org.apache.flink.compiler.plandump.PlanJSONDumpGenerator;
import org.apache.flink.test.recordJobs.graph.DeltaPageRankWithInitialDeltas;
import org.apache.flink.test.recordJobs.kmeans.KMeansBroadcast;
import org.apache.flink.test.recordJobs.kmeans.KMeansSingleStep;
import org.apache.flink.test.recordJobs.relational.TPCHQuery3;
import org.apache.flink.test.recordJobs.relational.WebLogAnalysis;
import org.apache.flink.test.recordJobs.wordcount.WordCount;
import org.apache.flink.util.OperatingSystem;
import org.codehaus.jackson.JsonFactory;
import org.codehaus.jackson.JsonParseException;
import org.codehaus.jackson.JsonParser;
import org.junit.Assert;
import org.junit.Test;

/*
* The tests in this class simply invokes the JSON dump code for the original plan.
*/
public class PreviewPlanDumpTest {
 
  protected static final String IN_FILE = OperatingSystem.isWindows() "file:/c:/test/file" : "file:///test/file";
 
  protected static final String OUT_FILE = OperatingSystem.isWindows() "file:/c:/test/output" : "file:///test/output";
 
  protected static final String[] NO_ARGS = new String[0];

  @Test
  public void dumpWordCount() {
    dump(new WordCount().getPlan("4", IN_FILE, OUT_FILE));
   
    // The web interface passes empty string-args to compute the preview of the
    // job, so we should test this situation too
    dump(new WordCount().getPlan(NO_ARGS));
  }
 
  @Test
  public void dumpTPCH3() {
    dump(new TPCHQuery3().getPlan("4", IN_FILE, IN_FILE, OUT_FILE));
    dump(new TPCHQuery3().getPlan(NO_ARGS));
  }
 
  @Test
  public void dumpKMeans() {
    dump(new KMeansSingleStep().getPlan("4", IN_FILE, IN_FILE, OUT_FILE));
    dump(new KMeansSingleStep().getPlan(NO_ARGS));
  }
 
  @Test
  public void dumpWebLogAnalysis() {
    dump(new WebLogAnalysis().getPlan("4", IN_FILE, IN_FILE, IN_FILE, OUT_FILE));
    dump(new WebLogAnalysis().getPlan(NO_ARGS));
  }
 
  @Test
  public void dumpBulkIterationKMeans() {
    dump(new KMeansBroadcast().getPlan("4", IN_FILE, OUT_FILE));
    dump(new KMeansBroadcast().getPlan(NO_ARGS));
  }
 
  @Test
  public void dumpDeltaPageRank() {
    dump(new DeltaPageRankWithInitialDeltas().getPlan("4", IN_FILE, IN_FILE, IN_FILE, OUT_FILE, "10"));
    dump(new DeltaPageRankWithInitialDeltas().getPlan(NO_ARGS));
  }
 
  private void dump(Plan p) {
    try {
      List<DataSinkNode> sinks = PactCompiler.createPreOptimizedPlan(p);
      PlanJSONDumpGenerator dumper = new PlanJSONDumpGenerator();
      String json = dumper.getPactPlanAsJSON(sinks);
      JsonParser parser = new JsonFactory().createJsonParser(json);
      while (parser.nextToken() != null);
    } catch (JsonParseException e) {
      e.printStackTrace();
      Assert.fail("JSON Generator produced malformatted output: " + e.getMessage());
    } catch (Exception e) {
      e.printStackTrace();
      Assert.fail("An error occurred in the test: " + e.getMessage());
    }
  }
}
TOP

Related Classes of org.apache.flink.test.compiler.plandump.PreviewPlanDumpTest

TOP
Copyright © 2018 www.massapi.com. 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.