Member since
01-18-2018
34
Posts
3
Kudos Received
0
Solutions
09-03-2023
10:47 PM
1 Kudo
@Ankita3087, Welcome to Cloudera Community. As this is an older post, you would have a better chance of receiving a resolution by starting a new thread. This will also be an opportunity to provide details specific to your environment that could aid others in assisting you with a more accurate answer to your question. You can link this thread as a reference in your new post.
... View more
06-16-2018
02:43 AM
@Josh Elser Tnx dude for your reply, can you please explain me how query matcher in hbase work or else if you have a good link regarding query matcher please share with me, it will helpful for me to understand. Thank you
... View more
06-12-2018
09:19 PM
2 Kudos
Zookeeper.out file contains log for zookeeper server. you can refer to below thread to enable log rotating for zookeeper. This way you can avoid too big log files. https://community.hortonworks.com/questions/39282/zookeeper-log-file-not-rotated.html
... View more
06-07-2018
03:50 AM
@Geoffrey Shelton Okot Tnx dude now i understand..
... View more
06-05-2018
02:34 PM
First, remember you need to have an odd number of journalnode (3, 5, 7, etc). All the Journal nodes should be sync. Tail the log file across all the JN to be sure you are in the same edit. tail -f /var/log/hadoop/hdfs/hadoop-hdfs-journalnode*.log * Note: If you comment this post make sure you tag my name. And If you found this answer addressed your question, please take a moment to login and click the "accept" link on the answer.
... View more
05-22-2018
07:30 PM
JMX metrics can provide you compaction related parameters. http://<region server>:16030/jmx
... View more
03-30-2018
12:21 PM
1 Kudo
---->How region server will use heap and what are the
parameters will occupy heap memory Region server heap memory consumption is mainly dependent on
below three. - Block cache (Buffer maintained in heap for read) - Memstore Size (Buffer maintained in heap for write and
flush) - Other Objects created within region server while during
various operations. Below two are the parameter which controls the max % of heap
block cache and block cache consume. hfile.block.cache.size hbase.regionserver.global.memstore.size =>Below links will help in understading region server
configuration for block cache/memstore and region server sizing. https://hbase.apache.org/book.html#perf.rs.memstore.size https://hbase.apache.org/book.html#ops.capacity.regions.count https://hbase.apache.org/book.html#block.cache.usage -----> Is region server will use only 16 GB heap or even
other space of RAM Region server will comsume maximum = 16GB of heap +
XX:MaxDirectMemorySize which you have configured. MaxDirectMemorySize—The JVM has a kind of memory called
direct memory, which is distinct from normal JVM heap memory, that can run out.
You can increase the direct buffer memory either by increasing the maximum heap
size (see previous JVM Heap Size), which increases both the maximum heap and
the maximum direct memory, or by only increasing the maximum direct memory
using -XX:MaxDirectMemorySize. The following parameter added to the Java
application startup increases the maximum direct memory size to 256 megabytes:
... View more
02-13-2018
10:44 PM
1 Kudo
I'm guessing you've already seen http://hbase.apache.org/0.94/book/secondary.indexes.html which basically is telling you that you'll need to have a second table whose rowkey is your "secondary index" and is only being used to find the rowkey needed for the actual table. The coprocessor strategy, as I understand it, is to just formalize & automate the "dual-write secondary index" strategy. Good luck and happy Hadooping!
... View more
01-20-2018
06:01 AM
Tnx bro....
... View more