Is there a way of killing an application from the RM web UI instead of running yarn application -kill
?
Asked
Active
Viewed 9,808 times
13

dimamah
- 2,883
- 18
- 31
-
1Currently Web UI does not allow to kill an application! – Hamza Zafar May 10 '15 at 18:42
-
1@HamzaZafar, you are not right. – Sergey Morozov Feb 03 '16 at 07:50
-
1@Sergey Maybe they have added the feature in latest release! It wasn't there when this question was asked! CLI was used to kill apps back then. Thanks for pointing out the correction :) – Hamza Zafar Feb 04 '16 at 09:17
2 Answers
32
I can do that in hadoop v2.7.1
- Open
http://<host_name>:<port>/cluster/app/<app_id>
- Press button Kill application

ChrisF
- 134,786
- 31
- 255
- 325

Sergey Morozov
- 4,528
- 3
- 25
- 39
3
You should add
yarn.resourcemanager.webapp.ui-actions.enabled=true
to your
yarn-site.xml
to enable this button (if its not visible).

haschaw
- 31
- 2