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

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

Best Java code snippets using org.apache.flink.optimizer.plan.SinkJoinerPlanNode.getInput2 (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.planSinkJoinerPlanNodegetInput2

Popular methods of SinkJoinerPlanNode

  • <init>
  • getDataSinks
  • getInput1

Popular in Java

  • Making http post requests using okhttp
  • compareTo (BigDecimal)
  • setContentView (Activity)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • InetAddress (java.net)
    An Internet Protocol (IP) address. This can be either an IPv4 address or an IPv6 address, and in pra
  • KeyStore (java.security)
    KeyStore is responsible for maintaining cryptographic keys and their owners. The type of the syste
  • Connection (java.sql)
    A connection represents a link from a Java application to a database. All SQL statements and results
  • Iterator (java.util)
    An iterator over a sequence of objects, such as a collection.If a collection has been changed since
  • Stream (java.util.stream)
    A sequence of elements supporting sequential and parallel aggregate operations. The following exampl
  • Annotation (javassist.bytecode.annotation)
    The annotation structure.An instance of this class is returned bygetAnnotations() in AnnotationsAttr
  • Top Sublime Text 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