Tabnine Logo
OperatorDescriptorDual$GlobalPropertiesPair.getProperties2
Code IndexAdd Tabnine to your IDE (free)

How to use
getProperties2
method
in
org.apache.flink.optimizer.operators.OperatorDescriptorDual$GlobalPropertiesPair

Best Java code snippets using org.apache.flink.optimizer.operators.OperatorDescriptorDual$GlobalPropertiesPair.getProperties2 (Showing top 10 results out of 315)

origin: apache/flink

for (GlobalPropertiesPair gpp : allGlobalPairs) {
  if (gpp.getProperties1().isMetBy(c1.getGlobalProperties()) && 
    gpp.getProperties2().isMetBy(c2.getGlobalProperties()) )
      if (desc.areCompatible(gpp.getProperties1(), gpp.getProperties2(), 
          c1.getGlobalProperties(), c2.getGlobalProperties()))
        c2.setRequiredGlobalProps(gpp.getProperties2());
origin: com.alibaba.blink/flink-optimizer

for (GlobalPropertiesPair gpp : allGlobalPairs) {
  if (gpp.getProperties1().isMetBy(c1.getGlobalProperties()) && 
    gpp.getProperties2().isMetBy(c2.getGlobalProperties()) )
      if (desc.areCompatible(gpp.getProperties1(), gpp.getProperties2(), 
          c1.getGlobalProperties(), c2.getGlobalProperties()))
        c2.setRequiredGlobalProps(gpp.getProperties2());
origin: org.apache.flink/flink-optimizer_2.10

for (GlobalPropertiesPair gpp : allGlobalPairs) {
  if (gpp.getProperties1().isMetBy(c1.getGlobalProperties()) && 
    gpp.getProperties2().isMetBy(c2.getGlobalProperties()) )
      if (desc.areCompatible(gpp.getProperties1(), gpp.getProperties2(), 
          c1.getGlobalProperties(), c2.getGlobalProperties()))
        c2.setRequiredGlobalProps(gpp.getProperties2());
origin: org.apache.flink/flink-optimizer_2.11

for (GlobalPropertiesPair gpp : allGlobalPairs) {
  if (gpp.getProperties1().isMetBy(c1.getGlobalProperties()) && 
    gpp.getProperties2().isMetBy(c2.getGlobalProperties()) )
      if (desc.areCompatible(gpp.getProperties1(), gpp.getProperties2(), 
          c1.getGlobalProperties(), c2.getGlobalProperties()))
        c2.setRequiredGlobalProps(gpp.getProperties2());
origin: org.apache.flink/flink-optimizer

for (GlobalPropertiesPair gpp : allGlobalPairs) {
  if (gpp.getProperties1().isMetBy(c1.getGlobalProperties()) && 
    gpp.getProperties2().isMetBy(c2.getGlobalProperties()) )
      if (desc.areCompatible(gpp.getProperties1(), gpp.getProperties2(), 
          c1.getGlobalProperties(), c2.getGlobalProperties()))
        c2.setRequiredGlobalProps(gpp.getProperties2());
origin: org.apache.flink/flink-optimizer_2.10

@Override
public void computeInterestingPropertiesForInputs(CostEstimator estimator) {
  // get what we inherit and what is preserved by our user code 
  final InterestingProperties props1 = getInterestingProperties().filterByCodeAnnotations(this, 0);
  final InterestingProperties props2 = getInterestingProperties().filterByCodeAnnotations(this, 1);
  
  // add all properties relevant to this node
  for (OperatorDescriptorDual dpd : getProperties()) {
    for (GlobalPropertiesPair gp : dpd.getPossibleGlobalProperties()) {
      // input 1
      props1.addGlobalProperties(gp.getProperties1());
      
      // input 2
      props2.addGlobalProperties(gp.getProperties2());
    }
    for (LocalPropertiesPair lp : dpd.getPossibleLocalProperties()) {
      // input 1
      props1.addLocalProperties(lp.getProperties1());
      
      // input 2
      props2.addLocalProperties(lp.getProperties2());
    }
  }
  this.input1.setInterestingProperties(props1);
  this.input2.setInterestingProperties(props2);
  
  for (DagConnection conn : getBroadcastConnections()) {
    conn.setInterestingProperties(new InterestingProperties());
  }
}
origin: org.apache.flink/flink-optimizer_2.11

@Override
public void computeInterestingPropertiesForInputs(CostEstimator estimator) {
  // get what we inherit and what is preserved by our user code 
  final InterestingProperties props1 = getInterestingProperties().filterByCodeAnnotations(this, 0);
  final InterestingProperties props2 = getInterestingProperties().filterByCodeAnnotations(this, 1);
  
  // add all properties relevant to this node
  for (OperatorDescriptorDual dpd : getProperties()) {
    for (GlobalPropertiesPair gp : dpd.getPossibleGlobalProperties()) {
      // input 1
      props1.addGlobalProperties(gp.getProperties1());
      
      // input 2
      props2.addGlobalProperties(gp.getProperties2());
    }
    for (LocalPropertiesPair lp : dpd.getPossibleLocalProperties()) {
      // input 1
      props1.addLocalProperties(lp.getProperties1());
      
      // input 2
      props2.addLocalProperties(lp.getProperties2());
    }
  }
  this.input1.setInterestingProperties(props1);
  this.input2.setInterestingProperties(props2);
  
  for (DagConnection conn : getBroadcastConnections()) {
    conn.setInterestingProperties(new InterestingProperties());
  }
}
origin: com.alibaba.blink/flink-optimizer

@Override
public void computeInterestingPropertiesForInputs(CostEstimator estimator) {
  // get what we inherit and what is preserved by our user code 
  final InterestingProperties props1 = getInterestingProperties().filterByCodeAnnotations(this, 0);
  final InterestingProperties props2 = getInterestingProperties().filterByCodeAnnotations(this, 1);
  
  // add all properties relevant to this node
  for (OperatorDescriptorDual dpd : getProperties()) {
    for (GlobalPropertiesPair gp : dpd.getPossibleGlobalProperties()) {
      // input 1
      props1.addGlobalProperties(gp.getProperties1());
      
      // input 2
      props2.addGlobalProperties(gp.getProperties2());
    }
    for (LocalPropertiesPair lp : dpd.getPossibleLocalProperties()) {
      // input 1
      props1.addLocalProperties(lp.getProperties1());
      
      // input 2
      props2.addLocalProperties(lp.getProperties2());
    }
  }
  this.input1.setInterestingProperties(props1);
  this.input2.setInterestingProperties(props2);
  
  for (DagConnection conn : getBroadcastConnections()) {
    conn.setInterestingProperties(new InterestingProperties());
  }
}
origin: org.apache.flink/flink-optimizer

@Override
public void computeInterestingPropertiesForInputs(CostEstimator estimator) {
  // get what we inherit and what is preserved by our user code 
  final InterestingProperties props1 = getInterestingProperties().filterByCodeAnnotations(this, 0);
  final InterestingProperties props2 = getInterestingProperties().filterByCodeAnnotations(this, 1);
  
  // add all properties relevant to this node
  for (OperatorDescriptorDual dpd : getProperties()) {
    for (GlobalPropertiesPair gp : dpd.getPossibleGlobalProperties()) {
      // input 1
      props1.addGlobalProperties(gp.getProperties1());
      
      // input 2
      props2.addGlobalProperties(gp.getProperties2());
    }
    for (LocalPropertiesPair lp : dpd.getPossibleLocalProperties()) {
      // input 1
      props1.addLocalProperties(lp.getProperties1());
      
      // input 2
      props2.addLocalProperties(lp.getProperties2());
    }
  }
  this.input1.setInterestingProperties(props1);
  this.input2.setInterestingProperties(props2);
  
  for (DagConnection conn : getBroadcastConnections()) {
    conn.setInterestingProperties(new InterestingProperties());
  }
}
origin: apache/flink

@Override
public void computeInterestingPropertiesForInputs(CostEstimator estimator) {
  // get what we inherit and what is preserved by our user code 
  final InterestingProperties props1 = getInterestingProperties().filterByCodeAnnotations(this, 0);
  final InterestingProperties props2 = getInterestingProperties().filterByCodeAnnotations(this, 1);
  
  // add all properties relevant to this node
  for (OperatorDescriptorDual dpd : getProperties()) {
    for (GlobalPropertiesPair gp : dpd.getPossibleGlobalProperties()) {
      // input 1
      props1.addGlobalProperties(gp.getProperties1());
      
      // input 2
      props2.addGlobalProperties(gp.getProperties2());
    }
    for (LocalPropertiesPair lp : dpd.getPossibleLocalProperties()) {
      // input 1
      props1.addLocalProperties(lp.getProperties1());
      
      // input 2
      props2.addLocalProperties(lp.getProperties2());
    }
  }
  this.input1.setInterestingProperties(props1);
  this.input2.setInterestingProperties(props2);
  
  for (DagConnection conn : getBroadcastConnections()) {
    conn.setInterestingProperties(new InterestingProperties());
  }
}
org.apache.flink.optimizer.operatorsOperatorDescriptorDual$GlobalPropertiesPairgetProperties2

Popular methods of OperatorDescriptorDual$GlobalPropertiesPair

  • <init>
  • getProperties1

Popular in Java

  • Finding current android device location
  • setScale (BigDecimal)
  • getSystemService (Context)
  • setContentView (Activity)
  • Runnable (java.lang)
    Represents a command that can be executed. Often used to run code in a different Thread.
  • DateFormat (java.text)
    Formats or parses dates and times.This class provides factories for obtaining instances configured f
  • NumberFormat (java.text)
    The abstract base class for all number formats. This class provides the interface for formatting and
  • Scanner (java.util)
    A parser that parses a text string of primitive types and strings with the help of regular expressio
  • HttpServletRequest (javax.servlet.http)
    Extends the javax.servlet.ServletRequest interface to provide request information for HTTP servlets.
  • LoggerFactory (org.slf4j)
    The LoggerFactory is a utility class producing Loggers for various logging APIs, most notably for lo
  • Top Vim 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