Commit 2028eee1 by Gabe Mulley

Modify comments

parent 7e3796d5
...@@ -11,10 +11,6 @@ ...@@ -11,10 +11,6 @@
# Defaults for role hadoop_common # Defaults for role hadoop_common
# #
#
# vars are namespace with the module name.
#
HADOOP_COMMON_VERSION: 2.3.0 HADOOP_COMMON_VERSION: 2.3.0
HADOOP_COMMON_USER_HOME: /home/hadoop HADOOP_COMMON_USER_HOME: /home/hadoop
HADOOP_COMMON_HOME: "{{ HADOOP_COMMON_USER_HOME }}/hadoop" HADOOP_COMMON_HOME: "{{ HADOOP_COMMON_USER_HOME }}/hadoop"
......
...@@ -9,15 +9,6 @@ ...@@ -9,15 +9,6 @@
# #
## ##
# Role includes for role hadoop_common # Role includes for role hadoop_common
#
# Example:
#
# dependencies:
# - {
# role: my_role
# my_role_var0: "foo"
# my_role_var1: "bar"
# }
dependencies: dependencies:
- oraclejdk - oraclejdk
\ No newline at end of file
...@@ -13,12 +13,13 @@ ...@@ -13,12 +13,13 @@
# #
# Overview: # Overview:
# #
# This role installs all hadoop services onto the machine. Note that this should
# be used to configure all machines in a hadoop cluster. It does not perform
# any role-specific actions such as formatting the namenode etc.
# #
# Dependencies: # Dependencies:
# #
# # oraclejdk: Not strictly required, but we tend to trust it more than openjdk.
# Example play:
#
# #
- name: install system packages - name: install system packages
......
...@@ -9,15 +9,6 @@ ...@@ -9,15 +9,6 @@
# #
## ##
# Role includes for role hadoop_master # Role includes for role hadoop_master
#
# Example:
#
# dependencies:
# - {
# role: my_role
# my_role_var0: "foo"
# my_role_var1: "bar"
# }
dependencies: dependencies:
- hadoop_common - hadoop_common
...@@ -13,12 +13,12 @@ ...@@ -13,12 +13,12 @@
# #
# Overview: # Overview:
# #
# Configures the machine to be a Hadoop master node. This generally means that it will
# run the HDFS name node and the yarn resource manager.
# #
# Dependencies: # Dependencies:
# #
# # hadoop_common: this role installs hadoop generically
# Example play:
#
# #
- name: data directories created - name: data directories created
......
---
#
# edX Configuration
#
# github: https://github.com/edx/configuration
# wiki: https://github.com/edx/configuration/wiki
# code style: https://github.com/edx/configuration/wiki/Ansible-Coding-Conventions
# license: https://github.com/edx/configuration/blob/master/LICENSE.TXT
#
#
#
# Handlers for role hive
#
# Overview:
#
#
- name: notify me
debug: msg="stub handler"
...@@ -9,15 +9,6 @@ ...@@ -9,15 +9,6 @@
# #
## ##
# Role includes for role hive # Role includes for role hive
#
# Example:
#
# dependencies:
# - {
# role: my_role
# my_role_var0: "foo"
# my_role_var1: "bar"
# }
dependencies: dependencies:
- hadoop_common - hadoop_common
...@@ -13,13 +13,12 @@ ...@@ -13,13 +13,12 @@
# #
# Overview: # Overview:
# #
# Install and configure Hive.
# #
# Dependencies: # Dependencies:
# #
# # hadoop_common: Hive requires Hadoop to be installed to function properly.
# Example play:
#
#
- name: check if downloaded and extracted - name: check if downloaded and extracted
stat: path={{ HIVE_HOME }} stat: path={{ HIVE_HOME }}
......
---
#
# edX Configuration
#
# github: https://github.com/edx/configuration
# wiki: https://github.com/edx/configuration/wiki
# code style: https://github.com/edx/configuration/wiki/Ansible-Coding-Conventions
# license: https://github.com/edx/configuration/blob/master/LICENSE.TXT
#
#
#
# Handlers for role sqoop
#
# Overview:
#
#
- name: notify me
debug: msg="stub handler"
...@@ -13,13 +13,12 @@ ...@@ -13,13 +13,12 @@
# #
# Overview: # Overview:
# #
# Install and configure Sqoop. This tool is used by the analytics stack to take database snapshots.
# #
# Dependencies: # Dependencies:
# #
# # hadoop_common: Sqoop can distribute snapshotting work out to a cluster of workers, it uses Hadoop to do so.
# Example play:
#
#
- name: check if downloaded and extracted - name: check if downloaded and extracted
stat: path={{ SQOOP_LIB }}/mysql-connector-java-{{ SQOOP_MYSQL_CONNECTOR_VERSION }}-bin.jar stat: path={{ SQOOP_LIB }}/mysql-connector-java-{{ SQOOP_MYSQL_CONNECTOR_VERSION }}-bin.jar
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment