Forge Home

apache_storm

Apache Storm provisioner Module

6,983 downloads

6,448 latest version

5.0 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

  • 1.0.2 (latest)
  • 1.0.1
released Mar 5th 2017
This version is compatible with:
  • Puppet Enterprise 2023.5.x, 2023.4.x, 2023.3.x, 2023.2.x, 2023.1.x, 2023.0.x, 2021.7.x, 2021.6.x, 2021.5.x, 2021.4.x, 2021.3.x, 2021.2.x, 2021.1.x, 2021.0.x, 2019.8.x, 2019.7.x, 2019.5.x, 2019.4.x, 2019.3.x, 2019.2.x, 2019.1.x, 2019.0.x, 2018.1.x, 2017.3.x, 2017.2.x, 2017.1.x, 2016.5.x, 2016.4.x
  • Puppet >= 3.8.0
  • ,

Start using this module

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

Add this module to your Puppetfile:

mod 'christiangda-apache_storm', '1.0.2'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add christiangda-apache_storm
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install christiangda-apache_storm --version 1.0.2

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

Documentation

christiangda/apache_storm — version 1.0.2 Mar 5th 2017

Puppet apache_storm module

Build Status Code Climate Test Coverage Issue Count Puppet Forge Puppet Forge Downloads

Table of Contents

  1. Overview
  2. Module Description - What the module does and why it is useful
  3. Setup - The basics of getting started with apache_storm
  4. Usage - Configuration options and additional functionality
  5. Reference - An under-the-hood peek at what the module is doing and how
  6. Limitations - OS compatibility, etc.
  7. Development - Guide for contributing to the module
  8. Authors - Who is contributing to do it
  9. License

Overview

This is a Puppet module to manage Apache Storm.
With this module you can installs, configures, and manages the Apache Storm services.

This module were designed to work with:

  • Debian OS Family and Redhat OS Family
  • Puppet version >= 3.8.0
  • Apache Storm version >= 1.0.0

How to Install

Execute the following command in your puppet server:

puppet module install christiangda-apache_storm

How to Use

See Usage

Note

You need to take this consideration before start with the module

  • apache_storm module needs that you provison Java by your own way.
  • Verified that you don't not have installed Apache Storm from your OS Package Manager.

Module Description

apache_storm is a module designed to provision Apache Storm from its binary package downloaded from a mirror link. This module was designed to be independent from your system packages, so you need to be sure that you don't have installed Apache Storm from your OS package manager.

By default this module will install Apache Storm in the /opt/apache-storm folder and create two symbolic links: /etc/apache-storm and /var/log/apache-storm. Is very recommended you add a extra volume and mount it in /opt

This module permit you to disable the service management, in case you want to use external tool, like supervisord

Setup

What apache_storm affects

Folders Created:

/opt/apache-storm/
├── current -> /opt/apache-storm/releases/apache-storm-1.0.2
├── releases
│   ├── apache-storm-1.0.1
│   │   ├── bin
│   │   ├── conf
│   │   ├── examples
│   │   ├── external
│   │   ├── extlib
│   │   ├── extlib-daemon
│   │   ├── lib
│   │   ├── log4j2
│   │   ├── logs
│   │   └── public
│   └── apache-storm-1.0.2
│       ├── bin
│       ├── conf
│       ├── examples
│       ├── external
│       ├── extlib
│       ├── extlib-daemon
│       ├── lib
│       ├── log4j2
│       ├── logs
│       └── public
├── sources
│   ├── apache-storm-1.0.1.tar.gz
│   └── apache-storm-1.0.2.tar.gz
└── storm_local_dir

Symbolic links

/etc/apache-storm -> /opt/apache-storm/releases/apache-storm-1.0.2/conf
/var/log/apache-storm -> /opt/apache-storm/releases/apache-storm-1.0.2/logs

Services' files

Debian Family

/etc/init/apache-storm-[nimbus|supervisor|ui|logviewer|drpc].conf

Redhat Family

/etc/systemd/system/apache-storm-[nimbus|supervisor|ui|logviewer|drpc].service

export PATH file

/etc/profile.d/apache-storm.sh

Setup Requirements

This module requires that you provision Java. You can use a Puppet module from puppetforge to do that, or your OS Package manager.

For Java's version and provider see the recommendation in Apache Storm web page

Beginning with apache_storm

Install

Use these steps if you already have a version of the firewall module installed.

puppet module install christiangda-apache_storm

Upgrade

Use these steps if you already have a version of the firewall module installed.

puppet module upgrade christiangda-apache_storm

Usage

Very basic usage

in your manifest file

node 'storm.mynetwork.local' {
  # if you are using puppet's java module
  include java

  # Using this apache_storm module
  include ::apache_storm
  ::apache_storm::service { 'nimbus': }
  ::apache_storm::service { 'ui': }
  ::apache_storm::service { 'supervisor': }
  ::apache_storm::service { 'logviewer': }
  ::apache_storm::service { 'drpc': }
}

Using parameters

in your manifest file

node 'storm-nimbus.mynetwork.local' {
  # if you are using puppet's java module
  include java

  # Using this apache_storm module
  class { 'apache_storm':
    ensure    => 'present',
    version   => '1.0.2',
    repo_base => 'http://apache.claz.org/storm',
    config    => {
      'supervisor.slots.ports'      => [6700, 6701, 6702, 6703, 6704],
      'storm.zookeeper.servers'     => ['zk-01.mynetwork.local', 'zk-02.mynetwork.local', 'zk-03.mynetwork.local'],
      'client.jartransformer.class' => 'org.apache.storm.hack.StormShadeTransformer',
    }
  }

  ::apache_storm::service { 'nimbus':
    manage_service => true,
    service_ensure => 'present',
  }
  ::apache_storm::service { 'ui': }

}

node 'storm-supervisor.mynetwork.local' {
  # if you are using puppet's java module
  include java

  # Using this apache_storm module
  class { 'apache_storm':
    ensure    => 'present',
    version   => '1.0.2',
    repo_base => 'http://apache.claz.org/storm',
    config    => {
      'supervisor.slots.ports'      => [6700, 6701, 6702, 6703, 6704],
      'storm.zookeeper.servers'     => ['zk-01.mynetwork.local', 'zk-02.mynetwork.local', 'zk-03.mynetwork.local'],
      'client.jartransformer.class' => 'org.apache.storm.hack.StormShadeTransformer',
    }
  }

  ::apache_storm::service { 'supervisor':
    manage_service => true,
    service_ensure => 'present',
  }
  ::apache_storm::service { 'logviewer': }
  ::apache_storm::service { 'drpc': }
}

Reference

Limitations

This module were designed to work with:

  • Debian OS Family and Redhat OS Family
  • Puppet version >= 3.8.0
  • Apache Storm version >= 1.0.0

Development / Contributing

  1. Fork it / Clone it (git clone https://github.com/christiangda/puppet-apache_storm.git; cd puppet-apache_storm)
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Install bundler app first (gem install bundler)
  4. Install rubygems dependecies in .vendor folder (bundle install --path .vendor)
  5. Make your changes / improvements / fixes / etc, and of course your Unit Test for new code
  6. Run the tests (bundle exec rubocop && bundle exec rake test)
  7. Commit your changes (git add . && git commit -m 'Added some feature')
  8. Push to the branch (git push origin my-new-feature)
  9. Create new Pull Request

This code has Unit Tests, and was builded using:

Of course, bug reports and suggestions for improvements are always welcome.

You can also support my work on apache_storm via

Donate

Support via Gratipay

Authors

License

This module is released under the Apache License Version 2.0: