This cookbook installs the MapR Spark packages, and will integrate spark master and spark history server with the mapr warden if appropriate.
This cookbook requires the mapr_installation cookbook, located at https://github.com/ericdward100/mapr_installation.
Additionally, this cookbook a running MapR cluster, and assumes that the user used the mapr_installation cookbook to install the MapR cluster, and uses attributes from this cookbook to configure Spark. If a different method was utilized, this cookbook may work as long as the attributes from mapr_installation are correct.
The below specifies whether spark is standalone or uses yarn. Acceptable values are 'yarn' and 'standalone'
default[:mapr][:spark_type] = "yarn"
#NOTE: The below all REQUIRE FQDN's for their entries
default[:mapr][:install_spark] = "yes"
#The below only matters if the above is 'standalone' default[:mapr][:spark_master] = "ip-172-16-9-225.ec2.internal" default[:mapr][:spark_history] = "ip-172-16-9-225.ec2.internal" e.g.
Provided that the attributes from this cookbook and mapr_installation are set, just include mapr_spark_installation
in your node's run_list
:
{
"name":"my_node",
"run_list": [
"recipe[mapr_spark_installation]"
]
}
TODO: (optional) If this is a public cookbook, detail the process for contributing. If this is a private cookbook, remove this section.
e.g.
- Fork the repository on Github
- Create a named feature branch (like
add_component_x
) - Write your change
- Write tests for your change (if applicable)
- Run the tests, ensuring they all pass
- Submit a Pull Request using Github
Authors: TODO: List authors