Re: [ANNOUNCE] New HBase committer Mike Drob

2017-08-03 Thread Phil Yang
Congratulations! Thanks, Phil 2017-08-04 9:36 GMT+08:00 Guanghao Zhang : > Congratulations! > > 2017-08-04 5:34 GMT+08:00 Ted Yu : > > > Congratulations, Mike. > > > > (Just got access to gmail). > > > > On Tue, Aug 1, 2017 at 8:38 AM, Josh Elser

Re: [ANNOUNCE] New HBase committer Abhishek Singh Chouhan

2017-08-01 Thread Phil Yang
Congratulations! Thanks, Phil 2017-08-01 3:33 GMT+08:00 Jerry He : > Congrats Abhishek! > > > Jerry > > On Mon, Jul 31, 2017 at 1:41 AM, Anoop John wrote: > > Congrats Abhishek > > > > On Mon, Jul 31, 2017 at 1:48 PM, Yu Li wrote:

Re: [ANNOUNCE] Asynchronous client is available in HBase 2.0

2017-07-21 Thread Phil Yang
I filed an issue HBASE-18334 to remove the old sync implementation. I think we can do it in 3.0 and keep sync logic in branch-2? Of course we can also remove it in 2.1 or higher 2.x branch but if we remove it since 2.0 it may be a little radical

Re: [ANNOUNCE] Chunhui Shen joins the Apache HBase PMC

2017-07-05 Thread Phil Yang
Congratulations! Thanks, Phil 2017-07-05 13:05 GMT+08:00 ramkrishna vasudevan < ramkrishna.s.vasude...@gmail.com>: > Congratulations !!! > > On Wed, Jul 5, 2017 at 10:33 AM, QI Congyun cn > > wrote: > > > Congratulations, Chunhui. > > > > -Original

Re: HBaseCon Update (CfP closes Monday)

2017-06-22 Thread Phil Yang
Hi Stack It seems there are only 21 slides here but we have 24 talks totally? Thanks, Phil 2017-06-21 3:45 GMT+08:00 Stack : > Slides from last weeks hbasecon2017 are up and available here: > https://www.slideshare.net/search/slideshow?searchfrom= > header=hbasecon2017 > >

Re: [ANNOUNCE] New HBase committer Huaxiang Sun

2017-06-19 Thread Phil Yang
Congratulations! Thanks, Phil 2017-06-20 3:30 GMT+08:00 Sean Busbey : > On behalf of the Apache HBase PMC, I am pleased to announce that > Huaxiang Sun has accepted the PMC's invitation to become a committer > on the project. We appreciate all of Huaxiang's great work thus

Re: [ANNOUNCE] New Apache HBase committer Ashu Pachauri

2017-06-18 Thread Phil Yang
Congratulations! Thanks, Phil 2017-06-19 10:47 GMT+08:00 Stephen Jiang : > Congratulations and Welcome to the team! > > Best Regards > Stephen > > On Sun, Jun 18, 2017 at 6:36 PM, Pankaj kr wrote: > > > Congratulations Ashu..!! > > > > Thanks &

Re: [ANNOUNCE] New HBase committer Allan Yang

2017-06-08 Thread Phil Yang
Congratulations! Thanks, Phil 2017-06-09 12:13 GMT+08:00 Anoop John : > Congrats Allan.. Welcome !! > > -Anoop- > > On Fri, Jun 9, 2017 at 9:27 AM, 张铎(Duo Zhang) > wrote: > > Congratulations! > > > > 2017-06-09 11:55 GMT+08:00 Ted Yu

Re: Lease exception

2016-12-22 Thread Phil Yang
on scanning. Thanks, Phil 2016-12-22 17:26 GMT+08:00 Rajeshkumar J <rajeshkumarit8...@gmail.com>: > can you please explain what is the cause of this lease exception and is > there any solve this in current version > > Thanks > > On Thu, Dec 22, 2016 at 2:54 PM, Phil Yang

Re: Lease exception

2016-12-22 Thread Phil Yang
In fact at client the rpc timeout of scan request is also hbase.client.scanner.timeout.period which replaces the deprecated hbase.regionserver.lease.period. Your code that throws LeaseException has been removed by HBASE-16604, maybe you can try to upgrade your cluster to 1.1.7? Your client can

Re: [ANNOUNCE] New HBase Committer Josh Elser

2016-12-13 Thread Phil Yang
Congratulations! Thanks, Phil 2016-12-13 12:56 GMT+08:00 ramkrishna vasudevan < ramkrishna.s.vasude...@gmail.com>: > Congratulations Josh !!! > > Regards > Ram > > On Tue, Dec 13, 2016 at 4:18 AM, Enis Söztutar wrote: > > > Congrats Josh! > > > > Enis > > > > On Mon, Dec 12,

Re: How to limit a single row being filled with millions of columus?

2016-12-06 Thread Phil Yang
> > > ------ 原始邮件 -- > 发件人: "Phil Yang";<yangzhe1...@apache.org>; > 发送时间: 2016年12月6日(星期二) 下午3:46 > 收件人: "hbase-user"<user@hbase.apache.org>; > > 主题: Re: How to limit a single row being filled with millions o

Re: How to limit a single row being filled with millions of columus?

2016-12-05 Thread Phil Yang
We have hbase.hstore.compaction.kv.max to setBatch on compaction and default value is 10, which means we will write each 10 cells to writer. I think it can prevent using too much heap while compacting? Thanks, Phil 2016-12-06 15:29 GMT+08:00 Guanghao Zhang : > Now the scan

Re: [ANNOUNCE] New HBase committer Phil Yang

2016-11-29 Thread Phil Yang
; wrote: > > > On behalf of the Apache HBase PMC, I am pleased to announce that Phil > Yang > > has accepted the PMC's invitation to become a committer on the project. > We > > appreciate all of Phil's generous contributions thus far and look forward > > to his continued involvement. > > > > Congratulations and welcome, Phil! > > >

Re: Hbase 1.1.1 API documentation link

2016-11-07 Thread Phil Yang
For javadoc I think users need accurate api docs for the version they use, so we may also need api docs for 0.98/1.0/1.2 and coming 1.3? For "doc", which called HBase Book, I think only one book is good but we may need to tell users which version does HBase starts to support for each

Re: Re: Re: Re: What way to improve MTTR other than DLR(distributed log replay)

2016-10-27 Thread Phil Yang
Hi all We are also considering how to improve MTTR these days and have a plan. I just notice this thread, hoping I am not late :) My original thought is simple: Why we must put entries to MemStore of new RS? We can read/write WAL entries only once in failover, from log entries to HFiles, which

Re: get first row of every region

2016-08-01 Thread Phil Yang
If you pre-split this table with some split points when you create the table, the start key may not be the prefix of the first row key. So you should use setStartRow(regionInfo.getStartKey()) and setStopRow(nextRegionInfo.getStartKey()) and setBatch(1), if the result is still null, this region is