Skip to content

tim-d-blue/spark

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

spark Cookbook

Install Apache Spark

Usage

Vagrantfile

  config.vm.provision :chef_solo do |chef|
    chef.log_level = :debug
    chef.cookbooks_path = "cookbooks"
    chef.add_recipe "java::default"
    chef.add_recipe "spark::default"
    chef.json = {
        "spark" => {
            "git_repository" => "https://github.com/apache/spark.git",
            "git_revision" => "refs/tags/v1.0.1-rc2",
            "username" => "vagrant",
            "group" => "vagrant",
            "home" => "/home/vagrant/spark",
            "master_ip" =>"127.0.0.1",
            "master_port" => "7077",
            "master_webui_port" => "8080",
            "workers" => [ "localhost" ]
        }
    }
  end

About

Spark Chef Recipe

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages