| clear query|facets|time |
Search criteria: .
Results from 21 to 30 from
91 (0.146s).
|
|
|
Loading phrases to help you refine your search...
|
|
Re: HBase Writes With Large Number of Columns - HBase - [mail # user]
|
|
...CellBlock == KeyValue? On Thu, Mar 28, 2013 at 12:06 AM, Ted Yu wrote: ...
|
|
|
Author: Asaf Mesika,
2013-03-27, 22:28
|
|
|
Re: HBase Writes With Large Number of Columns - HBase - [mail # user]
|
|
...Correct me if I'm wrong, but you the drop is expected, according to the following math: If you have a Put, for a specific rowkey, and that rowkey weighs 100 bytes, then if you have 20 ...
|
|
|
Author: Asaf Mesika,
2013-03-27, 21:52
|
|
|
Re: Compaction problem - HBase - [mail # user]
|
|
...From my testing: I had 3 RS and 1 Master all connected to a single router at speed of 1000 mbps. This network measured speed was 107 - 120 MB/sec, while the theoretic max is 125 MB/sec...
|
|
|
Author: Asaf Mesika,
2013-03-27, 19:55
|
|
|
Re: Compaction problem - HBase - [mail # user]
|
|
...1st thing I would do to find the bottleneck it so benchmark HDFS solo performance. Create a 16GB file (using dd) which is x2 your memory and run "time hadoop fs -copyFromLocal yourFile.txt /...
|
|
|
Author: Asaf Mesika,
2013-03-26, 21:26
|
|
|
Re: Why InternalScanner doesn't have a method that returns entire row or object of Result - HBase - [mail # user]
|
|
...Guys, Just to make things clear: if I have a row which have 12 keys values, and then another row with 5 KVs, and I called InternelScanner(results, 10), where 10 is the limit, then I wo...
|
|
|
Author: Asaf Mesika,
2013-03-07, 12:34
|
|
|
Re: Rowkey design and presplit table - HBase - [mail # user]
|
|
...I would convert each id to long and then use Bytes.toBytes to convert this long to a byte array. If it is an int then even better. Now, write all 3 longs one after another to one array which...
|
|
|
Author: Asaf Mesika,
2013-03-07, 07:42
|
|
|
Re: HBase Thrift inserts bottlenecked somewhere -- but where? - HBase - [mail # user]
|
|
...Make sure you are not sending a lot of put of the same rowkey. This can cause contention in the region server side. We fixed that in our project by aggregating all the columns for the same r...
|
|
|
Author: Asaf Mesika,
2013-03-02, 19:56
|
|
|
Re: Map Reduce with multiple scans - HBase - [mail # user]
|
|
...Nick, if he didn't specify startKey, endKey in the Scan Object, and delegate it to a Filter, this means he will send this scan to *all* regions in the system, instead of just one or two, no?...
|
|
|
Author: Asaf Mesika,
2013-03-01, 14:17
|
|
|
Re: HBase Thrift inserts bottlenecked somewhere -- but where? - HBase - [mail # user]
|
|
...Maybe you've the limit of the number of RPC Threads handling your write requests per Region Server, thus your requests are queued? On Fri, Mar 1, 2013 at 2:17 PM, Dan Crosta wro...
|
|
|
Author: Asaf Mesika,
2013-03-01, 14:13
|
|
|
Re: Row Key Design in time based aplication - HBase - [mail # user]
|
|
...How does avoid memory hogging the region server when multiple queries with group by are executed, which is done in Hbase jvm. I know that Hbase does not handle well when heap space is set be...
|
|
|
Author: Asaf Mesika,
2013-02-21, 22:49
|
|
|
|