Member since
10-22-2015
241
Posts
86
Kudos Received
20
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
2420 | 03-11-2018 12:01 AM | |
1456 | 01-03-2017 10:48 PM | |
1854 | 12-20-2016 11:11 PM | |
3632 | 09-03-2016 01:57 AM | |
1375 | 09-02-2016 04:55 PM |
05-26-2016
04:49 PM
bq. IllegalArgumentException: KeyValue size too large at That was where the problem was. Please check the size of KeyValue on client side.
... View more
05-26-2016
04:16 PM
Can you check server log on fsdata1c.corp.arc.com to see if there is more clue ? Which release of hbase are you using ?
... View more
05-25-2016
04:34 PM
2 Kudos
Search for ".createTable(" in http://hbase.apache.org/book.html Example 32. Java API
... View more
05-25-2016
04:33 PM
2 Kudos
You can find example in refguide (http://hbase.apache.org/book.html#rowkey.regionsplits) : createTable(Admin admin, HTableDescriptor table, byte[][] splits) Dependencies include hbase-client jar, hbase-protocol jar
... View more
05-25-2016
04:15 PM
Looks like you were following example using spark-shell. Can you reproduce this using standalone program ? Which HDP release are you using ?
... View more
05-24-2016
02:37 AM
Note: hbase.hregion.percolumnfamilyflush.size.lower.bound is used in HDP 2.3 / 2.4 hbase.hregion.percolumnfamilyflush.size.lower.bound.min would be used in HDP 2.5
... View more
05-23-2016
04:14 PM
You can view status of hbase using Ambari: x.y.z:8080/#/main/services/HBASE/summary where x.y.z is the Ambari gateway.
... View more
05-23-2016
04:00 PM
Can you check master log to see if there is more clue there ? Thanks
... View more
05-23-2016
03:55 PM
There is also hbase.hregion.percolumnfamilyflush.size.lower.bound.min : If FlushLargeStoresPolicy is used and there are multiple column families, then every time that we hit the total memstore limit, we find out all the column families whose memstores exceed a "lower bound" and only flush them while retaining the others in memory. The "lower bound" will be "hbase.hregion.memstore.flush.size / column_family_number" by default unless value of this property is larger than that. If none of the families have their memstore size more than lower bound, all the memstores will be flushed (just as usual). Default: 16777216
... View more
- « Previous
- Next »