Repository is archived
No commit activity in last 3 years
No release in over 3 years
Capistrano 3 plugin that handles updating & deploying a Storm topology.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.5
>= 0

Runtime

 Project Readme

Capistrano::Storm

This gem provides support in Capistrano 3.x for handling the deployment of a Storm Topology.

Plays nicely with capistrano-scm-jenkins.

Installation

Add this line to your application's Gemfile:

gem 'capistrano-storm'

And then execute:

$ bundle

Usage

This Gem requires that your deploy user have passwordless sudo rights to run storm kill and storm jar. See Capistrano’s Authorisation docs for a simple example.

In Capfile:

require 'capistrano/storm'

In your config/deploy.rb:

# Storm Topology to deploy from the current_path
set :deployed_artifact_filename, 'storm-topology.jar'

set :topology_class_name, 'com.et.contacts.storm.topology.ContactNotifyTopology'
set :topology_name, 'contact-change'

# Any additional arguments you want to pass to `storm jar`
set :topology_other_args, '5 4 4 5'

Contributing

  1. Fork it ( http://github.com/evertrue/capistrano-storm/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request