hadoop-ansible/roles/other-services/tasks/hadoop-packages.yml

17 lines
362 B
YAML

---
- name: Install hadoop httpfs. The only way to talk to HDFS when HA is enabled
apt: pkg={{ item }} state={{ hadoop_pkg_state }}
with_items:
- hadoop-httpfs
tags:
- other-services
- hue
- hadoop
- name: Ensure that httpfs is up and running
service: name=hadoop-httpfs state=started
tags:
- other-services
- hue
- hadoop