[jira] [Updated] (HBASE-21460) correct Document Configurable Bucket Sizes in bucketCache

2018-11-15 Thread Ted Yu (JIRA)


 [ 
https://issues.apache.org/jira/browse/HBASE-21460?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Ted Yu updated HBASE-21460:
---
   Resolution: Fixed
 Hadoop Flags: Reviewed
Fix Version/s: 3.0.0
   Status: Resolved  (was: Patch Available)

Thanks for the patch, Yechao.

> correct Document Configurable Bucket Sizes in bucketCache
> -
>
> Key: HBASE-21460
> URL: https://issues.apache.org/jira/browse/HBASE-21460
> Project: HBase
>  Issue Type: Improvement
>  Components: documentation
>Reporter: Yechao Chen
>Assignee: Yechao Chen
>Priority: Major
> Fix For: 3.0.0
>
> Attachments: HBASE-21460.v1.patch, HBASE-21460.v2.patch
>
>
> we use the bucket cache(offheap),found the doc was error,
> the property bucket sizes shoul be "hbase.bucketcache.bucket.sizes"  instead 
> of "hfile.block.cache.sizes"
> CacheConfig.java
>  /**
>  * A comma-delimited array of values for use as bucket sizes.
>  */
>  public static final String BUCKET_CACHE_BUCKETS_KEY = 
> "hbase.bucketcache.bucket.sizes";
> the doc was:
> 
>  
>  HBASE-10641 introduced the ability to configure multiple sizes for the 
> buckets of the BucketCache, in HBase 0.98 and newer. To configurable multiple 
> bucket sizes, configure the new property 
> {color:#ff}{{hfile.block.cache.sizes}}{color} (instead of{color:#ff} 
> {{hfile.block.cache.size}}{color}) to a comma-separated list of block sizes, 
> ordered from smallest to largest, with no spaces. The goal is to optimize the 
> bucket sizes based on your data access patterns. The following example 
> configures buckets of size 4096 and 8192.
>   {color:#ff}hfile.block.cache.sizes{color} 
> 4096,8192 



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (HBASE-21460) correct Document Configurable Bucket Sizes in bucketCache

2018-11-15 Thread Yechao Chen (JIRA)


 [ 
https://issues.apache.org/jira/browse/HBASE-21460?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Yechao Chen updated HBASE-21460:

Attachment: HBASE-21460.v2.patch

> correct Document Configurable Bucket Sizes in bucketCache
> -
>
> Key: HBASE-21460
> URL: https://issues.apache.org/jira/browse/HBASE-21460
> Project: HBase
>  Issue Type: Improvement
>  Components: documentation
>Reporter: Yechao Chen
>Assignee: Yechao Chen
>Priority: Major
> Attachments: HBASE-21460.v1.patch, HBASE-21460.v2.patch
>
>
> we use the bucket cache(offheap),found the doc was error,
> the property bucket sizes shoul be "hbase.bucketcache.bucket.sizes"  instead 
> of "hfile.block.cache.sizes"
> CacheConfig.java
>  /**
>  * A comma-delimited array of values for use as bucket sizes.
>  */
>  public static final String BUCKET_CACHE_BUCKETS_KEY = 
> "hbase.bucketcache.bucket.sizes";
> the doc was:
> 
>  
>  HBASE-10641 introduced the ability to configure multiple sizes for the 
> buckets of the BucketCache, in HBase 0.98 and newer. To configurable multiple 
> bucket sizes, configure the new property 
> {color:#ff}{{hfile.block.cache.sizes}}{color} (instead of{color:#ff} 
> {{hfile.block.cache.size}}{color}) to a comma-separated list of block sizes, 
> ordered from smallest to largest, with no spaces. The goal is to optimize the 
> bucket sizes based on your data access patterns. The following example 
> configures buckets of size 4096 and 8192.
>   {color:#ff}hfile.block.cache.sizes{color} 
> 4096,8192 



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (HBASE-21460) correct Document Configurable Bucket Sizes in bucketCache

2018-11-09 Thread Yechao Chen (JIRA)


 [ 
https://issues.apache.org/jira/browse/HBASE-21460?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Yechao Chen updated HBASE-21460:

Description: 
we use the bucket cache(offheap),found the doc was error,

the property bucket sizes shoul be "hbase.bucketcache.bucket.sizes"  instead of 
"hfile.block.cache.sizes"

CacheConfig.java
 /**
 * A comma-delimited array of values for use as bucket sizes.
 */
 public static final String BUCKET_CACHE_BUCKETS_KEY = 
"hbase.bucketcache.bucket.sizes";

the doc was:

 
 HBASE-10641 introduced the ability to configure multiple sizes for the buckets 
of the BucketCache, in HBase 0.98 and newer. To configurable multiple bucket 
sizes, configure the new property 
{color:#ff}{{hfile.block.cache.sizes}}{color} (instead of{color:#ff} 
{{hfile.block.cache.size}}{color}) to a comma-separated list of block sizes, 
ordered from smallest to largest, with no spaces. The goal is to optimize the 
bucket sizes based on your data access patterns. The following example 
configures buckets of size 4096 and 8192.
  {color:#ff}hfile.block.cache.sizes{color} 
4096,8192 

  was:
we use the bucket cache(offheap),found the doc was error,

the property bucket,sizes shoul be hfile.block.cache.sizes instead of 
hfile.block.cache.sizes

CacheConfig.java
 /**
 * A comma-delimited array of values for use as bucket sizes.
 */
 public static final String BUCKET_CACHE_BUCKETS_KEY = 
"hbase.bucketcache.bucket.sizes";

the doc was:

 
HBASE-10641 introduced the ability to configure multiple sizes for the buckets 
of the BucketCache, in HBase 0.98 and newer. To configurable multiple bucket 
sizes, configure the new property 
{color:#FF}{{hfile.block.cache.sizes}}{color} (instead of{color:#FF} 
{{hfile.block.cache.size}}{color}) to a comma-separated list of block sizes, 
ordered from smallest to largest, with no spaces. The goal is to optimize the 
bucket sizes based on your data access patterns. The following example 
configures buckets of size 4096 and 8192.
 {color:#FF}hfile.block.cache.sizes{color} 
4096,8192 


> correct Document Configurable Bucket Sizes in bucketCache
> -
>
> Key: HBASE-21460
> URL: https://issues.apache.org/jira/browse/HBASE-21460
> Project: HBase
>  Issue Type: Improvement
>  Components: documentation
>Reporter: Yechao Chen
>Assignee: Yechao Chen
>Priority: Major
> Attachments: HBASE-21460.v1.patch
>
>
> we use the bucket cache(offheap),found the doc was error,
> the property bucket sizes shoul be "hbase.bucketcache.bucket.sizes"  instead 
> of "hfile.block.cache.sizes"
> CacheConfig.java
>  /**
>  * A comma-delimited array of values for use as bucket sizes.
>  */
>  public static final String BUCKET_CACHE_BUCKETS_KEY = 
> "hbase.bucketcache.bucket.sizes";
> the doc was:
> 
>  
>  HBASE-10641 introduced the ability to configure multiple sizes for the 
> buckets of the BucketCache, in HBase 0.98 and newer. To configurable multiple 
> bucket sizes, configure the new property 
> {color:#ff}{{hfile.block.cache.sizes}}{color} (instead of{color:#ff} 
> {{hfile.block.cache.size}}{color}) to a comma-separated list of block sizes, 
> ordered from smallest to largest, with no spaces. The goal is to optimize the 
> bucket sizes based on your data access patterns. The following example 
> configures buckets of size 4096 and 8192.
>   {color:#ff}hfile.block.cache.sizes{color} 
> 4096,8192 



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (HBASE-21460) correct Document Configurable Bucket Sizes in bucketCache

2018-11-09 Thread Yechao Chen (JIRA)


 [ 
https://issues.apache.org/jira/browse/HBASE-21460?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Yechao Chen updated HBASE-21460:

Component/s: documentation

> correct Document Configurable Bucket Sizes in bucketCache
> -
>
> Key: HBASE-21460
> URL: https://issues.apache.org/jira/browse/HBASE-21460
> Project: HBase
>  Issue Type: Improvement
>  Components: documentation
>Reporter: Yechao Chen
>Assignee: Yechao Chen
>Priority: Major
> Attachments: HBASE-21460.v1.patch
>
>
> we use the bucket cache(offheap),found the doc was error,
> the property bucket,sizes shoul be hfile.block.cache.sizes instead of 
> hfile.block.cache.sizes
> CacheConfig.java
>  /**
>  * A comma-delimited array of values for use as bucket sizes.
>  */
>  public static final String BUCKET_CACHE_BUCKETS_KEY = 
> "hbase.bucketcache.bucket.sizes";
> the doc was:
> 
>  
> HBASE-10641 introduced the ability to configure multiple sizes for the 
> buckets of the BucketCache, in HBase 0.98 and newer. To configurable multiple 
> bucket sizes, configure the new property 
> {color:#FF}{{hfile.block.cache.sizes}}{color} (instead of{color:#FF} 
> {{hfile.block.cache.size}}{color}) to a comma-separated list of block sizes, 
> ordered from smallest to largest, with no spaces. The goal is to optimize the 
> bucket sizes based on your data access patterns. The following example 
> configures buckets of size 4096 and 8192.
>  {color:#FF}hfile.block.cache.sizes{color} 
> 4096,8192 



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (HBASE-21460) correct Document Configurable Bucket Sizes in bucketCache

2018-11-09 Thread Yechao Chen (JIRA)


 [ 
https://issues.apache.org/jira/browse/HBASE-21460?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Yechao Chen updated HBASE-21460:

Attachment: HBASE-21460.v1.patch
Status: Patch Available  (was: Open)

> correct Document Configurable Bucket Sizes in bucketCache
> -
>
> Key: HBASE-21460
> URL: https://issues.apache.org/jira/browse/HBASE-21460
> Project: HBase
>  Issue Type: Improvement
>Reporter: Yechao Chen
>Assignee: Yechao Chen
>Priority: Major
> Attachments: HBASE-21460.v1.patch
>
>
> we use the bucket cache(offheap),found the doc was error,
> the property bucket,sizes shoul be hfile.block.cache.sizes instead of 
> hfile.block.cache.sizes
> CacheConfig.java
>  /**
>  * A comma-delimited array of values for use as bucket sizes.
>  */
>  public static final String BUCKET_CACHE_BUCKETS_KEY = 
> "hbase.bucketcache.bucket.sizes";
> the doc was:
> 
>  
> HBASE-10641 introduced the ability to configure multiple sizes for the 
> buckets of the BucketCache, in HBase 0.98 and newer. To configurable multiple 
> bucket sizes, configure the new property 
> {color:#FF}{{hfile.block.cache.sizes}}{color} (instead of{color:#FF} 
> {{hfile.block.cache.size}}{color}) to a comma-separated list of block sizes, 
> ordered from smallest to largest, with no spaces. The goal is to optimize the 
> bucket sizes based on your data access patterns. The following example 
> configures buckets of size 4096 and 8192.
>  {color:#FF}hfile.block.cache.sizes{color} 
> 4096,8192 



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)