Github user BryanCutler commented on a diff in the pull request:

    https://github.com/apache/spark/pull/15821#discussion_r123122759
  
    --- Diff: 
sql/core/src/main/scala/org/apache/spark/sql/execution/arrow/ArrowConverters.scala
 ---
    @@ -0,0 +1,429 @@
    +/*
    +* Licensed to the Apache Software Foundation (ASF) under one or more
    +* contributor license agreements.  See the NOTICE file distributed with
    +* this work for additional information regarding copyright ownership.
    +* The ASF licenses this file to You under the Apache License, Version 2.0
    +* (the "License"); you may not use this file except in compliance with
    +* the License.  You may obtain a copy of the License at
    +*
    +*    http://www.apache.org/licenses/LICENSE-2.0
    +*
    +* Unless required by applicable law or agreed to in writing, software
    +* distributed under the License is distributed on an "AS IS" BASIS,
    +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +* See the License for the specific language governing permissions and
    +* limitations under the License.
    +*/
    +
    +package org.apache.spark.sql.execution.arrow
    +
    +import java.io.ByteArrayOutputStream
    +import java.nio.channels.Channels
    +
    +import scala.collection.JavaConverters._
    +
    +import io.netty.buffer.ArrowBuf
    +import org.apache.arrow.memory.{BufferAllocator, RootAllocator}
    +import org.apache.arrow.vector._
    +import org.apache.arrow.vector.BaseValueVector.BaseMutator
    +import org.apache.arrow.vector.file._
    +import org.apache.arrow.vector.schema.{ArrowFieldNode, ArrowRecordBatch}
    +import org.apache.arrow.vector.types.FloatingPointPrecision
    +import org.apache.arrow.vector.types.pojo.{ArrowType, Field, FieldType, 
Schema}
    +import org.apache.arrow.vector.util.ByteArrayReadableSeekableByteChannel
    +
    +import org.apache.spark.sql.catalyst.InternalRow
    +import org.apache.spark.sql.types._
    +import org.apache.spark.util.Utils
    +
    +
    +/**
    + * Store Arrow data in a form that can be serialized by Spark and served 
to a Python process.
    + */
    +private[sql] class ArrowPayload private[arrow] (payload: Array[Byte]) 
extends Serializable {
    +
    +  /**
    +   * Convert the ArrowPayload to an ArrowRecordBatch.
    +   */
    +  def loadBatch(allocator: BufferAllocator): ArrowRecordBatch = {
    +    ArrowConverters.byteArrayToBatch(payload, allocator)
    +  }
    +
    +  /**
    +   * Get the ArrowPayload as a type that can be served to Python.
    +   */
    +  def asPythonSerializable: Array[Byte] = payload
    +}
    +
    +private[sql] object ArrowPayload {
    +
    +  /**
    +   * Create an ArrowPayload from an ArrowRecordBatch and Spark schema.
    +   */
    +  def apply(
    +      batch: ArrowRecordBatch,
    +      schema: StructType,
    +      allocator: BufferAllocator): ArrowPayload = {
    +    new ArrowPayload(ArrowConverters.batchToByteArray(batch, schema, 
allocator))
    +  }
    +}
    +
    +private[sql] object ArrowConverters {
    +
    +  /**
    +   * Map a Spark DataType to ArrowType.
    +   */
    +  private[arrow] def sparkTypeToArrowType(dataType: DataType): ArrowType = 
{
    +    dataType match {
    --- End diff --
    
    I was working on it but things were getting a little messy because of 
differences with time-zone usage in Spark (there have been some recent 
discussions on the mailing list about it).  So after discussing with @holdenk , 
we thought it would be best to keep this PR simple with support for primitive 
types and work on timestamps on a followup.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to