DataFrame.SortWithinPartitions Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
SortWithinPartitions(Column[]) |
Returns a new |
SortWithinPartitions(String, String[]) |
Returns a new |
SortWithinPartitions(Column[])
Returns a new DataFrame
with each partition sorted by the given expressions.
public Microsoft.Spark.Sql.DataFrame SortWithinPartitions (params Microsoft.Spark.Sql.Column[] columns);
member this.SortWithinPartitions : Microsoft.Spark.Sql.Column[] -> Microsoft.Spark.Sql.DataFrame
Public Function SortWithinPartitions (ParamArray columns As Column()) As DataFrame
Parameters
- columns
- Column[]
Column expressions to sort by
Returns
DataFrame object
Remarks
This is the same operation as "SORT BY" in SQL (Hive QL).
Applies to
SortWithinPartitions(String, String[])
Returns a new DataFrame
with each partition sorted by the given expressions.
public Microsoft.Spark.Sql.DataFrame SortWithinPartitions (string column, params string[] columns);
member this.SortWithinPartitions : string * string[] -> Microsoft.Spark.Sql.DataFrame
Public Function SortWithinPartitions (column As String, ParamArray columns As String()) As DataFrame
Parameters
- column
- String
Column name to sort by
- columns
- String[]
Additional column names to sort by
Returns
DataFrame object
Remarks
This is the same operation as "SORT BY" in SQL (Hive QL).