Tabnine Logo
DeltaIterationBase.getSolutionSetDelta
Code IndexAdd Tabnine to your IDE (free)

How to use
getSolutionSetDelta
method
in
org.apache.flink.api.common.operators.base.DeltaIterationBase

Best Java code snippets using org.apache.flink.api.common.operators.base.DeltaIterationBase.getSolutionSetDelta (Showing top 10 results out of 315)

origin: apache/flink

  throw new InvalidProgramException("The delta iteration " + iteration.getName() + " has no initial workset.");
if (iteration.getSolutionSetDelta() == null) {
  throw new InvalidProgramException("The iteration " + iteration.getName() + " has no solution set delta defined (is not closed).");
iteration.getSolutionSetDelta().accept(dynCollector);
iteration.getNextWorkset().accept(dynCollector);
  List<T> solutionSetDelta = (List<T>) execute(iteration.getSolutionSetDelta(), superstep);
  this.intermediateResults.put(iteration.getSolutionSetDelta(), solutionSetDelta);
origin: apache/flink

@Override
public boolean preVisit(Operator<?> visitable) {
  if (this.seen.add(visitable)) {
    // add to  the map
    final String name = visitable.getName();
    List<Operator<?>> list = this.map.get(name);
    if (list == null) {
      list = new ArrayList<Operator<?>>(2);
      this.map.put(name, list);
    }
    list.add(visitable);
    
    // recurse into bulk iterations
    if (visitable instanceof BulkIterationBase) {
      ((BulkIterationBase) visitable).getNextPartialSolution().accept(this);
    } else if (visitable instanceof DeltaIterationBase) {
      ((DeltaIterationBase) visitable).getSolutionSetDelta().accept(this);
      ((DeltaIterationBase) visitable).getNextWorkset().accept(this);
    }
    
    return true;
  } else {
    return false;
  }
}
origin: apache/flink

iter.getSolutionSetDelta().accept(recursiveCreator);
final OptimizerNode solutionSetDeltaNode = recursiveCreator.con2node.get(iter.getSolutionSetDelta());
origin: apache/flink

InnerJoinOperatorBase<?, ?, ?, ?> solutionSetJoin = (InnerJoinOperatorBase<?, ?, ?, ?>) iteration.getSolutionSetDelta();
InnerJoinOperatorBase<?, ?, ?, ?> worksetSelfJoin = (InnerJoinOperatorBase<?, ?, ?, ?>) solutionSetJoin.getFirstInput();
MapOperatorBase<?, ?, ?> worksetMapper = (MapOperatorBase<?, ?, ?>) worksetSelfJoin.getFirstInput();
origin: org.apache.flink/flink-core

  throw new InvalidProgramException("The delta iteration " + iteration.getName() + " has no initial workset.");
if (iteration.getSolutionSetDelta() == null) {
  throw new InvalidProgramException("The iteration " + iteration.getName() + " has no solution set delta defined (is not closed).");
iteration.getSolutionSetDelta().accept(dynCollector);
iteration.getNextWorkset().accept(dynCollector);
  List<T> solutionSetDelta = (List<T>) execute(iteration.getSolutionSetDelta(), superstep);
  this.intermediateResults.put(iteration.getSolutionSetDelta(), solutionSetDelta);
origin: com.alibaba.blink/flink-core

  throw new InvalidProgramException("The delta iteration " + iteration.getName() + " has no initial workset.");
if (iteration.getSolutionSetDelta() == null) {
  throw new InvalidProgramException("The iteration " + iteration.getName() + " has no solution set delta defined (is not closed).");
iteration.getSolutionSetDelta().accept(dynCollector);
iteration.getNextWorkset().accept(dynCollector);
  List<T> solutionSetDelta = (List<T>) execute(iteration.getSolutionSetDelta(), superstep);
  this.intermediateResults.put(iteration.getSolutionSetDelta(), solutionSetDelta);
origin: org.apache.flink/flink-optimizer_2.10

iter.getSolutionSetDelta().accept(recursiveCreator);
final OptimizerNode solutionSetDeltaNode = recursiveCreator.con2node.get(iter.getSolutionSetDelta());
origin: org.apache.flink/flink-optimizer_2.11

iter.getSolutionSetDelta().accept(recursiveCreator);
final OptimizerNode solutionSetDeltaNode = recursiveCreator.con2node.get(iter.getSolutionSetDelta());
origin: org.apache.flink/flink-optimizer

iter.getSolutionSetDelta().accept(recursiveCreator);
final OptimizerNode solutionSetDeltaNode = recursiveCreator.con2node.get(iter.getSolutionSetDelta());
origin: com.alibaba.blink/flink-optimizer

iter.getSolutionSetDelta().accept(recursiveCreator);
final OptimizerNode solutionSetDeltaNode = recursiveCreator.con2node.get(iter.getSolutionSetDelta());
org.apache.flink.api.common.operators.baseDeltaIterationBasegetSolutionSetDelta

Javadoc

Gets the contract that has been set as the solution set delta.

Popular methods of DeltaIterationBase

  • getAggregators
  • getNextWorkset
    Gets the contract that has been set as the next workset.
  • getSolutionSet
    Gets the contract that represents the solution set for the step function.
  • getWorkset
    Gets the contract that represents the workset for the step function.
  • getMaximumNumberOfIterations
  • getSolutionSetKeyFields
  • getOperatorInfo
  • isSolutionSetUnManaged
    gets whether the solution set is in managed or unmanaged memory.
  • getName
  • <init>
  • getFirstInput
  • getInitialSolutionSet
    Returns the initial solution set input, or null, if none is set.
  • getFirstInput,
  • getInitialSolutionSet,
  • getInitialWorkset,
  • getSecondInput,
  • setFirstInput,
  • setInitialSolutionSet,
  • setInitialWorkset,
  • setMaximumNumberOfIterations,
  • setNextWorkset

Popular in Java

  • Creating JSON documents from java classes using gson
  • notifyDataSetChanged (ArrayAdapter)
  • addToBackStack (FragmentTransaction)
  • requestLocationUpdates (LocationManager)
  • Point (java.awt)
    A point representing a location in (x,y) coordinate space, specified in integer precision.
  • Dictionary (java.util)
    Note: Do not use this class since it is obsolete. Please use the Map interface for new implementatio
  • Random (java.util)
    This class provides methods that return pseudo-random values.It is dangerous to seed Random with the
  • JCheckBox (javax.swing)
  • JTextField (javax.swing)
  • StringUtils (org.apache.commons.lang)
    Operations on java.lang.String that arenull safe. * IsEmpty/IsBlank - checks if a String contains
  • Github Copilot 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