Forge Home

storm

Install Storm cluster.

10,091 downloads

10,091 latest version

0.1 quality score

We run a couple of automated
scans to help you access a
module's quality. Each module is
given a score based on how well
the author has formatted their
code and documentation and
modules are also checked for
malware using VirusTotal.

Please note, the information below
is for guidance only and neither of
these methods should be considered
an endorsement by Puppet.

Version information

  • 0.0.1 (latest)
released Apr 6th 2013

Start using this module

  • r10k or Code Manager
  • Bolt
  • Manual installation
  • Direct download

Add this module to your Puppetfile:

mod 'viirya-storm', '0.0.1'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add viirya-storm
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install viirya-storm --version 0.0.1

Direct download is not typically how you would use a Puppet module to manage your infrastructure, but you may want to download the module in order to inspect the code.

Download
Tags: storm

Documentation

viirya/storm — version 0.0.1 Apr 6th 2013

Puppet module for deploying Storm

This module deploys Storm cluster. It is tested with Storm 0.8.1 under puppet agent/master environment.

Usage

After installing this module in puppet master node, in site.pp, defining:

node 'server1' {
    include java
    include storm::cluster::nimbus
}

node /^server-(2|3)$/ {
    include java
    include storm::cluster::supervisor
}

Downloading Storm package and putting the file under 'files' subdir of this module.

Please also modify parameters such as 'nimbus_host' and 'zookeeper_servers' in manifests/params.pp.

Since this puppet module will launch services on cluster, remember to comment 'storm::cluster::nimbus' and 'storm::cluster::supervisor' lines when the services are launached. Otherwise, there will be duplicate service processes because storm processes seem not to prevent duplicate launching.