This will install a single node hadoop cluster on a machine with single command. This is intended as use for a dev setup or simple testing.
- This is part of NeverwinterDP the Data Pipeline for Hadoop
- Looking for help adding Ubuntu Support
- Two Methods
- Remote - One liner from Github
- Local - From local copy of the repo
curl -sSL https://raw.githubusercontent.com/DemandCube/hadoop-single-node-cluster/master/INSTALL-HADOOP | bash -s -- -r
git clone https://github.com/DemandCube/hadoop-single-node-cluster.git
cd hadoop-single-node-cluster
./INSTALL-HADOOP
NOTE: Meant to be run as root
A blueprint defines the logical structure of a cluster, without needing informations about the actual infrastructure. Therefore you can use the same blueprint for different amount of nodes, different IPs and different domain names.
The component names are Ambari specific, for convenience you can find the the HDP-2.1 services with their components below.
- HDFS - DATANODE, HDFS_CLIENT, JOURNALNODE, NAMENODE, SECONDARY_NAMENODE, ZKFC
- YARN - APP_TIMELINE_SERVER, NODEMANAGER, RESOURCEMANAGER, YARN_CLIENT
- MAPREDUCE2 - HISTORYSERVER, MAPREDUCE2_CLIENT
- GANGLIA - GANGLIA_MONITOR, GANGLIA_SERVER
- HBASE - HBASE_CLIENT, HBASE_MASTER, HBASE_REGIONSERVER
- HIVE - HIVE_CLIENT, HIVE_METASTORE, HIVE_SERVER, MYSQL_SERVER
- HCATALOG - HCAT
- WEBHCAT - WEBHCAT_SERVER
- NAGIOS - NAGIOS_SERVER
- OOZIE - OOZIE_CLIENT, OOZIE_SERVER
- PIG - PIG
- SQOOP - SQOOP
- STORM - DRPC_SERVER, NIMBUS, STORM_REST_API, STORM_UI_SERVER, SUPERVISOR
- TEZ - TEZ_CLIENT
- FALCON - FALCON_CLIENT, FALCON_SERVER
- ZOOKEEPER - ZOOKEEPER_CLIENT, ZOOKEEPER_SERVER
- CentOS 6.5
Should be good on RED-HAT Family of Distros
ENVIRONMENTS (Been tested on)
- vagrant (centos 6.5 x86_64)
- ec2 (centos 6.5 x86_64)
- digitalocean (centos 6.5 x86_64)
Usage: INSTALL-HADOOP [-rf]
This will
-r, (Optional) REMOTE - Pulls all templates as remote
-f, (Optional) FORCE - Forces in install if less them 4 gigs of ram
See the [NeverwinterDP Guide to Contributing] (https://github.com/DemandCube/NeverwinterDP#how-to-contribute)