| Package | Description |
|---|---|
| org.apache.flink.table.planner.plan.nodes.exec |
| Modifier and Type | Class and Description |
|---|---|
static class |
ExecEdge.HashShuffle
Records are shuffled by hash when passing through this edge.
|
| Modifier and Type | Field and Description |
|---|---|
static ExecEdge.Shuffle |
ExecEdge.ANY_SHUFFLE
Any type of shuffle is OK when passing through this edge.
|
static ExecEdge.Shuffle |
ExecEdge.BROADCAST_SHUFFLE
Full records are provided for each parallelism of the target node.
|
static ExecEdge.Shuffle |
ExecEdge.FORWARD_SHUFFLE
Records are shuffled in same parallelism (function call).
|
static ExecEdge.Shuffle |
ExecEdge.SINGLETON_SHUFFLE
The parallelism of the target node must be 1.
|
| Modifier and Type | Method and Description |
|---|---|
ExecEdge.Shuffle |
ExecEdge.getShuffle() |
static ExecEdge.Shuffle |
ExecEdge.hashShuffle(int[] keys)
Return hash
ExecEdge.Shuffle. |
| Modifier and Type | Method and Description |
|---|---|
ExecEdge.Builder |
ExecEdge.Builder.shuffle(ExecEdge.Shuffle shuffle) |
| Constructor and Description |
|---|
ExecEdge(ExecNode<?> source,
ExecNode<?> target,
ExecEdge.Shuffle shuffle,
org.apache.flink.streaming.api.transformations.StreamExchangeMode exchangeMode) |
Copyright © 2014–2022 The Apache Software Foundation. All rights reserved.