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

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

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

origin: apache/flink

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

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

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

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

if (gpp.getProperties1().isMetBy(c1.getGlobalProperties()) && 
  gpp.getProperties2().isMetBy(c2.getGlobalProperties()) )
    if (desc.areCompatible(gpp.getProperties1(), gpp.getProperties2(), 
        c1.getGlobalProperties(), c2.getGlobalProperties()))
      c1Clone.setRequiredGlobalProps(gpp.getProperties1());
      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$GlobalPropertiesPairgetProperties1

Popular methods of OperatorDescriptorDual$GlobalPropertiesPair

  • <init>
  • getProperties2

Popular in Java

  • Creating JSON documents from java classes using gson
  • addToBackStack (FragmentTransaction)
  • onCreateOptionsMenu (Activity)
  • setScale (BigDecimal)
  • System (java.lang)
    Provides access to system-related information and resources including standard input and output. Ena
  • URLConnection (java.net)
    A connection to a URL for reading or writing. For HTTP connections, see HttpURLConnection for docume
  • BitSet (java.util)
    The BitSet class implements abit array [http://en.wikipedia.org/wiki/Bit_array]. Each element is eit
  • HttpServlet (javax.servlet.http)
    Provides an abstract class to be subclassed to create an HTTP servlet suitable for a Web site. A sub
  • JPanel (javax.swing)
  • Option (scala)
  • 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