You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Dongjoon Hyun (JIRA)" <ji...@apache.org> on 2019/06/09 23:44:00 UTC

[jira] [Updated] (SPARK-25643) Performance issues querying wide rows

     [ https://issues.apache.org/jira/browse/SPARK-25643?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Dongjoon Hyun updated SPARK-25643:
----------------------------------
    Affects Version/s:     (was: 2.4.0)
                       3.0.0

> Performance issues querying wide rows
> -------------------------------------
>
>                 Key: SPARK-25643
>                 URL: https://issues.apache.org/jira/browse/SPARK-25643
>             Project: Spark
>          Issue Type: Improvement
>          Components: SQL
>    Affects Versions: 3.0.0
>            Reporter: Bruce Robbins
>            Priority: Major
>
> Querying a small subset of rows from a wide table (e.g., a table with 6000 columns) can be quite slow in the following case:
>  * the table has many rows (most of which will be filtered out)
>  * the projection includes every column of a wide table (i.e., select *)
>  * predicate push down is not helping: either matching rows are sprinkled fairly evenly throughout the table, or predicate push down is switched off
> Even if the filter involves only a single column and the returned result includes just a few rows, the query can run much longer compared to an equivalent query against a similar table with fewer columns.
> According to initial profiling, it appears that most time is spent realizing the entire row in the scan, just so the filter can look at a tiny subset of columns and almost certainly throw the row away. The profiling shows 74% of time is spent in FileSourceScanExec, and that time is spent across numerous writeFields_0_xxx method calls.
> If Spark must realize the entire row just to check a tiny subset of columns, this all sounds reasonable. However, I wonder if there is an optimization here where we can avoid realizing the entire row until after the filter has selected the row.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

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