Skip to content

Chef cookbook for pseudo-distributed CDH4 Hadoop installation on single Linux node

License

Notifications You must be signed in to change notification settings

MitinPavel/pseudo_distributed_cdh4

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Play with Hadoop

Description

Installs and configures 4th version of Cloudera’s Distribution Including Apache Hadoop (CDH4) with YARN on a Single Linux Node in Pseudo-distributed mode.

Requirements

Platform

  • Ubuntu

Tested on:

  • Ubuntu 12.04 Precise 3.2.0-23-generic x86_64

Vagrant setup example

# -*- mode: ruby -*-
# vi: set ft=ruby :

VAGRANTFILE_API_VERSION = "2"

Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
  config.vm.box = "precise64"
  config.vm.box_url = "http:https://files.vagrantup.com/precise64.box"

  config.vm.network :forwarded_port, guest: 50070, host: 50070  
  config.vm.network :forwarded_port, guest: 50075, host: 50075  

  config.vm.provision :chef_solo do |chef|
    chef.add_recipe "apt"
    chef.add_recipe "java"
    chef.add_recipe "pseudo_distributed_cdh4"
  end
end

Links

License and Author

Copyright 2013 Pavel Mitin

Licensed under the MIT License (MIT).

About

Chef cookbook for pseudo-distributed CDH4 Hadoop installation on single Linux node

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages