Tabnine Logo
FilterNode
Code IndexAdd Tabnine to your IDE (free)

How to use
FilterNode
in
org.apache.flink.optimizer.dag

Best Java code snippets using org.apache.flink.optimizer.dag.FilterNode (Showing top 10 results out of 315)

origin: apache/flink

  /**
   * Computes the estimates for the Filter operator. Since it applies a filter on the data we assume a cardinality
   * decrease. To give the system a hint at data decrease, we use a default magic number to indicate a 0.5 decrease. 
   */
  @Override
  protected void computeOperatorSpecificDefaultEstimates(DataStatistics statistics) {
    this.estimatedNumRecords = (long) (getPredecessorNode().getEstimatedNumRecords() * 0.5);
    this.estimatedOutputSize = (long) (getPredecessorNode().getEstimatedOutputSize() * 0.5);
  }
}
origin: apache/flink

n = new FilterNode((FilterOperatorBase<?, ?>) c);
origin: org.apache.flink/flink-optimizer_2.10

n = new FilterNode((FilterOperatorBase<?, ?>) c);
origin: org.apache.flink/flink-optimizer_2.10

  /**
   * Computes the estimates for the Filter operator. Since it applies a filter on the data we assume a cardinality
   * decrease. To give the system a hint at data decrease, we use a default magic number to indicate a 0.5 decrease. 
   */
  @Override
  protected void computeOperatorSpecificDefaultEstimates(DataStatistics statistics) {
    this.estimatedNumRecords = (long) (getPredecessorNode().getEstimatedNumRecords() * 0.5);
    this.estimatedOutputSize = (long) (getPredecessorNode().getEstimatedOutputSize() * 0.5);
  }
}
origin: org.apache.flink/flink-optimizer_2.11

n = new FilterNode((FilterOperatorBase<?, ?>) c);
origin: org.apache.flink/flink-optimizer_2.11

  /**
   * Computes the estimates for the Filter operator. Since it applies a filter on the data we assume a cardinality
   * decrease. To give the system a hint at data decrease, we use a default magic number to indicate a 0.5 decrease. 
   */
  @Override
  protected void computeOperatorSpecificDefaultEstimates(DataStatistics statistics) {
    this.estimatedNumRecords = (long) (getPredecessorNode().getEstimatedNumRecords() * 0.5);
    this.estimatedOutputSize = (long) (getPredecessorNode().getEstimatedOutputSize() * 0.5);
  }
}
origin: org.apache.flink/flink-optimizer

n = new FilterNode((FilterOperatorBase<?, ?>) c);
origin: org.apache.flink/flink-optimizer

  /**
   * Computes the estimates for the Filter operator. Since it applies a filter on the data we assume a cardinality
   * decrease. To give the system a hint at data decrease, we use a default magic number to indicate a 0.5 decrease. 
   */
  @Override
  protected void computeOperatorSpecificDefaultEstimates(DataStatistics statistics) {
    this.estimatedNumRecords = (long) (getPredecessorNode().getEstimatedNumRecords() * 0.5);
    this.estimatedOutputSize = (long) (getPredecessorNode().getEstimatedOutputSize() * 0.5);
  }
}
origin: com.alibaba.blink/flink-optimizer

n = new FilterNode((FilterOperatorBase<?, ?>) c);
origin: com.alibaba.blink/flink-optimizer

  /**
   * Computes the estimates for the Filter operator. Since it applies a filter on the data we assume a cardinality
   * decrease. To give the system a hint at data decrease, we use a default magic number to indicate a 0.5 decrease. 
   */
  @Override
  protected void computeOperatorSpecificDefaultEstimates(DataStatistics statistics) {
    this.estimatedNumRecords = (long) (getPredecessorNode().getEstimatedNumRecords() * 0.5);
    this.estimatedOutputSize = (long) (getPredecessorNode().getEstimatedOutputSize() * 0.5);
  }
}
org.apache.flink.optimizer.dagFilterNode

Javadoc

The optimizer's internal representation of a Filter operator node.

Most used methods

  • <init>
  • getPredecessorNode

Popular in Java

  • Parsing JSON documents to java classes using gson
  • putExtra (Intent)
  • setRequestProperty (URLConnection)
  • getSystemService (Context)
  • GridLayout (java.awt)
    The GridLayout class is a layout manager that lays out a container's components in a rectangular gri
  • BufferedWriter (java.io)
    Wraps an existing Writer and buffers the output. Expensive interaction with the underlying reader is
  • ResourceBundle (java.util)
    ResourceBundle is an abstract class which is the superclass of classes which provide Locale-specifi
  • SortedMap (java.util)
    A map that has its keys ordered. The sorting is according to either the natural ordering of its keys
  • Pattern (java.util.regex)
    Patterns are compiled regular expressions. In many cases, convenience methods such as String#matches
  • Table (org.hibernate.mapping)
    A relational table
  • 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