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

    https://github.com/apache/spark/pull/15821#discussion_r122273848
  
    --- Diff: 
sql/core/src/main/scala/org/apache/spark/sql/execution/arrow/ArrowConverters.scala
 ---
    @@ -0,0 +1,423 @@
    +/*
    +* 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.
    + */
    +private[sql] class ArrowPayload(payload: Array[Byte]) extends Serializable 
{
    +
    +  /**
    +   * Create an ArrowPayload from an ArrowRecordBatch and Spark schema.
    +   */
    +  def this(batch: ArrowRecordBatch, schema: StructType, allocator: 
BufferAllocator) = {
    +    this(ArrowConverters.batchToByteArray(batch, schema, allocator))
    +  }
    +
    +  /**
    +   * Convert the ArrowPayload to an ArrowRecordBatch.
    +   */
    +  def loadBatch(allocator: BufferAllocator): ArrowRecordBatch = {
    +    ArrowConverters.byteArrayToBatch(payload, allocator)
    +  }
    +
    +  /**
    +   * Get the ArrowPayload as an Array[Byte].
    +   */
    +  def toByteArray: Array[Byte] = payload
    +}
    +
    +private[sql] object ArrowConverters {
    +
    +  /**
    +   * Map a Spark DataType to ArrowType.
    +   */
    +  private[arrow] def sparkTypeToArrowType(dataType: DataType): ArrowType = 
{
    +    dataType match {
    +      case BooleanType => ArrowType.Bool.INSTANCE
    +      case ShortType => new ArrowType.Int(8 * ShortType.defaultSize, true)
    +      case IntegerType => new ArrowType.Int(8 * IntegerType.defaultSize, 
true)
    +      case LongType => new ArrowType.Int(8 * LongType.defaultSize, true)
    +      case FloatType => new 
ArrowType.FloatingPoint(FloatingPointPrecision.SINGLE)
    +      case DoubleType => new 
ArrowType.FloatingPoint(FloatingPointPrecision.DOUBLE)
    +      case ByteType => new ArrowType.Int(8, true)
    +      case StringType => ArrowType.Utf8.INSTANCE
    +      case BinaryType => ArrowType.Binary.INSTANCE
    +      case _ => throw new UnsupportedOperationException(s"Unsupported data 
type: $dataType")
    +    }
    +  }
    +
    +  /**
    +   * Convert a Spark Dataset schema to Arrow schema.
    +   */
    +  private[arrow] def schemaToArrowSchema(schema: StructType): Schema = {
    +    val arrowFields = schema.fields.map { f =>
    +      new Field(f.name, f.nullable, sparkTypeToArrowType(f.dataType), 
List.empty[Field].asJava)
    +    }
    +    new Schema(arrowFields.toList.asJava)
    +  }
    +
    +  /**
    +   * Maps Iterator from InternalRow to ArrowPayload. Limit 
ArrowRecordBatch size in ArrowPayload
    +   * by setting maxRecordsPerBatch or use 0 to fully consume rowIter.
    +   */
    +  private[sql] def toPayloadIterator(
    +      rowIter: Iterator[InternalRow],
    +      schema: StructType,
    +      maxRecordsPerBatch: Int): Iterator[ArrowPayload] = {
    +    new Iterator[ArrowPayload] {
    +      private val _allocator = new RootAllocator(Long.MaxValue)
    +      private var _nextPayload = if (rowIter.nonEmpty) convert() else null
    +
    +      override def hasNext: Boolean = _nextPayload != null
    +
    +      override def next(): ArrowPayload = {
    +        val obj = _nextPayload
    +        if (hasNext) {
    +          if (rowIter.hasNext) {
    +            _nextPayload = convert()
    +          } else {
    +            _allocator.close()
    +            _nextPayload = null
    +          }
    +        }
    +        obj
    +      }
    +
    +      private def convert(): ArrowPayload = {
    +        val batch = internalRowIterToArrowBatch(rowIter, schema, 
_allocator, maxRecordsPerBatch)
    +        new ArrowPayload(batch, schema, _allocator)
    +      }
    +    }
    +  }
    +
    +  /**
    +   * Iterate over InternalRows and write to an ArrowRecordBatch, stopping 
when rowIter is consumed
    +   * or the number of records in the batch equals maxRecordsInBatch.  If 
maxRecordsPerBatch is 0,
    +   * then rowIter will be fully consumed.
    +   */
    +  private def internalRowIterToArrowBatch(
    +      rowIter: Iterator[InternalRow],
    +      schema: StructType,
    +      allocator: BufferAllocator,
    +      maxRecordsPerBatch: Int = 0): ArrowRecordBatch = {
    +
    +    val columnWriters = schema.fields.zipWithIndex.map { case (field, 
ordinal) =>
    +      ColumnWriter(field.dataType, ordinal, allocator).init()
    +    }
    +
    +    val writerLength = columnWriters.length
    +    var recordsInBatch = 0
    +    while (rowIter.hasNext && (maxRecordsPerBatch <= 0 || recordsInBatch < 
maxRecordsPerBatch)) {
    +      val row = rowIter.next()
    +      var i = 0
    +      while (i < writerLength) {
    +        columnWriters(i).write(row)
    +        i += 1
    +      }
    +      recordsInBatch += 1
    +    }
    +
    +    val (fieldNodes, bufferArrays) = columnWriters.map(_.finish()).unzip
    +    val buffers = bufferArrays.flatten
    +
    +    val rowLength = if (fieldNodes.nonEmpty) fieldNodes.head.getLength 
else 0
    +    val recordBatch = new ArrowRecordBatch(rowLength,
    +      fieldNodes.toList.asJava, buffers.toList.asJava)
    +
    +    buffers.foreach(_.release())
    +    recordBatch
    +  }
    +
    +  /**
    +   * Convert an ArrowRecordBatch to a byte array and close batch to 
release resources. Once closed,
    +   * the batch can no longer be used.
    +   */
    +  private[arrow] def batchToByteArray(
    +      batch: ArrowRecordBatch,
    +      schema: StructType,
    +      allocator: BufferAllocator): Array[Byte] = {
    +    val arrowSchema = ArrowConverters.schemaToArrowSchema(schema)
    +    val root = VectorSchemaRoot.create(arrowSchema, allocator)
    +    val out = new ByteArrayOutputStream()
    +    val writer = new ArrowFileWriter(root, null, Channels.newChannel(out))
    +
    +    // Write a batch to byte stream, ensure the batch, allocator and 
writer are closed
    +    Utils.tryWithSafeFinally {
    +      val loader = new VectorLoader(root)
    +      loader.load(batch)
    +      writer.writeBatch()  // writeBatch can throw IOException
    +    } {
    +      batch.close()
    +      root.close()
    +      writer.close()
    +    }
    +    out.toByteArray
    +  }
    +
    +  /**
    +   * Convert a byte array to an ArrowRecordBatch.
    +   */
    +  private[arrow] def byteArrayToBatch(
    +      batchBytes: Array[Byte],
    +      allocator: BufferAllocator): ArrowRecordBatch = {
    +    val in = new ByteArrayReadableSeekableByteChannel(batchBytes)
    +    val reader = new ArrowFileReader(in, allocator)
    +
    +    // Read a batch from a byte stream, ensure the reader is closed
    +    Utils.tryWithSafeFinally {
    +      val root = reader.getVectorSchemaRoot  // throws IOException
    +      val unloader = new VectorUnloader(root)
    +      reader.loadNextBatch()  // throws IOException
    +      unloader.getRecordBatch
    +    } {
    +      reader.close()
    +    }
    +  }
    +}
    +
    +/**
    + * Interface for writing InternalRows to Arrow Buffers.
    + */
    +private[arrow] trait ColumnWriter {
    +  def init(): this.type
    +  def write(row: InternalRow): Unit
    +
    +  /**
    +   * Clear the column writer and return the ArrowFieldNode and ArrowBuf.
    +   * This should be called only once after all the data is written.
    +   */
    +  def finish(): (ArrowFieldNode, Array[ArrowBuf])
    +}
    +
    +/**
    + * Base class for flat arrow column writer, i.e., column without children.
    + */
    +private[arrow] abstract class PrimitiveColumnWriter(val ordinal: Int)
    +  extends ColumnWriter {
    +
    +  def getFieldType(dtype: ArrowType): FieldType = FieldType.nullable(dtype)
    +
    +  def valueVector: BaseDataValueVector
    +  def valueMutator: BaseMutator
    +
    +  def setNull(): Unit
    +  def setValue(row: InternalRow): Unit
    +
    +  protected var count = 0
    +  protected var nullCount = 0
    +
    +  override def init(): this.type = {
    +    valueVector.allocateNew()
    +    this
    +  }
    +
    +  override def write(row: InternalRow): Unit = {
    +    if (row.isNullAt(ordinal)) {
    +      setNull()
    +      nullCount += 1
    +    } else {
    +      setValue(row)
    +    }
    +    count += 1
    +  }
    +
    +  override def finish(): (ArrowFieldNode, Array[ArrowBuf]) = {
    +    valueMutator.setValueCount(count)
    +    val fieldNode = new ArrowFieldNode(count, nullCount)
    +    val valueBuffers = valueVector.getBuffers(true)
    +    (fieldNode, valueBuffers)
    +  }
    +}
    +
    +private[arrow] class BooleanColumnWriter(dtype: ArrowType, ordinal: Int, 
allocator: BufferAllocator)
    +  extends PrimitiveColumnWriter(ordinal) {
    +  override val valueVector: NullableBitVector
    +    = new NullableBitVector("BooleanValue", getFieldType(dtype), allocator)
    +  override val valueMutator: NullableBitVector#Mutator = 
valueVector.getMutator
    +
    +  override def setNull(): Unit = valueMutator.setNull(count)
    +  override def setValue(row: InternalRow): Unit
    +    = valueMutator.setSafe(count, if (row.getBoolean(ordinal)) 1 else 0 )
    +}
    +
    +private[arrow] class ShortColumnWriter(dtype: ArrowType, ordinal: Int, 
allocator: BufferAllocator)
    +  extends PrimitiveColumnWriter(ordinal) {
    +  override val valueVector: NullableSmallIntVector
    +    = new NullableSmallIntVector("ShortValue", getFieldType(dtype: 
ArrowType), allocator)
    +  override val valueMutator: NullableSmallIntVector#Mutator = 
valueVector.getMutator
    +
    +  override def setNull(): Unit = valueMutator.setNull(count)
    +  override def setValue(row: InternalRow): Unit
    +    = valueMutator.setSafe(count, row.getShort(ordinal))
    +}
    +
    +private[arrow] class IntegerColumnWriter(dtype: ArrowType, ordinal: Int, 
allocator: BufferAllocator)
    +  extends PrimitiveColumnWriter(ordinal) {
    +  override val valueVector: NullableIntVector
    +    = new NullableIntVector("IntValue", getFieldType(dtype), allocator)
    +  override val valueMutator: NullableIntVector#Mutator = 
valueVector.getMutator
    +
    +  override def setNull(): Unit = valueMutator.setNull(count)
    +  override def setValue(row: InternalRow): Unit
    +    = valueMutator.setSafe(count, row.getInt(ordinal))
    +}
    +
    +private[arrow] class LongColumnWriter(dtype: ArrowType, ordinal: Int, 
allocator: BufferAllocator)
    +  extends PrimitiveColumnWriter(ordinal) {
    +  override val valueVector: NullableBigIntVector
    +    = new NullableBigIntVector("LongValue", getFieldType(dtype), allocator)
    +  override val valueMutator: NullableBigIntVector#Mutator = 
valueVector.getMutator
    +
    +  override def setNull(): Unit = valueMutator.setNull(count)
    +  override def setValue(row: InternalRow): Unit
    +    = valueMutator.setSafe(count, row.getLong(ordinal))
    +}
    +
    +private[arrow] class FloatColumnWriter(dtype: ArrowType, ordinal: Int, 
allocator: BufferAllocator)
    +  extends PrimitiveColumnWriter(ordinal) {
    +  override val valueVector: NullableFloat4Vector
    +    = new NullableFloat4Vector("FloatValue", getFieldType(dtype), 
allocator)
    +  override val valueMutator: NullableFloat4Vector#Mutator = 
valueVector.getMutator
    +
    +  override def setNull(): Unit = valueMutator.setNull(count)
    +  override def setValue(row: InternalRow): Unit
    +    = valueMutator.setSafe(count, row.getFloat(ordinal))
    +}
    +
    +private[arrow] class DoubleColumnWriter(dtype: ArrowType, ordinal: Int, 
allocator: BufferAllocator)
    +  extends PrimitiveColumnWriter(ordinal) {
    +  override val valueVector: NullableFloat8Vector
    +    = new NullableFloat8Vector("DoubleValue", getFieldType(dtype), 
allocator)
    +  override val valueMutator: NullableFloat8Vector#Mutator = 
valueVector.getMutator
    +
    +  override def setNull(): Unit = valueMutator.setNull(count)
    +  override def setValue(row: InternalRow): Unit
    +    = valueMutator.setSafe(count, row.getDouble(ordinal))
    +}
    +
    +private[arrow] class ByteColumnWriter(dtype: ArrowType, ordinal: Int, 
allocator: BufferAllocator)
    +  extends PrimitiveColumnWriter(ordinal) {
    +  override val valueVector: NullableUInt1Vector
    --- End diff --
    
    Both are stored internally in Arrow with 1 byte and both are equivalent to 
a Java `byte`, the only difference is that `TinyInt` is marked as signed.  I 
think `UInt1` is slightly better since the name also contains the size.


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to