HBASE-15351 Fix description of hbase.bucketcache.size in hbase-default.xml
This commit is contained in:
parent
3c660e2a0f
commit
8f6e29785a
|
@ -870,16 +870,22 @@ possible configurations would overwhelm and obscure the important.
|
|||
</property>
|
||||
<property>
|
||||
<name>hbase.bucketcache.size</name>
|
||||
<value>65536</value>
|
||||
<description>The size of the buckets for the bucketcache if you only use a single size.
|
||||
Defaults to the default blocksize, which is 64 * 1024.</description>
|
||||
<value></value>
|
||||
<description>A float that EITHER represents a percentage of total heap memory
|
||||
size to give to the cache (if < 1.0) OR, it is the total capacity in
|
||||
megabytes of BucketCache. Default: 0.0</description>
|
||||
</property>
|
||||
<property>
|
||||
<name>hbase.bucketcache.sizes</name>
|
||||
<value></value>
|
||||
<description>A comma-separated list of sizes for buckets for the bucketcache
|
||||
if you use multiple sizes. Should be a list of block sizes in order from smallest
|
||||
to largest. The sizes you use will depend on your data access patterns.</description>
|
||||
<description>A comma-separated list of sizes for buckets for the bucketcache.
|
||||
Can be multiple sizes. List block sizes in order from smallest to largest.
|
||||
The sizes you use will depend on your data access patterns.
|
||||
Must be a multiple of 1024 else you will run into
|
||||
'java.io.IOException: Invalid HFile block magic' when you go to read from cache.
|
||||
If you specify no values here, then you pick up the default bucketsizes set
|
||||
in code (See BucketAllocator#DEFAULT_BUCKET_SIZES).
|
||||
</description>
|
||||
</property>
|
||||
<property>
|
||||
<name>hfile.format.version</name>
|
||||
|
|
Loading…
Reference in New Issue