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

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

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

origin: com.alibaba.blink/flink-optimizer

for (LocalPropertiesPair lpp : dps.getPossibleLocalProperties()) {
  if (lpp.getProperties1().isMetBy(in1.getLocalProperties()) &&
    lpp.getProperties2().isMetBy(in2.getLocalProperties()) )
    if (dps.areCoFulfilled(lpp.getProperties1(), lpp.getProperties2(), 
      in1.getLocalProperties(), in2.getLocalProperties()))
      in2Copy.setRequiredLocalProps(lpp.getProperties2());
origin: org.apache.flink/flink-optimizer_2.10

for (LocalPropertiesPair lpp : dps.getPossibleLocalProperties()) {
  if (lpp.getProperties1().isMetBy(in1.getLocalProperties()) &&
    lpp.getProperties2().isMetBy(in2.getLocalProperties()) )
    if (dps.areCoFulfilled(lpp.getProperties1(), lpp.getProperties2(), 
      in1.getLocalProperties(), in2.getLocalProperties()))
      in2Copy.setRequiredLocalProps(lpp.getProperties2());
origin: org.apache.flink/flink-optimizer

for (LocalPropertiesPair lpp : dps.getPossibleLocalProperties()) {
  if (lpp.getProperties1().isMetBy(in1.getLocalProperties()) &&
    lpp.getProperties2().isMetBy(in2.getLocalProperties()) )
    if (dps.areCoFulfilled(lpp.getProperties1(), lpp.getProperties2(), 
      in1.getLocalProperties(), in2.getLocalProperties()))
      in2Copy.setRequiredLocalProps(lpp.getProperties2());
origin: org.apache.flink/flink-optimizer_2.11

for (LocalPropertiesPair lpp : dps.getPossibleLocalProperties()) {
  if (lpp.getProperties1().isMetBy(in1.getLocalProperties()) &&
    lpp.getProperties2().isMetBy(in2.getLocalProperties()) )
    if (dps.areCoFulfilled(lpp.getProperties1(), lpp.getProperties2(), 
      in1.getLocalProperties(), in2.getLocalProperties()))
      in2Copy.setRequiredLocalProps(lpp.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: 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: 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: apache/flink

for (LocalPropertiesPair lpp : dps.getPossibleLocalProperties()) {
  if (lpp.getProperties1().isMetBy(in1.getLocalProperties()) &&
    lpp.getProperties2().isMetBy(in2.getLocalProperties()) )
    if (dps.areCoFulfilled(lpp.getProperties1(), lpp.getProperties2(), 
      in1.getLocalProperties(), in2.getLocalProperties()))
      in2Copy.setRequiredLocalProps(lpp.getProperties2());
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$LocalPropertiesPairgetProperties2

Popular methods of OperatorDescriptorDual$LocalPropertiesPair

  • <init>
  • getProperties1

Popular in Java

  • Making http post requests using okhttp
  • setRequestProperty (URLConnection)
  • onRequestPermissionsResult (Fragment)
  • requestLocationUpdates (LocationManager)
  • ConnectException (java.net)
    A ConnectException is thrown if a connection cannot be established to a remote host on a specific po
  • URL (java.net)
    A Uniform Resource Locator that identifies the location of an Internet resource as specified by RFC
  • KeyStore (java.security)
    KeyStore is responsible for maintaining cryptographic keys and their owners. The type of the syste
  • BitSet (java.util)
    The BitSet class implements abit array [http://en.wikipedia.org/wiki/Bit_array]. Each element is eit
  • GregorianCalendar (java.util)
    GregorianCalendar is a concrete subclass of Calendarand provides the standard calendar used by most
  • Notification (javax.management)
  • CodeWhisperer alternatives
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