Member since
05-05-2016
65
Posts
117
Kudos Received
7
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
5796 | 06-20-2016 09:08 AM | |
1236 | 05-26-2016 01:25 PM | |
9234 | 05-26-2016 01:14 PM | |
1217 | 05-25-2016 09:14 AM | |
1961 | 05-25-2016 09:03 AM |
01-24-2023
05:34 AM
@bvishal, 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
11-25-2020
02:31 PM
username: root password: hadoop UNIX password: hadoop set new password: confirm new passord:
... View more
09-10-2020
11:32 AM
In case ambari API doesn't help. You can use following SQL queries to abort hung/queued/pending operations directly from ambari database. 1) Stop Ambari-Server ambari-server stop 2) Take backup of ambari database before making any changes to ambari db 3) Check IN_PROGRESS, QUEUED and PENDING operations. ambari=> select task_id,role,role_command from host_role_command where status='IN_PROGRESS';
ambari=> select task_id,role,role_command from host_role_command where status='QUEUED' limit 100;
ambari=> select task_id,role,role_command from host_role_command where status='PENDING'; 4) Abort Operations ambari=> update host_role_command set status='ABORTED' where status='QUEUED';
ambari=> update host_role_command set status='ABORTED' where status='PENDING';
ambari=> update host_role_command set status='ABORTED' where status='IN_PROGRESS'; 5) Start ambari-server ambari-server start
... View more
04-02-2020
01:52 AM
You can try logging into the admin user and restart datanodes from the actions bar in Dashboard. That worked for me. May work for you too.
... View more
06-19-2018
09:11 AM
works for me too
... View more
05-25-2016
03:10 PM
Great to hear that 🙂
... View more
05-18-2016
05:53 PM
If I wanted to list the top 10 tweets could I include a where clause in the Emit of the reducer method, something along the lines of: Emit(terms t, LIMIT(DESC(count sum),10)?
... View more
08-11-2016
12:52 PM
Hi @Arpit Agarwal,
That is my understanding as well. Thanks for a short and to the point answer.
... View more
05-10-2016
05:11 PM
2 Kudos
Here is a great writeup on file compression in Hadoop - http://comphadoop.weebly.com/
... View more