You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@flink.apache.org by "Gary Yao (Jira)" <ji...@apache.org> on 2020/04/03 07:50:00 UTC

[jira] [Created] (FLINK-16960) Add PipelinedRegion Interface to Topology

Gary Yao created FLINK-16960:
--------------------------------

             Summary: Add PipelinedRegion Interface to Topology
                 Key: FLINK-16960
                 URL: https://issues.apache.org/jira/browse/FLINK-16960
             Project: Flink
          Issue Type: Sub-task
            Reporter: Gary Yao
            Assignee: Gary Yao


{code}
interface Topology {
...
  Iterable<PipelinedRegion> getAllPipelinedRegions();

  PipelinedRegion getPipelinedRegionOfVertex(VID vertexId);
...
}

interface PipelinedRegion {
  Iterable<V> getVertices();

  Iterable<V> getVertex(VID vertexId);

  Iterable<R> getConsumedResults();
}

{code}

 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)