Member since
11-14-2015
268
Posts
122
Kudos Received
29
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
2707 | 08-07-2017 08:39 AM | |
4388 | 07-26-2017 06:06 AM | |
10054 | 12-30-2016 08:29 AM | |
7911 | 11-28-2016 08:08 AM | |
7843 | 11-21-2016 02:16 PM |
08-01-2016
08:36 AM
2 Kudos
As per your hbase-site.xml, bucket cache size is configured as <property>
<name>hbase.bucketcache.size</name>
<value>6416</value>
</property
But hbase-env.sh has MaxDirectMemorySize is set to just -XX:MaxDirectMemorySize=6128 You need to set this -XX:MaxDirectMemorySize in hbase-env.sh to more than the bucket cache size configuration, and remember to suffix the configuration with "m" -XX:MaxDirectMemorySize=6528m
... View more
07-29-2016
10:54 AM
https://community.hortonworks.com/questions/17836/which-is-best-method-for-taking-backup-of-hbase-da.html
... View more
07-28-2016
08:46 AM
can you check, updated configuration(hbase-site.xml) should be in the classpath of phoenix query server also?
... View more
07-26-2016
08:57 AM
when you restore SYSTEM tables too, the metadata of all tables will be available , so you don't need to create any metadata again(like view/table) to access the user tables.
... View more
07-26-2016
07:39 AM
2 Kudos
Phoenix tables are the same as HBase tables so as per your need, you can use any backup method available in hbase. http://hbase.apache.org/book.html#ops.backup Taking a snapshot of all SYSTEM tables and user tables and exporting in some cold storage is an good option until incremental backup and restore feature in hbase got released (though active development is going on so expected to be released soon in HDP).
... View more
07-21-2016
05:43 PM
Some join queries can be rewritten like this:- delete from source1 where (pk1,pk2) in (select pk1,pk2 from source2);
... View more
07-15-2016
01:37 PM
Oh, you are saying that no exception is seen in the call back as well. so what about sending the calls to kafka immediately (purpose of below property to avoid buffer and see them at consumer immediately) batch.size=0
linger.ms=0
block.on.buffer.full=true// just for precaution
... View more
07-15-2016
12:31 PM
May be related to https://issues.apache.org/jira/browse/HIVE-9977
... View more
07-15-2016
12:31 PM
1 Kudo
May be you are hitting the following bug. https://issues.apache.org/jira/browse/HIVE-9977 And, Probably running the compaction manually on the table will get you more number of tez mappers.
... View more