You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Apache Spark (JIRA)" <ji...@apache.org> on 2016/06/26 04:08:37 UTC

[jira] [Assigned] (SPARK-16213) Reduce runtime overhead of a program that creates an primitive array in DataFrame

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

Apache Spark reassigned SPARK-16213:
------------------------------------

    Assignee: Apache Spark

> Reduce runtime overhead of a program that creates an primitive array in DataFrame
> ---------------------------------------------------------------------------------
>
>                 Key: SPARK-16213
>                 URL: https://issues.apache.org/jira/browse/SPARK-16213
>             Project: Spark
>          Issue Type: Improvement
>          Components: SQL
>            Reporter: Kazuaki Ishizaki
>            Assignee: Apache Spark
>
> Reduce runtime overhead of a program that creates an primitive array in DataFrame
> When a program creates an array in DataFrame, the code generator creates boxing operations. If an array is for primitive type, there are some opportunities for optimizations in generated code to reduce runtime overhead.
> Here is a simple example that has generated code with boxing operation
> {code}
> val df = sparkContext.parallelize(Seq(0.0d, 1.0d), 1).toDF
> df.selectExpr("Array(value + 1.1d, value + 2.2d)").show
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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