Created on
08-30-2018
12:34 PM
- last edited on
07-12-2021
05:25 AM
by
cjervis
How to check what is the value of phoenix.stats.guidepost.width parameter for hbase table ?
Created 08-30-2018 01:54 PM
@Piyush Chauhan AFAIK this is a global setting that you can configure at region server level. Or also at table level in the CONFIGURATION section. Is the CONFIGURATION section not being displayed when you describe the table? Please share the output of the describe table and your regionserver configuration.
Created 07-12-2021 12:39 AM
@piyushgauri you can try executing below query for identifying the guide_post value
select count(1) from system.stats where guide_post_key is not null and PHYSICAL_NAME='table_name';
Created 05-26-2022 12:35 AM
@piyushgauri select count(1) from system.stats where PHYSICAL_NAME='tablename' and GUIDE_POSTS_WIDTH is not null;