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/02/10 00:57:18 UTC

[jira] [Commented] (SPARK-13255) Integrate vectorized parquet scan with whole stage codegen.

    [ https://issues.apache.org/jira/browse/SPARK-13255?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15140029#comment-15140029 ] 

Apache Spark commented on SPARK-13255:
--------------------------------------

User 'nongli' has created a pull request for this issue:
https://github.com/apache/spark/pull/11146

> Integrate vectorized parquet scan with whole stage codegen.
> -----------------------------------------------------------
>
>                 Key: SPARK-13255
>                 URL: https://issues.apache.org/jira/browse/SPARK-13255
>             Project: Spark
>          Issue Type: Task
>          Components: SQL
>            Reporter: Nong Li
>
> The generated whole stage codegen is intended to be run over batches of rows. This task is to integrate ColumnarBatches with whole stage codegen.
> The resulting generated code should look something like:
> {code}
> Iterator<ColumnarBatch> input;
> void process() {
>   while (input.hasNext()) {
>     ColumnarBatch batch = input.next();
>     for (Row: batch) {
>       // Current function
>     }
>   }
> }
> {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