Member since
04-03-2019
962
Posts
1743
Kudos Received
146
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 15017 | 03-08-2019 06:33 PM | |
| 6180 | 02-15-2019 08:47 PM | |
| 5101 | 09-26-2018 06:02 PM | |
| 12609 | 09-07-2018 10:33 PM | |
| 7448 | 04-25-2018 01:55 AM |
08-07-2016
06:45 PM
@Rajib Mandal - You need to modify oozie-env.sh via Ambari. Can you please modify it from Ambari UI and restart required services again? It should be get reverted then.
... View more
08-05-2016
05:15 AM
3 Kudos
@Rajib Mandal Can you please run below command to export Oozie URL and run oozie CLI to see if it works fine? export OOZIE_URL=http://<your-oozie-server-hostname-or-ip>:11000/oozie This could be because OOZIE_URL is commented in your /etc/oozie/conf/oozie-env.sh
... View more
08-04-2016
04:09 PM
@Dinesh E Can you restart Ambari agent and see if helps?
... View more
08-04-2016
04:22 AM
3 Kudos
@ARUN In Addition to above answers: 1. Can you please check if nodemanager state is healthy for 3rd node? Sometimes, because of disk failure/reserved disk nodemanegers goes into unhealthy state although nodemanager daemon is still running, jobs will not get scheduled on problematic node. 2. Most important thing is try to run hdfs balancer if data distribution is un-even across all the datanodes. 3. Below is the command to run hdfs balancer sudo -u hdfs hadoop balancer -threshold <threshold-value> Note - default threshold is 10, you can reduce it upto 1 depending on how close you want to balance your cluster. . Hope this information helps!
... View more
08-03-2016
06:34 PM
@Abdul Qadeer You are welcome Sir! If this helped you, you can accept my answer and post a new question whenever you need our help.
... View more
08-03-2016
03:45 AM
Thank you! I believe java upgrade is not required. only openssl upgrade should fix this.
... View more
08-03-2016
02:28 AM
3 Kudos
@Saurabh Kumar
If your command is going to launch a Yarn job then how about adding -Dmapreduce.job.queuename=<queue-name> ?
... View more
08-03-2016
02:17 AM
@Shiv kumar - Can you please let us know what was the issue and how did you fix it, it will help readers to fix if anyone faces same issue. By looking at the error it looks like you fixed it by upgrading openssl packages on all 3 hosts. Please confirm
... View more
08-02-2016
11:15 PM
5 Kudos
@Sunile Manjee If you are using MR as execution engine then this command is fine. If you are using TEZ then I believe you can use below command beeline !connect jdbc:hive2://your.host:your.port/data_base?tez.queue.name=<queue-name> Additionally If you want to set one dedicated queue for hive jobs then you can modify tez.queue.name property via Ambari. There is an option of interactive queues as well if you want to use multiple dedicated queues for hive. Please see this - https://docs.hortonworks.com/HDPDocuments/HDP2/HDP-2.3.2/bk_performance_tuning/content/section_guidelines_for_interactive_queues.html
... View more