| Modifier and Type | Method and Description |
|---|---|
PartitionedTable |
hashPartition(int numberOfPartitions)
Hash partition a table into the specified number of partitions.
|
Table |
innerJoin(Table.TableOperation rightJoinIndices)
Joins two tables on the join columns that are passed in.
|
Table |
leftAntiJoin(Table.TableOperation rightJoinIndices)
Performs an anti-join between a left table and a right table, returning only the rows from
the left table that do not match rows in the right table on the join keys.
|
Table |
leftJoin(Table.TableOperation rightJoinIndices)
Joins two tables on the join columns that are passed in.
|
Table |
leftSemiJoin(Table.TableOperation rightJoinIndices)
Performs a semi-join between a left table and a right table, returning only the rows from
the left table that match rows in the right table on the join keys.
|
PartitionedTable |
partition(int numberOfPartitions)
Deprecated.
|
public Table leftJoin(Table.TableOperation rightJoinIndices)
rightJoinIndices - - Indices of the right table to join onpublic Table innerJoin(Table.TableOperation rightJoinIndices)
rightJoinIndices - - Indices of the right table to join onpublic Table leftSemiJoin(Table.TableOperation rightJoinIndices)
rightJoinIndices - - Indices of the right table to join onpublic Table leftAntiJoin(Table.TableOperation rightJoinIndices)
rightJoinIndices - - Indices of the right table to join onpublic PartitionedTable hashPartition(int numberOfPartitions)
numberOfPartitions - - number of partitions to usePartitionedTable - Table that exposes a limited functionality of the
Table class@Deprecated public PartitionedTable partition(int numberOfPartitions)
hashPartition(int)numberOfPartitions - - number of partitions to usePartitionedTable - Table that exposes a limited functionality of the
Table classCopyright © 2020. All rights reserved.