Tabnine Logo
SinkJoinerPlanNode.getInput1
Code IndexAdd Tabnine to your IDE (free)

How to use
getInput1
method
in
org.apache.flink.optimizer.plan.SinkJoinerPlanNode

Best Java code snippets using org.apache.flink.optimizer.plan.SinkJoinerPlanNode.getInput1 (Showing top 5 results out of 315)

origin: apache/flink

public void setCosts(Costs nodeCosts) {
  // the plan enumeration logic works as for regular two-input-operators, which is important
  // because of the branch handling logic. it does pick redistributing network channels
  // between the sink and the sink joiner, because sinks joiner has a different parallelism than the sink.
  // we discard any cost and simply use the sum of the costs from the two children.
  
  Costs totalCosts = getInput1().getSource().getCumulativeCosts().clone();
  totalCosts.addCosts(getInput2().getSource().getCumulativeCosts());
  super.setCosts(totalCosts);
}

origin: org.apache.flink/flink-optimizer_2.11

public void setCosts(Costs nodeCosts) {
  // the plan enumeration logic works as for regular two-input-operators, which is important
  // because of the branch handling logic. it does pick redistributing network channels
  // between the sink and the sink joiner, because sinks joiner has a different parallelism than the sink.
  // we discard any cost and simply use the sum of the costs from the two children.
  
  Costs totalCosts = getInput1().getSource().getCumulativeCosts().clone();
  totalCosts.addCosts(getInput2().getSource().getCumulativeCosts());
  super.setCosts(totalCosts);
}

origin: com.alibaba.blink/flink-optimizer

public void setCosts(Costs nodeCosts) {
  // the plan enumeration logic works as for regular two-input-operators, which is important
  // because of the branch handling logic. it does pick redistributing network channels
  // between the sink and the sink joiner, because sinks joiner has a different parallelism than the sink.
  // we discard any cost and simply use the sum of the costs from the two children.
  
  Costs totalCosts = getInput1().getSource().getCumulativeCosts().clone();
  totalCosts.addCosts(getInput2().getSource().getCumulativeCosts());
  super.setCosts(totalCosts);
}

origin: org.apache.flink/flink-optimizer

public void setCosts(Costs nodeCosts) {
  // the plan enumeration logic works as for regular two-input-operators, which is important
  // because of the branch handling logic. it does pick redistributing network channels
  // between the sink and the sink joiner, because sinks joiner has a different parallelism than the sink.
  // we discard any cost and simply use the sum of the costs from the two children.
  
  Costs totalCosts = getInput1().getSource().getCumulativeCosts().clone();
  totalCosts.addCosts(getInput2().getSource().getCumulativeCosts());
  super.setCosts(totalCosts);
}

origin: org.apache.flink/flink-optimizer_2.10

public void setCosts(Costs nodeCosts) {
  // the plan enumeration logic works as for regular two-input-operators, which is important
  // because of the branch handling logic. it does pick redistributing network channels
  // between the sink and the sink joiner, because sinks joiner has a different parallelism than the sink.
  // we discard any cost and simply use the sum of the costs from the two children.
  
  Costs totalCosts = getInput1().getSource().getCumulativeCosts().clone();
  totalCosts.addCosts(getInput2().getSource().getCumulativeCosts());
  super.setCosts(totalCosts);
}

org.apache.flink.optimizer.planSinkJoinerPlanNodegetInput1

Popular methods of SinkJoinerPlanNode

  • <init>
  • getDataSinks
  • getInput2

Popular in Java

  • Reading from database using SQL prepared statement
  • findViewById (Activity)
  • scheduleAtFixedRate (Timer)
  • getSystemService (Context)
  • BufferedWriter (java.io)
    Wraps an existing Writer and buffers the output. Expensive interaction with the underlying reader is
  • String (java.lang)
  • ResourceBundle (java.util)
    ResourceBundle is an abstract class which is the superclass of classes which provide Locale-specifi
  • SortedSet (java.util)
    SortedSet is a Set which iterates over its elements in a sorted order. The order is determined eithe
  • TreeSet (java.util)
    TreeSet is an implementation of SortedSet. All optional operations (adding and removing) are support
  • Reference (javax.naming)
  • Best IntelliJ plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now