@InterfaceAudience.Private public class HFileContextBuilder extends Object
Modifier and Type | Field and Description |
---|---|
private int |
blocksize
Number of uncompressed bytes we allow per block.
|
private int |
bytesPerChecksum
the number of bytes per checksum value
|
private ChecksumType |
checksumType
the checksum type
|
private Compression.Algorithm |
compression
Compression algorithm used
|
private boolean |
compressTags
Whether tags to be compressed or not
|
private Encryption.Context |
cryptoContext
Crypto context
|
static int |
DEFAULT_BYTES_PER_CHECKSUM |
private DataBlockEncoding |
encoding |
private long |
fileCreateTime |
private String |
hfileName |
private boolean |
includesMvcc
Whether mvcc is to be included in the Read/Write
|
private boolean |
includesTags
Whether tags are to be included in the Read/Write
|
private boolean |
usesHBaseChecksum
Whether checksum is enabled or not
|
Constructor and Description |
---|
HFileContextBuilder() |
HFileContextBuilder(HFileContext hfc)
Use this constructor if you want to change a few settings only in another context.
|
Modifier and Type | Method and Description |
---|---|
HFileContext |
build() |
HFileContextBuilder |
withBlockSize(int blockSize) |
HFileContextBuilder |
withBytesPerCheckSum(int bytesPerChecksum) |
HFileContextBuilder |
withChecksumType(ChecksumType checkSumType) |
HFileContextBuilder |
withCompression(Compression.Algorithm compression) |
HFileContextBuilder |
withCompressTags(boolean compressTags) |
HFileContextBuilder |
withCreateTime(long fileCreateTime) |
HFileContextBuilder |
withDataBlockEncoding(DataBlockEncoding encoding) |
HFileContextBuilder |
withEncryptionContext(Encryption.Context cryptoContext) |
HFileContextBuilder |
withHBaseCheckSum(boolean useHBaseCheckSum) |
HFileContextBuilder |
withHFileName(String name) |
HFileContextBuilder |
withIncludesMvcc(boolean includesMvcc) |
HFileContextBuilder |
withIncludesTags(boolean includesTags) |
public static final int DEFAULT_BYTES_PER_CHECKSUM
private boolean usesHBaseChecksum
private boolean includesMvcc
private boolean includesTags
private Compression.Algorithm compression
private boolean compressTags
private ChecksumType checksumType
private int bytesPerChecksum
private int blocksize
private DataBlockEncoding encoding
private Encryption.Context cryptoContext
private long fileCreateTime
public HFileContextBuilder()
public HFileContextBuilder(HFileContext hfc)
public HFileContextBuilder withHBaseCheckSum(boolean useHBaseCheckSum)
public HFileContextBuilder withIncludesMvcc(boolean includesMvcc)
public HFileContextBuilder withIncludesTags(boolean includesTags)
public HFileContextBuilder withCompression(Compression.Algorithm compression)
public HFileContextBuilder withCompressTags(boolean compressTags)
public HFileContextBuilder withChecksumType(ChecksumType checkSumType)
public HFileContextBuilder withBytesPerCheckSum(int bytesPerChecksum)
public HFileContextBuilder withBlockSize(int blockSize)
public HFileContextBuilder withDataBlockEncoding(DataBlockEncoding encoding)
public HFileContextBuilder withEncryptionContext(Encryption.Context cryptoContext)
public HFileContextBuilder withCreateTime(long fileCreateTime)
public HFileContextBuilder withHFileName(String name)
public HFileContext build()
Copyright © 2007–2020 The Apache Software Foundation. All rights reserved.