Hi JM
I didn't see any new attributes after running the describe command:
hbase(main):004:0> describe "SPLIT_TEST_BIG"DESCRIPTION
{NAME => 'SPLIT_TEST_BIG', MAX_FILESIZE => '10737418240
0', FAMILIES => [{NAME => 'f1', DATA_BLOCK_ENCODING => 'NONE', BLOOMFILTER =>
'NONE', REPLICATION_SCOPE => '0' , VERSIONS => '3', COMPRESSION => 'NONE',
MIN_VERSIONS => '0', TTL => '2147483647', KEEP_DELETED_CELLS => 'fal se',
BLOCKSIZE => '65536', IN_MEMORY => 'false', ENCODE _ON_DISK => 'true',
BLOCKCACHE => 'true'}]}1 row(s) in 0.0510 seconds
So for now, i'm trying to compile the CDH4.4 HBase (add some of the debug
message), but got some errors during the mvn package process.... Do you happen
to use CDH4.4 and know how to compile it? ^__^
ThanksRamon
> Date: Tue, 5 Nov 2013 07:53:36 -0800
> Subject: Re: How to change split policy of a specific existing table(not
> global)?
> From: [email protected]
> To: [email protected]
>
> On Tue, Nov 5, 2013 at 6:04 AM, WangRamon <[email protected]> wrote:
>
> > Hi JM
> > Thanks for your help, yes, as you said the syntax is totally correct as it
> > can be executed in HBase Shell without any errors.
> > By checking the source code of class HRegion which initialise the region
> > policy from HTableDescriptor, not sure if that SPLIT_POLICY value can be
> > dynamically changed after a table(and its first child region) is created?
> >
> > > 1) If you look in the Web UI, do you see you new attribute set for this
> > > table?
> > I don't know there is a specific UI which i can view the new attributes
> > except the master-status UI, if that's the UI you are talking about, i can
> > only see the MAX_FILESIZE property is set correctly:{NAME =>
> > 'SPLIT_TEST_BIG', MAX_FILESIZE => '107374182400', FAMILIES => [{NAME =>
> > 'f1'}]}
> >
>
> What JMS said.
>
> Seems like you are looking at the right place in the UI.
>
> After altering the table, if you do
>
> hbase> describe "SPLIT_TEST_BIG"
>
> ... do you see the new attribute set?
>
> If not, the shell must be not setting this attribute properly (bug).
>
> St.Ack
>
>
>
>
>
> > > 2) How have you verified that it doesn't work? What do you have on the
> > logs?
> > I use YCSB to insert data into that table, and i did saw there are some
> > new regions created after i running the test for a while. And here is the
> > LOG i get from one of the region severs:
> > 2013-11-05 08:34:46,571 DEBUG
> > org.apache.hadoop.hbase.regionserver.IncreasingToUpperBoundRegionSplitPolicy:
> > ShouldSplit because f1 size=414926238, sizeToCheck=134217728,
> > regionsWithCommonTable=1
> > Any idea?
> > ThanksRamon
> >
> > > From: [email protected]
> > > Date: Tue, 5 Nov 2013 07:40:04 -0500
> > > Subject: Re: How to change split policy of a specific existing table(not
> > global)?
> > > To: [email protected]
> > >
> > > This seems to be correct.
> > >
> > > 2 questions.
> > >
> > > 1) If you look in the Web UI, do you see you new attribute set for this
> > > table?
> > > 2) How have you verified that it doesn't work? What do you have on the
> > logs?
> > >
> > > JM
> > >
> > >
> > > 2013/11/5 WangRamon <[email protected]>
> > >
> > > > Hi Folks
> > > > I'm trying to change the default split policy of an existing table in
> > > > HBase 0.94.6-cdh4.4.0. The way i think should work is by using HBase
> > Shell,
> > > > so i executed the following command in the SHELL:
> > > > disable 'SPLIT_TEST_BIG'alter 'SPLIT_TEST_BIG', {METHOD => 'table_att',
> > > > 'SPLIT_POLICY' =>
> > > >
> > 'org.apache.hadoop.hbase.regionserver.ConstantSizeRegionSplitPolicy'}alter
> > > > 'SPLIT_TEST_BIG', {METHOD => 'table_att', 'MAX_FILESIZE' =>
> > > > '107374182400'}enable 'SPLIT_TEST_BIG'
> > > >
> > > > But it doesn't work, only the 'MAX_FILESIZE' property get changed, the
> > > > table still uses the default split policy which is
> > > > 'IncreasingToUpperBoundRegionSplitPolicy', so can anyone tell me what
> > is
> > > > the correct way to do it, thanks!
> > > > CheersRamon
> >
> >