final class GpuPackedTableColumn extends GpuColumnVectorBase with WithTableBuffer
A GPU column tracking a packed table such as one generated by contiguous split.
Unlike GpuColumnVectorFromBuffer, the columnar data cannot be accessed directly.
This class primarily serves the role of tracking the packed table data in a ColumnarBatch without requiring the underlying table to be manifested along with all of the child columns. The typical use-case generates one of these columns per task output partition, and then the RAPIDS shuffle transmits the opaque host metadata and GPU data buffer to another host.
NOTE: There should only be one instance of this column per ColumnarBatch as the
- Alphabetic
- By Inheritance
- GpuPackedTableColumn
- WithTableBuffer
- GpuColumnVectorBase
- ColumnVector
- AutoCloseable
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
def
close(): Unit
- Definition Classes
- GpuPackedTableColumn → ColumnVector → AutoCloseable
- Annotations
- @Override()
-
final
def
dataType(): DataType
- Definition Classes
- ColumnVector
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getArray(rowId: Int): ColumnarArray
- Definition Classes
- GpuColumnVectorBase → ColumnVector
- Annotations
- @Override()
-
final
def
getBinary(rowId: Int): Array[Byte]
- Definition Classes
- GpuColumnVectorBase → ColumnVector
- Annotations
- @Override()
-
final
def
getBoolean(rowId: Int): Boolean
- Definition Classes
- GpuColumnVectorBase → ColumnVector
- Annotations
- @Override()
-
def
getBooleans(arg0: Int, arg1: Int): Array[Boolean]
- Definition Classes
- ColumnVector
-
final
def
getByte(rowId: Int): Byte
- Definition Classes
- GpuColumnVectorBase → ColumnVector
- Annotations
- @Override()
-
def
getBytes(arg0: Int, arg1: Int): Array[Byte]
- Definition Classes
- ColumnVector
-
final
def
getChild(ordinal: Int): ColumnVector
- Definition Classes
- GpuColumnVectorBase → ColumnVector
- Annotations
- @Override()
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
getContiguousTable(): ContiguousTable
Returns the contiguous table underneath this column.
Returns the contiguous table underneath this column. NOTE: The contiguous table is still owned by this column instance, so the resulting contiguous table should NOT be closed by the caller.
-
final
def
getDecimal(rowId: Int, precision: Int, scale: Int): Decimal
- Definition Classes
- GpuColumnVectorBase → ColumnVector
- Annotations
- @Override()
-
final
def
getDouble(rowId: Int): Double
- Definition Classes
- GpuColumnVectorBase → ColumnVector
- Annotations
- @Override()
-
def
getDoubles(arg0: Int, arg1: Int): Array[Double]
- Definition Classes
- ColumnVector
-
final
def
getFloat(rowId: Int): Float
- Definition Classes
- GpuColumnVectorBase → ColumnVector
- Annotations
- @Override()
-
def
getFloats(arg0: Int, arg1: Int): Array[Float]
- Definition Classes
- ColumnVector
-
final
def
getInt(rowId: Int): Int
- Definition Classes
- GpuColumnVectorBase → ColumnVector
- Annotations
- @Override()
-
final
def
getInterval(arg0: Int): CalendarInterval
- Definition Classes
- ColumnVector
-
def
getInts(arg0: Int, arg1: Int): Array[Int]
- Definition Classes
- ColumnVector
-
final
def
getLong(rowId: Int): Long
- Definition Classes
- GpuColumnVectorBase → ColumnVector
- Annotations
- @Override()
-
def
getLongs(arg0: Int, arg1: Int): Array[Long]
- Definition Classes
- ColumnVector
-
final
def
getMap(ordinal: Int): ColumnarMap
- Definition Classes
- GpuColumnVectorBase → ColumnVector
- Annotations
- @Override()
-
final
def
getShort(rowId: Int): Short
- Definition Classes
- GpuColumnVectorBase → ColumnVector
- Annotations
- @Override()
-
def
getShorts(arg0: Int, arg1: Int): Array[Short]
- Definition Classes
- ColumnVector
-
final
def
getStruct(arg0: Int): ColumnarRow
- Definition Classes
- ColumnVector
-
def
getTableBuffer(): DeviceMemoryBuffer
- Definition Classes
- GpuPackedTableColumn → WithTableBuffer
- Annotations
- @Override()
-
final
def
getUTF8String(rowId: Int): UTF8String
- Definition Classes
- GpuColumnVectorBase → ColumnVector
- Annotations
- @Override()
-
def
hasNull(): Boolean
- Definition Classes
- GpuPackedTableColumn → ColumnVector
- Annotations
- @Override()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
isKnownFinalBatch(): Boolean
Is this the final batch or is it unknown.
Is this the final batch or is it unknown.
- returns
true if it is known to be a part of the final batch, else false if it is unknown
- Definition Classes
- GpuColumnVectorBase
-
final
def
isNullAt(rowId: Int): Boolean
- Definition Classes
- GpuColumnVectorBase → ColumnVector
- Annotations
- @Override()
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
def
numNulls(): Int
- Definition Classes
- GpuPackedTableColumn → ColumnVector
- Annotations
- @Override()
-
final
def
setFinalBatch(isFinal: Boolean): Unit
Set if this is a part of the final batch for this partition or not.
Set if this is a part of the final batch for this partition or not.
- isFinal
true if this is part of the final batch or false if unknown.
- Definition Classes
- GpuColumnVectorBase
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()