Package org.apache.drill.exec.store.parquet

Examples of org.apache.drill.exec.store.parquet.ParquetDirectByteBufferAllocator


                                                                       CompressionCodecName codec,
                                                                       int pageSize,
                                                                       MessageType schema,
                                                                       int initialSize) {
    BytesCompressor compressor = new CodecFactory(new Configuration()).getCompressor(codec, pageSize);
    return new ColumnChunkPageWriteStore(compressor, schema, initialSize, new ParquetDirectByteBufferAllocator(oContext));
  }
View Full Code Here


                                                                       CompressionCodecName codec,
                                                                       int pageSize,
                                                                       MessageType schema,
                                                                       int initialSize) {
    BytesCompressor compressor = new CodecFactory(new Configuration()).getCompressor(codec, pageSize);
    return new ColumnChunkPageWriteStore(compressor, schema, initialSize, new ParquetDirectByteBufferAllocator(oContext));
  }
View Full Code Here

TOP

Related Classes of org.apache.drill.exec.store.parquet.ParquetDirectByteBufferAllocator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.