Package org.apache.flink.compiler.deadlockdetect

Examples of org.apache.flink.compiler.deadlockdetect.DeadlockPreventer


      bestPlanSinks.add((SinkPlanNode) bestPlanRoot);
    } else if (bestPlanRoot instanceof SinkJoinerPlanNode) {
      ((SinkJoinerPlanNode) bestPlanRoot).getDataSinks(bestPlanSinks);
    }
   
    DeadlockPreventer dp = new DeadlockPreventer();
    dp.resolveDeadlocks(bestPlanSinks);

    // finalize the plan
    OptimizedPlan plan = new PlanFinalizer().createFinalPlan(bestPlanSinks, program.getJobName(), program);

    // swap the binary unions for n-ary unions. this changes no strategies or memory consumers whatsoever, so
View Full Code Here

TOP

Related Classes of org.apache.flink.compiler.deadlockdetect.DeadlockPreventer

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.