Codota Logo
DeltaIterationBase.getSolutionSetDelta
Code IndexAdd Codota 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)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
ScheduledThreadPoolExecutor s =
  • Codota Iconnew ScheduledThreadPoolExecutor(corePoolSize)
  • Codota IconThreadFactory threadFactory;new ScheduledThreadPoolExecutor(corePoolSize, threadFactory)
  • Codota IconString str;new ScheduledThreadPoolExecutor(1, new ThreadFactoryBuilder().setNameFormat(str).build())
  • Smart code suggestions by Codota
}
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

  • Reading from database using SQL prepared statement
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • putExtra (Intent)
  • getSystemService (Context)
  • GridLayout (java.awt)
    The GridLayout class is a layout manager that lays out a container's components in a rectangular gri
  • MessageDigest (java.security)
    Uses a one-way hash function to turn an arbitrary number of bytes into a fixed-length byte sequence.
  • Manifest (java.util.jar)
    The Manifest class is used to obtain attribute information for a JarFile and its entries.
  • Handler (java.util.logging)
    A Handler object accepts a logging request and exports the desired messages to a target, for example
  • Stream (java.util.stream)
    A sequence of elements supporting sequential and parallel aggregate operations. The following exampl
  • ServletException (javax.servlet)
    Defines a general exception a servlet can throw when it encounters difficulty.
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now