You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Enrico Minack (Jira)" <ji...@apache.org> on 2022/10/18 07:44:00 UTC

[jira] [Created] (SPARK-40830) Dataset.groupBy.as should be preferred over Dataset.groupByKey

Enrico Minack created SPARK-40830:
-------------------------------------

             Summary: Dataset.groupBy.as should be preferred over Dataset.groupByKey
                 Key: SPARK-40830
                 URL: https://issues.apache.org/jira/browse/SPARK-40830
             Project: Spark
          Issue Type: Improvement
          Components: Documentation, SQL
    Affects Versions: 3.4.0
            Reporter: Enrico Minack


Calling {{Dataset.groupBy(...).as[K, T]}} should be preferred over calling {{Dataset.groupByKey(...)}} whenever possible. The former allows Catalyst to exploit existing partitioning and ordering of the Dataset, while the latter hides the columns used to create the keys from Catalyst.

Example:

Calling {{ds.groupByKey(_.id)}} hides from Catalyst that column id is the grouping key.
With {{ds.groupBy($"id").as[Int, V]}} tells Catalyst that {{ds}} is to be grouped by (partitioned and ordered by) column "id".

This fact should be documented. Further, {{groupByKey}} methods with {{Column}} and {{String}} arguments would help to short cut {{groupByKey.as}} and avoid the {{groupBy(func)}} methods.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@spark.apache.org
For additional commands, e-mail: issues-help@spark.apache.org