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

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

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

origin: apache/flink

@Override
protected List<LocalPropertiesPair> createPossibleLocalProperties() {
  // all properties are possible
  return Collections.singletonList(new LocalPropertiesPair(new RequestedLocalProperties(), new RequestedLocalProperties()));
}
origin: com.alibaba.blink/flink-optimizer

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

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

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

if (lpp.getProperties1().isMetBy(in1.getLocalProperties()) &&
  lpp.getProperties2().isMetBy(in2.getLocalProperties()) )
  if (dps.areCoFulfilled(lpp.getProperties1(), lpp.getProperties2(), 
    in1.getLocalProperties(), in2.getLocalProperties()))
    in1Copy.setRequiredLocalProps(lpp.getProperties1());
    in2Copy.setRequiredLocalProps(lpp.getProperties2());
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_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: 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: com.alibaba.blink/flink-optimizer

@Override
protected List<LocalPropertiesPair> createPossibleLocalProperties() {
  // all properties are possible
  return Collections.singletonList(new LocalPropertiesPair(new RequestedLocalProperties(), new RequestedLocalProperties()));
}

origin: com.alibaba.blink/flink-optimizer

@Override
protected List<LocalPropertiesPair> createPossibleLocalProperties() {
  // all properties are possible
  return Collections.singletonList(new LocalPropertiesPair(new RequestedLocalProperties(), new RequestedLocalProperties()));
}
origin: com.alibaba.blink/flink-optimizer

@Override
protected List<LocalPropertiesPair> createPossibleLocalProperties() {
  // all properties are possible
  return Collections.singletonList(new LocalPropertiesPair(
    new RequestedLocalProperties(), new RequestedLocalProperties()));
}

origin: com.alibaba.blink/flink-optimizer

@Override
protected List<LocalPropertiesPair> createPossibleLocalProperties() {
  RequestedLocalProperties sort = new RequestedLocalProperties(Utils.createOrdering(this.keys1));
  RequestedLocalProperties none = new RequestedLocalProperties();
  return Collections.singletonList(new LocalPropertiesPair(sort, none));
}

origin: org.apache.flink/flink-optimizer

@Override
protected List<LocalPropertiesPair> createPossibleLocalProperties() {
  // all properties are possible
  return Collections.singletonList(new LocalPropertiesPair(new RequestedLocalProperties(), new RequestedLocalProperties()));
}

origin: org.apache.flink/flink-optimizer

@Override
protected List<LocalPropertiesPair> createPossibleLocalProperties() {
  // all properties are possible
  return Collections.singletonList(new LocalPropertiesPair(new RequestedLocalProperties(), new RequestedLocalProperties()));
}

origin: org.apache.flink/flink-optimizer_2.11

@Override
protected List<OperatorDescriptorDual.LocalPropertiesPair> createPossibleLocalProperties() {
  RequestedLocalProperties sort1 = new RequestedLocalProperties(this.ordering1);
  RequestedLocalProperties sort2 = new RequestedLocalProperties(this.ordering2);
  return Collections.singletonList(new OperatorDescriptorDual.LocalPropertiesPair(sort1, sort2));
}
origin: org.apache.flink/flink-optimizer_2.11

@Override
protected List<LocalPropertiesPair> createPossibleLocalProperties() {
  RequestedLocalProperties sort1 = new RequestedLocalProperties(Utils.createOrdering(this.keys1));
  RequestedLocalProperties sort2 = new RequestedLocalProperties(Utils.createOrdering(this.keys2));
  return Collections.singletonList(new LocalPropertiesPair(sort1, sort2));
}
origin: org.apache.flink/flink-optimizer_2.10

@Override
protected List<LocalPropertiesPair> createPossibleLocalProperties() {
  // all properties are possible
  return Collections.singletonList(new LocalPropertiesPair(new RequestedLocalProperties(), new RequestedLocalProperties()));
}
origin: org.apache.flink/flink-optimizer

@Override
protected List<LocalPropertiesPair> createPossibleLocalProperties() {
  // all properties are possible
  return Collections.singletonList(new LocalPropertiesPair(new RequestedLocalProperties(), new RequestedLocalProperties()));
}
origin: org.apache.flink/flink-optimizer

@Override
protected List<OperatorDescriptorDual.LocalPropertiesPair> createPossibleLocalProperties() {
  // all properties are possible
  return Collections.singletonList(new OperatorDescriptorDual.LocalPropertiesPair(new RequestedLocalProperties(), new RequestedLocalProperties()));
}
org.apache.flink.optimizer.operatorsOperatorDescriptorDual$LocalPropertiesPair

Most used methods

  • <init>
  • getProperties1
  • getProperties2

Popular in Java

  • Updating database using SQL prepared statement
  • getSupportFragmentManager (FragmentActivity)
  • setRequestProperty (URLConnection)
  • putExtra (Intent)
  • BufferedImage (java.awt.image)
    The BufferedImage subclass describes an java.awt.Image with an accessible buffer of image data. All
  • Thread (java.lang)
    A thread is a thread of execution in a program. The Java Virtual Machine allows an application to ha
  • BigInteger (java.math)
    An immutable arbitrary-precision signed integer.FAST CRYPTOGRAPHY This implementation is efficient f
  • Semaphore (java.util.concurrent)
    A counting semaphore. Conceptually, a semaphore maintains a set of permits. Each #acquire blocks if
  • Cipher (javax.crypto)
    This class provides access to implementations of cryptographic ciphers for encryption and decryption
  • IsNull (org.hamcrest.core)
    Is the value null?
  • Top PhpStorm 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