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

22 lines
475 B
YAML

---
- name: Install the prerequisite packages
apt: pkg={{ item }} state={{ hadoop_pkg_state }}
with_items:
- hive
- libpostgresql-jdbc-java
tags:
- other-services
- hive
# The services are started by the post installation scripts, but they will fail
- name: Install the hive packages
apt: pkg={{ item }} state={{ hadoop_pkg_state }}
with_items:
- hive-metastore
- hive-server2
ignore_errors: True
tags:
- other-services
- hive