|
Bryan Keller
2011-03-13, 08:14
Bryan Keller
2011-03-13, 20:48
Stuart Scott
2011-03-14, 05:19
Jean-Daniel Cryans
2011-03-14, 17:29
Jean-Daniel Cryans
2011-03-14, 18:54
Bryan Keller
2011-03-14, 20:18
Bryan Keller
2011-03-15, 02:04
Jean-Daniel Cryans
2011-03-15, 02:48
Lars George
2011-03-15, 08:43
Andrew Purtell
2011-03-15, 08:53
Stack
2011-03-15, 16:06
Matt Corgan
2011-03-15, 16:26
Andrew Purtell
2011-03-15, 21:03
|
-
Long client pauses with compressionBryan Keller 2011-03-13, 08:14
I am using the Java client API to write 10,000 rows with about 6000 columns each, via 8 threads making multiple calls to the HTable.put(List<Put>) method. I start with an empty table with one column family and no regions pre-created.
With compression turned off, I am seeing very stable performance. At the start there are a couple of 10-20sec pauses where all insert threads are blocked during a region split. Subsequent splits do not cause all of the threads to block, presumably because there are more regions so no one region split blocks all inserts. GCs for HBase during the insert is not a major problem (6k/55sec). When using either LZO or gzip compression, however, I am seeing frequent and long pauses, sometimes around 20 sec but often over 80 seconds in my test. During these pauses all 8 of the threads writing to HBase are blocked. The pauses happen throughout the insert process. GCs are higher in HBase when using compression (60k, 4min), but it doesn't seem enough to explain these pauses. Overall performance obviously suffers dramatically as a result (about 2x slower). I have tested this in different configurations (single node, 4 nodes) with the same result. I'm using HBase 0.90.1 (CDH3B4), Sun/Oracle Java 1.6.0_24, CentOS 5.5, Hadoop LZO 0.4.10 from Cloudera. Machines have 12 cores and 24 gb of RAM. Settings are pretty much default, nothing out of the ordinary. I tried playing around with region handler count and memstore settings, but these had no effect.
-
Re: Long client pauses with compressionBryan Keller 2011-03-13, 20:48
If interested, I wrote a small program that demonstrates the problem (http://vancameron.net/HBaseInsert.zip). It uses Gradle, so you'll need that. To run, enter "gradle run".
On Mar 13, 2011, at 12:14 AM, Bryan Keller wrote: > I am using the Java client API to write 10,000 rows with about 6000 columns each, via 8 threads making multiple calls to the HTable.put(List<Put>) method. I start with an empty table with one column family and no regions pre-created. > > With compression turned off, I am seeing very stable performance. At the start there are a couple of 10-20sec pauses where all insert threads are blocked during a region split. Subsequent splits do not cause all of the threads to block, presumably because there are more regions so no one region split blocks all inserts. GCs for HBase during the insert is not a major problem (6k/55sec). > > When using either LZO or gzip compression, however, I am seeing frequent and long pauses, sometimes around 20 sec but often over 80 seconds in my test. During these pauses all 8 of the threads writing to HBase are blocked. The pauses happen throughout the insert process. GCs are higher in HBase when using compression (60k, 4min), but it doesn't seem enough to explain these pauses. Overall performance obviously suffers dramatically as a result (about 2x slower). > > I have tested this in different configurations (single node, 4 nodes) with the same result. I'm using HBase 0.90.1 (CDH3B4), Sun/Oracle Java 1.6.0_24, CentOS 5.5, Hadoop LZO 0.4.10 from Cloudera. Machines have 12 cores and 24 gb of RAM. Settings are pretty much default, nothing out of the ordinary. I tried playing around with region handler count and memstore settings, but these had no effect. >
-
RE: Long client pauses with compressionStuart Scott 2011-03-14, 05:19
Hi,
We are experiencing the same issue. Have experimented with the memory settings also but still get the same problem. We are inserting over 1,000,00 records. We find that it freezes as below but also, after running for some time, the entire connectivity dies. Would be interested in any progress on this one. Regards Stuart -----Original Message----- From: Bryan Keller [mailto:[EMAIL PROTECTED]] Sent: 13 March 2011 20:49 To: [EMAIL PROTECTED] Subject: Re: Long client pauses with compression If interested, I wrote a small program that demonstrates the problem (http://vancameron.net/HBaseInsert.zip). It uses Gradle, so you'll need that. To run, enter "gradle run". On Mar 13, 2011, at 12:14 AM, Bryan Keller wrote: > I am using the Java client API to write 10,000 rows with about 6000 columns each, via 8 threads making multiple calls to the HTable.put(List<Put>) method. I start with an empty table with one column family and no regions pre-created. > > With compression turned off, I am seeing very stable performance. At the start there are a couple of 10-20sec pauses where all insert threads are blocked during a region split. Subsequent splits do not cause all of the threads to block, presumably because there are more regions so no one region split blocks all inserts. GCs for HBase during the insert is not a major problem (6k/55sec). > > When using either LZO or gzip compression, however, I am seeing frequent and long pauses, sometimes around 20 sec but often over 80 seconds in my test. During these pauses all 8 of the threads writing to HBase are blocked. The pauses happen throughout the insert process. GCs are higher in HBase when using compression (60k, 4min), but it doesn't seem enough to explain these pauses. Overall performance obviously suffers dramatically as a result (about 2x slower). > > I have tested this in different configurations (single node, 4 nodes) with the same result. I'm using HBase 0.90.1 (CDH3B4), Sun/Oracle Java 1.6.0_24, CentOS 5.5, Hadoop LZO 0.4.10 from Cloudera. Machines have 12 cores and 24 gb of RAM. Settings are pretty much default, nothing out of the ordinary. I tried playing around with region handler count and memstore settings, but these had no effect. >
-
Re: Long client pauses with compressionJean-Daniel Cryans 2011-03-14, 17:29
Thanks for the report Bryan, I'll try your little program against one
of our 0.90.1 cluster that has similar hardware. J-D On Sun, Mar 13, 2011 at 1:48 PM, Bryan Keller <[EMAIL PROTECTED]> wrote: > If interested, I wrote a small program that demonstrates the problem (http://vancameron.net/HBaseInsert.zip). It uses Gradle, so you'll need that. To run, enter "gradle run". > > On Mar 13, 2011, at 12:14 AM, Bryan Keller wrote: > >> I am using the Java client API to write 10,000 rows with about 6000 columns each, via 8 threads making multiple calls to the HTable.put(List<Put>) method. I start with an empty table with one column family and no regions pre-created. >> >> With compression turned off, I am seeing very stable performance. At the start there are a couple of 10-20sec pauses where all insert threads are blocked during a region split. Subsequent splits do not cause all of the threads to block, presumably because there are more regions so no one region split blocks all inserts. GCs for HBase during the insert is not a major problem (6k/55sec). >> >> When using either LZO or gzip compression, however, I am seeing frequent and long pauses, sometimes around 20 sec but often over 80 seconds in my test. During these pauses all 8 of the threads writing to HBase are blocked. The pauses happen throughout the insert process. GCs are higher in HBase when using compression (60k, 4min), but it doesn't seem enough to explain these pauses. Overall performance obviously suffers dramatically as a result (about 2x slower). >> >> I have tested this in different configurations (single node, 4 nodes) with the same result. I'm using HBase 0.90.1 (CDH3B4), Sun/Oracle Java 1.6.0_24, CentOS 5.5, Hadoop LZO 0.4.10 from Cloudera. Machines have 12 cores and 24 gb of RAM. Settings are pretty much default, nothing out of the ordinary. I tried playing around with region handler count and memstore settings, but these had no effect. >> > >
-
Re: Long client pauses with compressionJean-Daniel Cryans 2011-03-14, 18:54
Alright so here's a preliminary report:
- No compression is stable for me too, short pauses. - LZO gave me no problems either, generally faster than no compression. - GZ initially gave me weird results, but I quickly saw that I forgot to copy over the native libs from the hadoop folder so my logs were full of: 2011-03-14 10:20:29,624 INFO org.apache.hadoop.io.compress.CodecPool: Got brand-new compressor 2011-03-14 10:20:29,626 INFO org.apache.hadoop.io.compress.CodecPool: Got brand-new compressor 2011-03-14 10:20:29,628 INFO org.apache.hadoop.io.compress.CodecPool: Got brand-new compressor 2011-03-14 10:20:29,630 INFO org.apache.hadoop.io.compress.CodecPool: Got brand-new compressor 2011-03-14 10:20:29,632 INFO org.apache.hadoop.io.compress.CodecPool: Got brand-new compressor 2011-03-14 10:20:29,634 INFO org.apache.hadoop.io.compress.CodecPool: Got brand-new compressor 2011-03-14 10:20:29,636 INFO org.apache.hadoop.io.compress.CodecPool: Got brand-new compressor I copied the libs over, bounced the region servers, and the performance was much more stable until a point where I got a 20 seconds pause, and looking at the logs I see: 2011-03-14 10:31:17,625 WARN org.apache.hadoop.hbase.regionserver.MemStoreFlusher: Region test,,1300127266461.9d0eb095b77716c22cd5c78bb503c744. has too many store files; delaying flush up to 90000ms (our config sets the block at 20 store files instead of the default which is around 12 IIRC) Quickly followed by a bunch of: 2011-03-14 10:31:26,757 INFO org.apache.hadoop.hbase.regionserver.HRegion: Blocking updates for 'IPC Server handler 20 on 60020' on region test,,1300127266461.9d0eb095b77716c22cd5c78bb503c744.: memstore size 285.6m is >= than blocking 256.0m size (our settings make it that we won't block on memstores until 4x their sizes, in your case you may see a 2x blocking factor so 128MB which is default) The reason is that our memstores, once flushed, occupy a very small space, consider this: 2011-03-14 10:31:16,606 INFO org.apache.hadoop.hbase.regionserver.Store: Added hdfs://sv2borg169:9000/hbase/test/9d0eb095b77716c22cd5c78bb503c744/test/420552941380451032, entries=216000, sequenceid=70556635737, memsize=64.3m, filesize=6.0m It means that it will create tiny files of ~6MB and the compactor will spend all it's time merging those files until a point where HBase must stop inserting in order to not blow its available memory. Thus, the same data will get rewritten a couple of times. Normally, and by that I mean a system where you're not just trying to insert data ASAP but where most of your workload is made up of reads, this works well as the memstores are filled much more slowly and compactions happen at a normal pace. If you search around the interwebs for tips on speeding up HBase inserts, you'll often see the configs I referred to earlier: <name>hbase.hstore.blockingStoreFiles</name> <value>20</value> and <name>hbase.hregion.memstore.block.multiplier</name> <value>4</value> They should work pretty well for most use cases that are made of heavy writes given that the region servers have enough heap (eg more than 3 or 4GB). You should also consider setting MAX_FILESIZE to >1GB to limit the number of regions and MEMSTORE_FLUSHSIZE to >128MB to flush bigger files. Hope this helps, J-D On Mon, Mar 14, 2011 at 10:29 AM, Jean-Daniel Cryans <[EMAIL PROTECTED]> wrote: > Thanks for the report Bryan, I'll try your little program against one > of our 0.90.1 cluster that has similar hardware. > > J-D > > On Sun, Mar 13, 2011 at 1:48 PM, Bryan Keller <[EMAIL PROTECTED]> wrote: >> If interested, I wrote a small program that demonstrates the problem (http://vancameron.net/HBaseInsert.zip). It uses Gradle, so you'll need that. To run, enter "gradle run". >> >> On Mar 13, 2011, at 12:14 AM, Bryan Keller wrote: >> >>> I am using the Java client API to write 10,000 rows with about 6000 columns each, via 8 threads making multiple calls to the HTable.put(List<Put>) method. I start with an empty table with one column family and no regions pre-created.
-
Re: Long client pauses with compressionBryan Keller 2011-03-14, 20:18
This is very informative and helpful, I will try changing the settings and
will report back. On Mon, Mar 14, 2011 at 11:54 AM, Jean-Daniel Cryans <[EMAIL PROTECTED]>wrote: > Alright so here's a preliminary report: > > - No compression is stable for me too, short pauses. > - LZO gave me no problems either, generally faster than no compression. > - GZ initially gave me weird results, but I quickly saw that I forgot > to copy over the native libs from the hadoop folder so my logs were > full of: > > 2011-03-14 10:20:29,624 INFO org.apache.hadoop.io.compress.CodecPool: > Got brand-new compressor > 2011-03-14 10:20:29,626 INFO org.apache.hadoop.io.compress.CodecPool: > Got brand-new compressor > 2011-03-14 10:20:29,628 INFO org.apache.hadoop.io.compress.CodecPool: > Got brand-new compressor > 2011-03-14 10:20:29,630 INFO org.apache.hadoop.io.compress.CodecPool: > Got brand-new compressor > 2011-03-14 10:20:29,632 INFO org.apache.hadoop.io.compress.CodecPool: > Got brand-new compressor > 2011-03-14 10:20:29,634 INFO org.apache.hadoop.io.compress.CodecPool: > Got brand-new compressor > 2011-03-14 10:20:29,636 INFO org.apache.hadoop.io.compress.CodecPool: > Got brand-new compressor > > I copied the libs over, bounced the region servers, and the > performance was much more stable until a point where I got a 20 > seconds pause, and looking at the logs I see: > > 2011-03-14 10:31:17,625 WARN > org.apache.hadoop.hbase.regionserver.MemStoreFlusher: Region > test,,1300127266461.9d0eb095b77716c22cd5c78bb503c744. has too many > store files; delaying flush up to 90000ms > > (our config sets the block at 20 store files instead of the default > which is around 12 IIRC) > > Quickly followed by a bunch of: > > 2011-03-14 10:31:26,757 INFO > org.apache.hadoop.hbase.regionserver.HRegion: Blocking updates for > 'IPC Server handler 20 on 60020' on region > test,,1300127266461.9d0eb095b77716c22cd5c78bb503c744.: memstore size > 285.6m is >= than blocking 256.0m size > > (our settings make it that we won't block on memstores until 4x their > sizes, in your case you may see a 2x blocking factor so 128MB which is > default) > > The reason is that our memstores, once flushed, occupy a very small > space, consider this: > > 2011-03-14 10:31:16,606 INFO > org.apache.hadoop.hbase.regionserver.Store: Added > > hdfs://sv2borg169:9000/hbase/test/9d0eb095b77716c22cd5c78bb503c744/test/420552941380451032, > entries=216000, sequenceid=70556635737, memsize=64.3m, filesize=6.0m > > It means that it will create tiny files of ~6MB and the compactor will > spend all it's time merging those files until a point where HBase must > stop inserting in order to not blow its available memory. Thus, the > same data will get rewritten a couple of times. > > Normally, and by that I mean a system where you're not just trying to > insert data ASAP but where most of your workload is made up of reads, > this works well as the memstores are filled much more slowly and > compactions happen at a normal pace. > > If you search around the interwebs for tips on speeding up HBase > inserts, you'll often see the configs I referred to earlier: > > <name>hbase.hstore.blockingStoreFiles</name> > <value>20</value> > and > <name>hbase.hregion.memstore.block.multiplier</name> > <value>4</value> > > They should work pretty well for most use cases that are made of heavy > writes given that the region servers have enough heap (eg more than 3 > or 4GB). You should also consider setting MAX_FILESIZE to >1GB to > limit the number of regions and MEMSTORE_FLUSHSIZE to >128MB to flush > bigger files. > > Hope this helps, > > J-D > > On Mon, Mar 14, 2011 at 10:29 AM, Jean-Daniel Cryans > <[EMAIL PROTECTED]> wrote: > > Thanks for the report Bryan, I'll try your little program against one > > of our 0.90.1 cluster that has similar hardware. > > > > J-D > > > > On Sun, Mar 13, 2011 at 1:48 PM, Bryan Keller <[EMAIL PROTECTED]> wrote:
-
Re: Long client pauses with compressionBryan Keller 2011-03-15, 02:04
I changed the settings as described below:
hbase.hstore.blockingStoreFiles=20 hbase.hregion.memstore.block.multiplier=4 MAX_FILESIZE=512mb MEMSTORE_FLUSHSIZE=128mb I also created the table with 6 regions initially. Before I wasn't creating any regions initially. I needed to make all of these changes together to entirely eliminate the very long pauses. Now there are no pauses much longer than a second. Thanks much for the help. I am still not entirely sure why compression seems to expose this problem, however. On Mar 14, 2011, at 11:54 AM, Jean-Daniel Cryans wrote: > Alright so here's a preliminary report: > > - No compression is stable for me too, short pauses. > - LZO gave me no problems either, generally faster than no compression. > - GZ initially gave me weird results, but I quickly saw that I forgot > to copy over the native libs from the hadoop folder so my logs were > full of: > > 2011-03-14 10:20:29,624 INFO org.apache.hadoop.io.compress.CodecPool: > Got brand-new compressor > 2011-03-14 10:20:29,626 INFO org.apache.hadoop.io.compress.CodecPool: > Got brand-new compressor > 2011-03-14 10:20:29,628 INFO org.apache.hadoop.io.compress.CodecPool: > Got brand-new compressor > 2011-03-14 10:20:29,630 INFO org.apache.hadoop.io.compress.CodecPool: > Got brand-new compressor > 2011-03-14 10:20:29,632 INFO org.apache.hadoop.io.compress.CodecPool: > Got brand-new compressor > 2011-03-14 10:20:29,634 INFO org.apache.hadoop.io.compress.CodecPool: > Got brand-new compressor > 2011-03-14 10:20:29,636 INFO org.apache.hadoop.io.compress.CodecPool: > Got brand-new compressor > > I copied the libs over, bounced the region servers, and the > performance was much more stable until a point where I got a 20 > seconds pause, and looking at the logs I see: > > 2011-03-14 10:31:17,625 WARN > org.apache.hadoop.hbase.regionserver.MemStoreFlusher: Region > test,,1300127266461.9d0eb095b77716c22cd5c78bb503c744. has too many > store files; delaying flush up to 90000ms > > (our config sets the block at 20 store files instead of the default > which is around 12 IIRC) > > Quickly followed by a bunch of: > > 2011-03-14 10:31:26,757 INFO > org.apache.hadoop.hbase.regionserver.HRegion: Blocking updates for > 'IPC Server handler 20 on 60020' on region > test,,1300127266461.9d0eb095b77716c22cd5c78bb503c744.: memstore size > 285.6m is >= than blocking 256.0m size > > (our settings make it that we won't block on memstores until 4x their > sizes, in your case you may see a 2x blocking factor so 128MB which is > default) > > The reason is that our memstores, once flushed, occupy a very small > space, consider this: > > 2011-03-14 10:31:16,606 INFO > org.apache.hadoop.hbase.regionserver.Store: Added > hdfs://sv2borg169:9000/hbase/test/9d0eb095b77716c22cd5c78bb503c744/test/420552941380451032, > entries=216000, sequenceid=70556635737, memsize=64.3m, filesize=6.0m > > It means that it will create tiny files of ~6MB and the compactor will > spend all it's time merging those files until a point where HBase must > stop inserting in order to not blow its available memory. Thus, the > same data will get rewritten a couple of times. > > Normally, and by that I mean a system where you're not just trying to > insert data ASAP but where most of your workload is made up of reads, > this works well as the memstores are filled much more slowly and > compactions happen at a normal pace. > > If you search around the interwebs for tips on speeding up HBase > inserts, you'll often see the configs I referred to earlier: > > <name>hbase.hstore.blockingStoreFiles</name> > <value>20</value> > and > <name>hbase.hregion.memstore.block.multiplier</name> > <value>4</value> > > They should work pretty well for most use cases that are made of heavy > writes given that the region servers have enough heap (eg more than 3 > or 4GB). You should also consider setting MAX_FILESIZE to >1GB to
-
Re: Long client pauses with compressionJean-Daniel Cryans 2011-03-15, 02:48
For the reasons I gave above... the puts are sometimes blocked on the
memstores which are blocked by the flusher thread which is blocked because there's too many files to compact because the compactor is given too many small files to compact and has to compact the same data a bunch of times. Also, I may not have been clear, but HBase doesn't compress data in memory. This means, like I showed, that the 64MB that lives in memory becomes a 6MB file after compression (using GZ). You pack a lot more data into the same region, but performance is achieved by being able to write big files (else we wouldn't be waiting to get to 64MB before flushing). Without compression the files are much bigger and don't need as much compaction since there's so few of them, and then it splits early, to the expense of IO. If we were able to compress directly in memory and output the file as is, then we would be able to carry a lot more data in the MemStores and flush bigger files to disk... but it's not the case. Todd Lipcon once described this situation as HBase basically saying "ok you can put as fast as you can... oh wait stop stop stop that's too much... ok you can start inserting again... oh wait no that's too much" etc etc. HBase could do a better job at slowing down inserts when detecting this situation (or something like that), BTW this jira has been opened to track this issue https://issues.apache.org/jira/browse/HBASE-2981 J-D On Mon, Mar 14, 2011 at 7:04 PM, Bryan Keller <[EMAIL PROTECTED]> wrote: > I changed the settings as described below: > > hbase.hstore.blockingStoreFiles=20 > hbase.hregion.memstore.block.multiplier=4 > MAX_FILESIZE=512mb > MEMSTORE_FLUSHSIZE=128mb > > I also created the table with 6 regions initially. Before I wasn't creating any regions initially. I needed to make all of these changes together to entirely eliminate the very long pauses. Now there are no pauses much longer than a second. > > Thanks much for the help. I am still not entirely sure why compression seems to expose this problem, however. > > > On Mar 14, 2011, at 11:54 AM, Jean-Daniel Cryans wrote: > >> Alright so here's a preliminary report: >> >> - No compression is stable for me too, short pauses. >> - LZO gave me no problems either, generally faster than no compression. >> - GZ initially gave me weird results, but I quickly saw that I forgot >> to copy over the native libs from the hadoop folder so my logs were >> full of: >> >> 2011-03-14 10:20:29,624 INFO org.apache.hadoop.io.compress.CodecPool: >> Got brand-new compressor >> 2011-03-14 10:20:29,626 INFO org.apache.hadoop.io.compress.CodecPool: >> Got brand-new compressor >> 2011-03-14 10:20:29,628 INFO org.apache.hadoop.io.compress.CodecPool: >> Got brand-new compressor >> 2011-03-14 10:20:29,630 INFO org.apache.hadoop.io.compress.CodecPool: >> Got brand-new compressor >> 2011-03-14 10:20:29,632 INFO org.apache.hadoop.io.compress.CodecPool: >> Got brand-new compressor >> 2011-03-14 10:20:29,634 INFO org.apache.hadoop.io.compress.CodecPool: >> Got brand-new compressor >> 2011-03-14 10:20:29,636 INFO org.apache.hadoop.io.compress.CodecPool: >> Got brand-new compressor >> >> I copied the libs over, bounced the region servers, and the >> performance was much more stable until a point where I got a 20 >> seconds pause, and looking at the logs I see: >> >> 2011-03-14 10:31:17,625 WARN >> org.apache.hadoop.hbase.regionserver.MemStoreFlusher: Region >> test,,1300127266461.9d0eb095b77716c22cd5c78bb503c744. has too many >> store files; delaying flush up to 90000ms >> >> (our config sets the block at 20 store files instead of the default >> which is around 12 IIRC) >> >> Quickly followed by a bunch of: >> >> 2011-03-14 10:31:26,757 INFO >> org.apache.hadoop.hbase.regionserver.HRegion: Blocking updates for >> 'IPC Server handler 20 on 60020' on region
-
Re: Long client pauses with compressionLars George 2011-03-15, 08:43
Hi,
Whenever I am with clients and we design for HBase the first thing I do is spent a few hours explaining exactly that scenario and the architecture behind it. As for the importing and HBase simply lacking a graceful degradation that works in all cases I nowadays quickly point to the bulk import features. Adding the 0.92.0 additions to support multiple families is easily added to your own code base if you need it for 0.90.x and with that you can omit the whole "overloading the servers" part. It would be awesome if there were a hard and fast rule when to use either approach, i.e. how many inserts are too many to do over the API, and when to switch to bulk imports (using the incremental approach it supports), but that varies greatly based on your usage pattern, cluster size, hardware config etc. As for keeping this scalable I would not start tweaking the config to survive but go with the external loading early on. If you can guarantee your update rate is never saturating the cluster fully then you can use the API and avoid batch latencies. Lars On Tue, Mar 15, 2011 at 2:48 AM, Jean-Daniel Cryans <[EMAIL PROTECTED]> wrote: > For the reasons I gave above... the puts are sometimes blocked on the > memstores which are blocked by the flusher thread which is blocked > because there's too many files to compact because the compactor is > given too many small files to compact and has to compact the same data > a bunch of times. > > Also, I may not have been clear, but HBase doesn't compress data in > memory. This means, like I showed, that the 64MB that lives in memory > becomes a 6MB file after compression (using GZ). You pack a lot more > data into the same region, but performance is achieved by being able > to write big files (else we wouldn't be waiting to get to 64MB before > flushing). > > Without compression the files are much bigger and don't need as much > compaction since there's so few of them, and then it splits early, to > the expense of IO. > > If we were able to compress directly in memory and output the file as > is, then we would be able to carry a lot more data in the MemStores > and flush bigger files to disk... but it's not the case. > > Todd Lipcon once described this situation as HBase basically saying > "ok you can put as fast as you can... oh wait stop stop stop that's > too much... ok you can start inserting again... oh wait no that's too > much" etc etc. HBase could do a better job at slowing down inserts > when detecting this situation (or something like that), BTW this jira > has been opened to track this issue > https://issues.apache.org/jira/browse/HBASE-2981 > > J-D > > On Mon, Mar 14, 2011 at 7:04 PM, Bryan Keller <[EMAIL PROTECTED]> wrote: >> I changed the settings as described below: >> >> hbase.hstore.blockingStoreFiles=20 >> hbase.hregion.memstore.block.multiplier=4 >> MAX_FILESIZE=512mb >> MEMSTORE_FLUSHSIZE=128mb >> >> I also created the table with 6 regions initially. Before I wasn't creating any regions initially. I needed to make all of these changes together to entirely eliminate the very long pauses. Now there are no pauses much longer than a second. >> >> Thanks much for the help. I am still not entirely sure why compression seems to expose this problem, however. >> >> >> On Mar 14, 2011, at 11:54 AM, Jean-Daniel Cryans wrote: >> >>> Alright so here's a preliminary report: >>> >>> - No compression is stable for me too, short pauses. >>> - LZO gave me no problems either, generally faster than no compression. >>> - GZ initially gave me weird results, but I quickly saw that I forgot >>> to copy over the native libs from the hadoop folder so my logs were >>> full of: >>> >>> 2011-03-14 10:20:29,624 INFO org.apache.hadoop.io.compress.CodecPool: >>> Got brand-new compressor >>> 2011-03-14 10:20:29,626 INFO org.apache.hadoop.io.compress.CodecPool: >>> Got brand-new compressor
-
Re: Long client pauses with compressionAndrew Purtell 2011-03-15, 08:53
We have a separate compression setting for major compaction vs store files written during minor compaction (for background/archival apps).
Why not a separate compression setting for flushing? I.e. none? --- On Mon, 3/14/11, Jean-Daniel Cryans <[EMAIL PROTECTED]> wrote: > From: Jean-Daniel Cryans <[EMAIL PROTECTED]> > Subject: Re: Long client pauses with compression > To: [EMAIL PROTECTED] > Date: Monday, March 14, 2011, 7:48 PM > For the reasons I gave above... the puts are sometimes blocked on the > memstores which are blocked by the flusher thread which is blocked > because there's too many files to compact because the compactor is > given too many small files to compact and has to compact the same data > a bunch of times. > > Also, I may not have been clear, but HBase doesn't compress data in > memory. This means, like I showed, that the 64MB that lives in memory > becomes a 6MB file after compression (using GZ). You pack a lot more > data into the same region, but performance is achieved by being able > to write big files (else we wouldn't be waiting to get to 64MB before > flushing). > > Without compression the files are much bigger and don't need as much > compaction since there's so few of them, and then it splits early, to > the expense of IO. > > If we were able to compress directly in memory and output the file as > is, then we would be able to carry a lot more data in the MemStores > and flush bigger files to disk... but it's not the case. > > Todd Lipcon once described this situation as HBase basically saying > "ok you can put as fast as you can... oh wait stop stop stop that's > too much... ok you can start inserting again... oh wait no that's too > much" etc etc. HBase could do a better job at slowing down inserts > when detecting this situation (or something like that), BTW this jira > has been opened to track this issue > https://issues.apache.org/jira/browse/HBASE-2981 > > J-D > > On Mon, Mar 14, 2011 at 7:04 PM, Bryan Keller <[EMAIL PROTECTED]> > wrote: > > I changed the settings as described below: > > > > hbase.hstore.blockingStoreFiles=20 > > hbase.hregion.memstore.block.multiplier=4 > > MAX_FILESIZE=512mb > > MEMSTORE_FLUSHSIZE=128mb > > > > I also created the table with 6 regions initially. > Before I wasn't creating any regions initially. I needed to > make all of these changes together to entirely eliminate the > very long pauses. Now there are no pauses much longer than a > second. > > > > Thanks much for the help. I am still not entirely sure > why compression seems to expose this problem, however. > > > > > > On Mar 14, 2011, at 11:54 AM, Jean-Daniel Cryans > wrote: > > > >> Alright so here's a preliminary report: > >> > >> - No compression is stable for me too, short > pauses. > >> - LZO gave me no problems either, generally faster > than no compression. > >> - GZ initially gave me weird results, but I > quickly saw that I forgot > >> to copy over the native libs from the hadoop > folder so my logs were > >> full of: > >> > >> 2011-03-14 10:20:29,624 INFO > org.apache.hadoop.io.compress.CodecPool: > >> Got brand-new compressor > >> 2011-03-14 10:20:29,626 INFO > org.apache.hadoop.io.compress.CodecPool: > >> Got brand-new compressor > >> 2011-03-14 10:20:29,628 INFO > org.apache.hadoop.io.compress.CodecPool: > >> Got brand-new compressor > >> 2011-03-14 10:20:29,630 INFO > org.apache.hadoop.io.compress.CodecPool: > >> Got brand-new compressor > >> 2011-03-14 10:20:29,632 INFO > org.apache.hadoop.io.compress.CodecPool: > >> Got brand-new compressor > >> 2011-03-14 10:20:29,634 INFO > org.apache.hadoop.io.compress.CodecPool: > >> Got brand-new compressor > >> 2011-03-14 10:20:29,636 INFO > org.apache.hadoop.io.compress.CodecPool: > >> Got brand-new compressor > >> > >> I copied the libs over, bounced the region
-
Re: Long client pauses with compressionStack 2011-03-15, 16:06
Sounds like a nice feature to have and to ship as the default.
St.Ack On Tue, Mar 15, 2011 at 1:53 AM, Andrew Purtell <[EMAIL PROTECTED]> wrote: > We have a separate compression setting for major compaction vs store files written during minor compaction (for background/archival apps). > > Why not a separate compression setting for flushing? I.e. none? > > > --- On Mon, 3/14/11, Jean-Daniel Cryans <[EMAIL PROTECTED]> wrote: > >> From: Jean-Daniel Cryans <[EMAIL PROTECTED]> >> Subject: Re: Long client pauses with compression >> To: [EMAIL PROTECTED] >> Date: Monday, March 14, 2011, 7:48 PM >> For the reasons I gave above... the puts are sometimes blocked on the >> memstores which are blocked by the flusher thread which is blocked >> because there's too many files to compact because the compactor is >> given too many small files to compact and has to compact the same data >> a bunch of times. >> >> Also, I may not have been clear, but HBase doesn't compress data in >> memory. This means, like I showed, that the 64MB that lives in memory >> becomes a 6MB file after compression (using GZ). You pack a lot more >> data into the same region, but performance is achieved by being able >> to write big files (else we wouldn't be waiting to get to 64MB before >> flushing). >> >> Without compression the files are much bigger and don't need as much >> compaction since there's so few of them, and then it splits early, to >> the expense of IO. >> >> If we were able to compress directly in memory and output the file as >> is, then we would be able to carry a lot more data in the MemStores >> and flush bigger files to disk... but it's not the case. >> >> Todd Lipcon once described this situation as HBase basically saying >> "ok you can put as fast as you can... oh wait stop stop stop that's >> too much... ok you can start inserting again... oh wait no that's too >> much" etc etc. HBase could do a better job at slowing down inserts >> when detecting this situation (or something like that), BTW this jira >> has been opened to track this issue >> https://issues.apache.org/jira/browse/HBASE-2981 >> >> J-D >> >> On Mon, Mar 14, 2011 at 7:04 PM, Bryan Keller <[EMAIL PROTECTED]> >> wrote: >> > I changed the settings as described below: >> > >> > hbase.hstore.blockingStoreFiles=20 >> > hbase.hregion.memstore.block.multiplier=4 >> > MAX_FILESIZE=512mb >> > MEMSTORE_FLUSHSIZE=128mb >> > >> > I also created the table with 6 regions initially. >> Before I wasn't creating any regions initially. I needed to >> make all of these changes together to entirely eliminate the >> very long pauses. Now there are no pauses much longer than a >> second. >> > >> > Thanks much for the help. I am still not entirely sure >> why compression seems to expose this problem, however. >> > >> > >> > On Mar 14, 2011, at 11:54 AM, Jean-Daniel Cryans >> wrote: >> > >> >> Alright so here's a preliminary report: >> >> >> >> - No compression is stable for me too, short >> pauses. >> >> - LZO gave me no problems either, generally faster >> than no compression. >> >> - GZ initially gave me weird results, but I >> quickly saw that I forgot >> >> to copy over the native libs from the hadoop >> folder so my logs were >> >> full of: >> >> >> >> 2011-03-14 10:20:29,624 INFO >> org.apache.hadoop.io.compress.CodecPool: >> >> Got brand-new compressor >> >> 2011-03-14 10:20:29,626 INFO >> org.apache.hadoop.io.compress.CodecPool: >> >> Got brand-new compressor >> >> 2011-03-14 10:20:29,628 INFO >> org.apache.hadoop.io.compress.CodecPool: >> >> Got brand-new compressor >> >> 2011-03-14 10:20:29,630 INFO >> org.apache.hadoop.io.compress.CodecPool: >> >> Got brand-new compressor >> >> 2011-03-14 10:20:29,632 INFO >> org.apache.hadoop.io.compress.CodecPool: >> >> Got brand-new compressor >> >> 2011-03-14 10:20:29,634 INFO
-
Re: Long client pauses with compressionMatt Corgan 2011-03-15, 16:26
I've run into this problem and mitigated it by setting the memstore flush
size to 256mb, but i'm curious why flushing an uncompressed file would help the situation? Also, would there be a downside to setting the default higher than 64mb in general, especially since most people use compression? Is the flusher smart enough to flush the biggest ones first when the max memstore heap percentage is used? Thanks, Matt On Tue, Mar 15, 2011 at 12:06 PM, Stack <[EMAIL PROTECTED]> wrote: > Sounds like a nice feature to have and to ship as the default. > St.Ack > > On Tue, Mar 15, 2011 at 1:53 AM, Andrew Purtell <[EMAIL PROTECTED]> > wrote: > > We have a separate compression setting for major compaction vs store > files written during minor compaction (for background/archival apps). > > > > Why not a separate compression setting for flushing? I.e. none? > > > > > > --- On Mon, 3/14/11, Jean-Daniel Cryans <[EMAIL PROTECTED]> wrote: > > > >> From: Jean-Daniel Cryans <[EMAIL PROTECTED]> > >> Subject: Re: Long client pauses with compression > >> To: [EMAIL PROTECTED] > >> Date: Monday, March 14, 2011, 7:48 PM > >> For the reasons I gave above... the puts are sometimes blocked on the > >> memstores which are blocked by the flusher thread which is blocked > >> because there's too many files to compact because the compactor is > >> given too many small files to compact and has to compact the same data > >> a bunch of times. > >> > >> Also, I may not have been clear, but HBase doesn't compress data in > >> memory. This means, like I showed, that the 64MB that lives in memory > >> becomes a 6MB file after compression (using GZ). You pack a lot more > >> data into the same region, but performance is achieved by being able > >> to write big files (else we wouldn't be waiting to get to 64MB before > >> flushing). > >> > >> Without compression the files are much bigger and don't need as much > >> compaction since there's so few of them, and then it splits early, to > >> the expense of IO. > >> > >> If we were able to compress directly in memory and output the file as > >> is, then we would be able to carry a lot more data in the MemStores > >> and flush bigger files to disk... but it's not the case. > >> > >> Todd Lipcon once described this situation as HBase basically saying > >> "ok you can put as fast as you can... oh wait stop stop stop that's > >> too much... ok you can start inserting again... oh wait no that's too > >> much" etc etc. HBase could do a better job at slowing down inserts > >> when detecting this situation (or something like that), BTW this jira > >> has been opened to track this issue > >> https://issues.apache.org/jira/browse/HBASE-2981 > >> > >> J-D > >> > >> On Mon, Mar 14, 2011 at 7:04 PM, Bryan Keller <[EMAIL PROTECTED]> > >> wrote: > >> > I changed the settings as described below: > >> > > >> > hbase.hstore.blockingStoreFiles=20 > >> > hbase.hregion.memstore.block.multiplier=4 > >> > MAX_FILESIZE=512mb > >> > MEMSTORE_FLUSHSIZE=128mb > >> > > >> > I also created the table with 6 regions initially. > >> Before I wasn't creating any regions initially. I needed to > >> make all of these changes together to entirely eliminate the > >> very long pauses. Now there are no pauses much longer than a > >> second. > >> > > >> > Thanks much for the help. I am still not entirely sure > >> why compression seems to expose this problem, however. > >> > > >> > > >> > On Mar 14, 2011, at 11:54 AM, Jean-Daniel Cryans > >> wrote: > >> > > >> >> Alright so here's a preliminary report: > >> >> > >> >> - No compression is stable for me too, short > >> pauses. > >> >> - LZO gave me no problems either, generally faster > >> than no compression. > >> >> - GZ initially gave me weird results, but I > >> quickly saw that I forgot > >> >> to copy over the native libs from the hadoop
-
Re: Long client pauses with compressionAndrew Purtell 2011-03-15, 21:03
Created https://issues.apache.org/jira/browse/HBASE-3649
--- On Tue, 3/15/11, Stack <[EMAIL PROTECTED]> wrote: > From: Stack <[EMAIL PROTECTED]> > Subject: Re: Long client pauses with compression > To: [EMAIL PROTECTED], [EMAIL PROTECTED] > Date: Tuesday, March 15, 2011, 9:06 AM > Sounds like a nice feature to have > and to ship as the default. > St.Ack > > On Tue, Mar 15, 2011 at 1:53 AM, Andrew Purtell <[EMAIL PROTECTED]> > wrote: > > We have a separate compression setting for major > compaction vs store files written during minor compaction > (for background/archival apps). > > > > Why not a separate compression setting for flushing? > I.e. none? > > > > > > --- On Mon, 3/14/11, Jean-Daniel Cryans <[EMAIL PROTECTED]> > wrote: > > > >> From: Jean-Daniel Cryans <[EMAIL PROTECTED]> > >> Subject: Re: Long client pauses with compression > >> To: [EMAIL PROTECTED] > >> Date: Monday, March 14, 2011, 7:48 PM > >> For the reasons I gave above... the puts are > sometimes blocked on the > >> memstores which are blocked by the flusher thread > which is blocked > >> because there's too many files to compact because > the compactor is > >> given too many small files to compact and has to > compact the same data > >> a bunch of times. > >> > >> Also, I may not have been clear, but HBase doesn't > compress data in > >> memory. This means, like I showed, that the 64MB > that lives in memory > >> becomes a 6MB file after compression (using GZ). > You pack a lot more > >> data into the same region, but performance is > achieved by being able > >> to write big files (else we wouldn't be waiting to > get to 64MB before > >> flushing). > >> > >> Without compression the files are much bigger and > don't need as much > >> compaction since there's so few of them, and then > it splits early, to > >> the expense of IO. > >> > >> If we were able to compress directly in memory and > output the file as > >> is, then we would be able to carry a lot more data > in the MemStores > >> and flush bigger files to disk... but it's not the > case. > >> > >> Todd Lipcon once described this situation as HBase > basically saying > >> "ok you can put as fast as you can... oh wait stop > stop stop that's > >> too much... ok you can start inserting again... oh > wait no that's too > >> much" etc etc. HBase could do a better job at > slowing down inserts > >> when detecting this situation (or something like > that), BTW this jira > >> has been opened to track this issue > >> https://issues.apache.org/jira/browse/HBASE-2981 > >> > >> J-D > >> > >> On Mon, Mar 14, 2011 at 7:04 PM, Bryan Keller > <[EMAIL PROTECTED]> > >> wrote: > >> > I changed the settings as described below: > >> > > >> > hbase.hstore.blockingStoreFiles=20 > >> > hbase.hregion.memstore.block.multiplier=4 > >> > MAX_FILESIZE=512mb > >> > MEMSTORE_FLUSHSIZE=128mb > >> > > >> > I also created the table with 6 regions > initially. > >> Before I wasn't creating any regions initially. I > needed to > >> make all of these changes together to entirely > eliminate the > >> very long pauses. Now there are no pauses much > longer than a > >> second. > >> > > >> > Thanks much for the help. I am still not > entirely sure > >> why compression seems to expose this problem, > however. > >> > > >> > > >> > On Mar 14, 2011, at 11:54 AM, Jean-Daniel > Cryans > >> wrote: > >> > > >> >> Alright so here's a preliminary report: > >> >> > >> >> - No compression is stable for me too, > short > >> pauses. > >> >> - LZO gave me no problems either, > generally faster > >> than no compression. > >> >> - GZ initially gave me weird results, but > I > >> quickly saw that I forgot > >> >> to copy over the native libs from the > hadoop > >> folder so my logs were > >> >> full of: > >> >> > >> >> 2011-03-14 10:20:29,624 INFO > >> org.apache.hadoop.io.compress.CodecPool: |