Tabnine Logo
JobGraphGenerator$TaskInChain.getContainingVertex
Code IndexAdd Tabnine to your IDE (free)

How to use
getContainingVertex
method
in
org.apache.flink.optimizer.plantranslate.JobGraphGenerator$TaskInChain

Best Java code snippets using org.apache.flink.optimizer.plantranslate.JobGraphGenerator$TaskInChain.getContainingVertex (Showing top 20 results out of 315)

origin: apache/flink

TaskConfig t = new TaskConfig(tic.getContainingVertex().getConfiguration());
t.addChainedTask(tic.getChainedTask(), tic.getTaskConfig(), tic.getTaskName());
origin: apache/flink

if ((chainedTask = this.chainedTasks.get(sourceNode)) != null) {
  if (chainedTask.getContainingVertex() == null) {
    throw new IllegalStateException("Bug: Chained task has not been assigned its containing vertex when connecting.");
  sourceVertex = chainedTask.getContainingVertex();
  sourceVertexConfig = chainedTask.getTaskConfig();
} else if ((iteration = this.iterations.get(sourceNode)) != null) {
origin: apache/flink

JobVertex container = chainedTask.getContainingVertex();
  if (container == null) {
    container = this.chainedTasks.get(sourceNode).getContainingVertex();
    if (container == null) {
      throw new IllegalStateException("Bug: Chained task predecessor has not been assigned its containing vertex.");
origin: com.alibaba.blink/flink-optimizer

if ((chainedTask = this.chainedTasks.get(sourceNode)) != null) {
  if (chainedTask.getContainingVertex() == null) {
    throw new IllegalStateException("Bug: Chained task has not been assigned its containing vertex when connecting.");
  sourceVertex = chainedTask.getContainingVertex();
  sourceVertexConfig = chainedTask.getTaskConfig();
} else if ((iteration = this.iterations.get(sourceNode)) != null) {
origin: com.alibaba.blink/flink-optimizer

  throw new CompilerException("Bug: Tail of step function not found as vertex or chained task.");
rootOfStepFunctionVertex = taskInChain.getContainingVertex();
    throw new CompilerException("Bug: Tail of termination criterion not found as vertex or chained task.");
  rootOfTerminationCriterionVertex = taskInChain.getContainingVertex();
origin: org.apache.flink/flink-optimizer_2.11

  throw new CompilerException("Bug: Tail of step function not found as vertex or chained task.");
rootOfStepFunctionVertex = taskInChain.getContainingVertex();
    throw new CompilerException("Bug: Tail of termination criterion not found as vertex or chained task.");
  rootOfTerminationCriterionVertex = taskInChain.getContainingVertex();
origin: com.alibaba.blink/flink-optimizer

    throw new CompilerException("Bug: Next workset node not found as vertex or chained task.");
  nextWorksetVertex = taskInChain.getContainingVertex();
  worksetTailConfig = taskInChain.getTaskConfig();
} else {
    throw new CompilerException("Bug: Solution Set Delta not found as vertex or chained task.");
  solutionDeltaVertex = taskInChain.getContainingVertex();
  solutionDeltaConfig = taskInChain.getTaskConfig();
} else {
origin: org.apache.flink/flink-optimizer_2.11

PlanNode planNode = next.getPlanNode();
JobVertex vertex = next.getContainingVertex();
origin: org.apache.flink/flink-optimizer

PlanNode planNode = next.getPlanNode();
JobVertex vertex = next.getContainingVertex();
origin: org.apache.flink/flink-optimizer_2.10

  throw new CompilerException("Bug: Tail of step function not found as vertex or chained task.");
rootOfStepFunctionVertex = taskInChain.getContainingVertex();
    throw new CompilerException("Bug: Tail of termination criterion not found as vertex or chained task.");
  rootOfTerminationCriterionVertex = taskInChain.getContainingVertex();
origin: org.apache.flink/flink-optimizer_2.10

PlanNode planNode = next.getPlanNode();
JobVertex vertex = next.getContainingVertex();
origin: org.apache.flink/flink-optimizer_2.11

TaskConfig t = new TaskConfig(tic.getContainingVertex().getConfiguration());
t.addChainedTask(tic.getChainedTask(), tic.getTaskConfig(), tic.getTaskName());
origin: org.apache.flink/flink-optimizer

TaskConfig t = new TaskConfig(tic.getContainingVertex().getConfiguration());
t.addChainedTask(tic.getChainedTask(), tic.getTaskConfig(), tic.getTaskName());
origin: org.apache.flink/flink-optimizer

  throw new CompilerException("Bug: Tail of step function not found as vertex or chained task.");
rootOfStepFunctionVertex = taskInChain.getContainingVertex();
    throw new CompilerException("Bug: Tail of termination criterion not found as vertex or chained task.");
  rootOfTerminationCriterionVertex = taskInChain.getContainingVertex();
origin: com.alibaba.blink/flink-optimizer

TaskConfig t = new TaskConfig(tic.getContainingVertex().getConfiguration());
t.addChainedTask(tic.getChainedTask(), tic.getTaskConfig(), tic.getTaskName());
origin: com.alibaba.blink/flink-optimizer

PlanNode planNode = next.getPlanNode();
JobVertex vertex = next.getContainingVertex();
origin: org.apache.flink/flink-optimizer_2.10

TaskConfig t = new TaskConfig(tic.getContainingVertex().getConfiguration());
t.addChainedTask(tic.getChainedTask(), tic.getTaskConfig(), tic.getTaskName());
origin: apache/flink

    throw new CompilerException("Bug: Next workset node not found as vertex or chained task.");
  nextWorksetVertex = taskInChain.getContainingVertex();
  worksetTailConfig = taskInChain.getTaskConfig();
} else {
    throw new CompilerException("Bug: Solution Set Delta not found as vertex or chained task.");
  solutionDeltaVertex = taskInChain.getContainingVertex();
  solutionDeltaConfig = taskInChain.getTaskConfig();
} else {
origin: apache/flink

  throw new CompilerException("Bug: Tail of step function not found as vertex or chained task.");
rootOfStepFunctionVertex = taskInChain.getContainingVertex();
    throw new CompilerException("Bug: Tail of termination criterion not found as vertex or chained task.");
  rootOfTerminationCriterionVertex = taskInChain.getContainingVertex();
origin: apache/flink

PlanNode planNode = next.getPlanNode();
JobVertex vertex = next.getContainingVertex();
org.apache.flink.optimizer.plantranslateJobGraphGenerator$TaskInChaingetContainingVertex

Popular methods of JobGraphGenerator$TaskInChain

  • <init>
  • getChainedTask
  • getPlanNode
  • getTaskConfig
  • getTaskName
  • setContainingVertex

Popular in Java

  • Reading from database using SQL prepared statement
  • onRequestPermissionsResult (Fragment)
  • findViewById (Activity)
  • getApplicationContext (Context)
  • File (java.io)
    An "abstract" representation of a file system entity identified by a pathname. The pathname may be a
  • Permission (java.security)
    Legacy security code; do not use.
  • Hashtable (java.util)
    A plug-in replacement for JDK1.5 java.util.Hashtable. This version is based on org.cliffc.high_scale
  • List (java.util)
    An ordered collection (also known as a sequence). The user of this interface has precise control ove
  • Timer (java.util)
    Timers schedule one-shot or recurring TimerTask for execution. Prefer java.util.concurrent.Scheduled
  • CountDownLatch (java.util.concurrent)
    A synchronization aid that allows one or more threads to wait until a set of operations being perfor
  • Top 12 Jupyter Notebook extensions
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