elasticity 4.0.1 → 4.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/HISTORY.md +4 -0
- data/lib/elasticity.rb +1 -0
- data/lib/elasticity/ganglia_bootstrap_action.rb +12 -0
- data/lib/elasticity/version.rb +1 -1
- data/spec/lib/elasticity/ganglia_bootstrap_action_spec.rb +13 -0
- metadata +5 -2
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
YTFkNWI4Njc2OTcwNjE2ZTk1MzFhZTc2MjIwOWRkOWUzMzA0MDMxYw==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
MWRjZDNkNDAxMmJkNmIzZTM3MWJjMTEwNGNjYzVmMDdmZjA0ZmZkNQ==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
NjQ4YWVmOTMzNmMyYjkxZDM5OGJkZmUyNWJhNWU5YzBlM2RlOTdmNWFhOThi
|
10
|
+
OTJlYThhYTMzNjFhODI3YWJjZjJlNTRlYTYyNjAzYjU1ZDhmZGFhMDViNDg0
|
11
|
+
ZmI0ZmNhZDI3OTUzMTNmOWQyYjZmYzVkM2MxNzQ4MTQ4MDA0ODI=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
Y2I0YmYzZGM4MTZmMWU5NjM0Y2ZiODViZmVkZDZjOTdhOTY1ODg4MWU4NzM0
|
14
|
+
YjM0MWRlMWMwMmZiY2FjYjQ5M2Q2NTM2MjBhZmVjMjA1ZmY2MGQ0NzhjYzI2
|
15
|
+
ZWNkMDUzNzMzNzFhZDEwODcyNjFiM2Y4MDg1NDQwNmE1Yzc4OTA=
|
data/HISTORY.md
CHANGED
@@ -1,3 +1,7 @@
|
|
1
|
+
## 4.0.2 - September 20, 2014
|
2
|
+
|
3
|
+
- Thanks to @jshafton, now with support for Ganglia!
|
4
|
+
|
1
5
|
## 4.0.1 - September 4, 2014
|
2
6
|
|
3
7
|
- Now tracking the Master Instance ID and Created At timestamp for job flows and steps, via @AuraBorea (Thanks!) [#73](https://github.com/rslifka/elasticity/issues/73).
|
data/lib/elasticity.rb
CHANGED
@@ -13,6 +13,7 @@ require 'elasticity/sync_to_s3'
|
|
13
13
|
require 'elasticity/bootstrap_action'
|
14
14
|
require 'elasticity/hadoop_bootstrap_action'
|
15
15
|
require 'elasticity/hadoop_file_bootstrap_action'
|
16
|
+
require 'elasticity/ganglia_bootstrap_action'
|
16
17
|
require 'elasticity/job_flow_step'
|
17
18
|
|
18
19
|
require 'elasticity/looper'
|
data/lib/elasticity/version.rb
CHANGED
@@ -0,0 +1,13 @@
|
|
1
|
+
describe Elasticity::GangliaBootstrapAction do
|
2
|
+
|
3
|
+
subject do
|
4
|
+
Elasticity::GangliaBootstrapAction.new
|
5
|
+
end
|
6
|
+
|
7
|
+
it { should be_a Elasticity::BootstrapAction }
|
8
|
+
|
9
|
+
its(:name) { should == 'Elasticity Bootstrap Action (Install Ganglia)' }
|
10
|
+
its(:arguments) { should == [] }
|
11
|
+
its(:script) { should == 's3://elasticmapreduce/bootstrap-actions/install-ganglia' }
|
12
|
+
|
13
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: elasticity
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.0.
|
4
|
+
version: 4.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Robert Slifka
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-09-
|
11
|
+
date: 2014-09-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rest-client
|
@@ -146,6 +146,7 @@ files:
|
|
146
146
|
- lib/elasticity/bootstrap_action.rb
|
147
147
|
- lib/elasticity/custom_jar_step.rb
|
148
148
|
- lib/elasticity/emr.rb
|
149
|
+
- lib/elasticity/ganglia_bootstrap_action.rb
|
149
150
|
- lib/elasticity/hadoop_bootstrap_action.rb
|
150
151
|
- lib/elasticity/hadoop_file_bootstrap_action.rb
|
151
152
|
- lib/elasticity/hive_step.rb
|
@@ -166,6 +167,7 @@ files:
|
|
166
167
|
- spec/lib/elasticity/bootstrap_action_spec.rb
|
167
168
|
- spec/lib/elasticity/custom_jar_step_spec.rb
|
168
169
|
- spec/lib/elasticity/emr_spec.rb
|
170
|
+
- spec/lib/elasticity/ganglia_bootstrap_action_spec.rb
|
169
171
|
- spec/lib/elasticity/hadoop_bootstrap_action_spec.rb
|
170
172
|
- spec/lib/elasticity/hadoop_file_bootstrap_action_spec.rb
|
171
173
|
- spec/lib/elasticity/hive_step_spec.rb
|
@@ -212,6 +214,7 @@ test_files:
|
|
212
214
|
- spec/lib/elasticity/bootstrap_action_spec.rb
|
213
215
|
- spec/lib/elasticity/custom_jar_step_spec.rb
|
214
216
|
- spec/lib/elasticity/emr_spec.rb
|
217
|
+
- spec/lib/elasticity/ganglia_bootstrap_action_spec.rb
|
215
218
|
- spec/lib/elasticity/hadoop_bootstrap_action_spec.rb
|
216
219
|
- spec/lib/elasticity/hadoop_file_bootstrap_action_spec.rb
|
217
220
|
- spec/lib/elasticity/hive_step_spec.rb
|