Member since
05-22-2017
126
Posts
16
Kudos Received
14
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
2470 | 02-07-2019 11:03 AM | |
6649 | 08-09-2018 05:08 AM | |
1256 | 07-06-2018 07:51 AM | |
3168 | 06-22-2018 02:28 PM | |
3199 | 05-29-2018 01:14 PM |
04-13-2018
06:20 AM
Error shows process is not able to get the required memory from system. Ideally HBASE_HEAPSIZE should have helped. By default, hbase hbck will use default heap size of JVM which is usually ~1GB. You can try setting below option and then try executing hbck. export _JAVA_OPTIONS="-Xmx1024m -Xms1024m" hbase hbck Note : You can try different values of heap in _JAVA_OPTIONS
... View more
04-12-2018
08:17 PM
---> Large file can be input to your Map Reduce program ----> Small file can be passed in distributed cache and can be loaded in List ----> Inside your mapper function, you can do comparisons(Input file vs List) or any other operation which you want. Let me know if you need help in MR job. Please post sample data for files and operation you want to perform.
... View more
04-12-2018
08:06 PM
There are no error details in post. https://community.hortonworks.com/content/supportkb/48985/how-to-setup-oozie-shell-action.html This is article which may help. Can you post error from yarn logs? Check the map logs under application master.
... View more
04-05-2018
06:42 AM
1 Kudo
Hi @Koundinya Ravulapati, I could think of two ways. - Renewal of ticket via code i.e running background thread to renew ticket. You can refer below mentioned link- https://github.com/joshelser/phoenix-kerberos/blob/master/src/main/java/com/github/joshelser/PhoenixWithRenewal.java - Running kinit in cron job and using ticket from cache. Thanks Shubham
... View more
04-04-2018
06:49 PM
1) Is it safe to delete these tables on production, i mean is phoenix automatically recreates these tables. Yeah, we can safely remove the entry from STATS table. STATS will get updated automatically after every 15 minutes or during compaction. How to manually generate STATS - https://phoenix.apache.org/update_statistics.html 2) I tried to look for some web references where i can see that how Phoenix updates/refer these system tables and if there are some config impacting these scenarios.Please share if there is some reference pointing to this specific section of phoenix. Phoenix uses SYSTEM.STATS table contains stats like guideposts which are used to determine the number of scans. Some important parameters: phoenix.stats.guidepost.width - Server-side parameter that specifies the number of bytes between guideposts. A smaller amount increases parallelization, but also increases the number of chunks which must be merged on the client side. The default value is 100 MB. phoenix.stats.enabled - Whether STATS collection is enabled. By default it is enabled.
https://phoenix.apache.org/tuning.html - Details of All parameters. Let me know if you need more information.
... View more
04-04-2018
05:30 PM
Hi @Anupam Kumar, Could you please provide details whether cluster is kerberised(Secure) or un-kerberised(Unsecure)? Thanks Shubham
... View more
04-02-2018
06:25 PM
Hi @n c, Could you please accept answer if you find it useful? -Shubham
... View more
04-02-2018
02:22 PM
3 Kudos
Not sure about direct command. But you can use some shell script. Script: ----------------------------------------------------------------------------------------------------------------------------------------------------------------- for a in `yarn applicationattempt -list application_1522234336469_0002|grep appattempt|awk '{print $1}'`
do echo "Attempt $a nodes" for b in `yarn container -list $a|grep 'container_'| awk '{print $15}'` do echo "Node: $b" done done -----------------------------------------------------------------------------------------------------------------------------------------------------------------
... 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
03-30-2018
06:44 AM
Hi @Dhiraj Sardana Can you try deleting STATS for table and check count again? delete from SYSTEM.STATS where physical_name='<TABLE_NAME>' -Shubham
... View more
- « Previous
- Next »