Uses of Class
org.apache.druid.frame.allocation.AppendableMemory
-
Packages that use AppendableMemory Package Description org.apache.druid.frame.allocation org.apache.druid.frame.write org.apache.druid.frame.write.columnar -
-
Uses of AppendableMemory in org.apache.druid.frame.allocation
Methods in org.apache.druid.frame.allocation that return AppendableMemory Modifier and Type Method Description static AppendableMemoryAppendableMemory. create(MemoryAllocator allocator)Creates an appendable memory instance with a default initial allocation size.static AppendableMemoryAppendableMemory. create(MemoryAllocator allocator, int initialAllocationSize)Creates an appendable memory instance using a particular initial allocation size. -
Uses of AppendableMemory in org.apache.druid.frame.write
Constructors in org.apache.druid.frame.write with parameters of type AppendableMemory Constructor Description RowBasedFrameWriter(RowSignature signature, List<KeyColumn> sortColumns, List<FieldWriter> fieldWriters, Supplier<MemoryRange<org.apache.datasketches.memory.Memory>> rowMemorySupplier, AppendableMemory rowOrderMemory, AppendableMemory rowOffsetMemory, AppendableMemory dataMemory) -
Uses of AppendableMemory in org.apache.druid.frame.write.columnar
Constructors in org.apache.druid.frame.write.columnar with parameters of type AppendableMemory Constructor Description ColumnarFrameWriter(RowSignature signature, List<KeyColumn> keyColumns, AppendableMemory rowOrderMemory, List<FrameColumnWriter> columnWriters)
-