elasticity 1.2.3 → 1.3
Sign up to get free protection for your applications and to get access to all the features.
- data/HISTORY.md +37 -0
- data/README.md +10 -1
- data/lib/elasticity/version.rb +1 -1
- metadata +4 -5
- data/HISTORY.mediawiki +0 -30
data/HISTORY.md
ADDED
@@ -0,0 +1,37 @@
|
|
1
|
+
### 1.3 (Contributions from Wouter Broekhof)
|
2
|
+
|
3
|
+
+ The default mode of communication is now via HTTPS.
|
4
|
+
+ Elasticity::AwsRequest new option :secure => true|false (whether to use HTTPS).
|
5
|
+
+ Elasticity::AwsRequest new option :region => eu-west-1|... (which region to run the EMR job).
|
6
|
+
+ Elasticity::EMR#describe_jobflows now accepts additional params for filtering the jobflow query (see docs).
|
7
|
+
|
8
|
+
### 1.2.2
|
9
|
+
|
10
|
+
+ HiveJob and PigJob now support configuring Hadoop options via .add_hadoop_bootstrap_action().
|
11
|
+
|
12
|
+
### 1.2.1
|
13
|
+
|
14
|
+
+ Shipping up E_PARALLELS Pig variable with each invocation; reasonable default value for PARALLEL based on the number and type of instances configured.
|
15
|
+
|
16
|
+
### 1.2
|
17
|
+
|
18
|
+
+ Added PigJob!
|
19
|
+
|
20
|
+
### 1.1.1
|
21
|
+
|
22
|
+
+ HiveJob critical bug fixed, now it works :)
|
23
|
+
+ Added log_uri and action_on_failure as options to HiveJob.
|
24
|
+
+ Added integration tests to HiveJob.
|
25
|
+
|
26
|
+
### 1.1
|
27
|
+
|
28
|
+
+ Added HiveJob, a simplified way to launch basic Hive job flows.
|
29
|
+
+ Added HISTORY.
|
30
|
+
|
31
|
+
### 1.0.1
|
32
|
+
|
33
|
+
+ Added LICENSE.
|
34
|
+
|
35
|
+
### 1.0
|
36
|
+
|
37
|
+
+ Released!
|
data/README.md
CHANGED
@@ -331,4 +331,13 @@ If you're chomping at the bit to initiate some EMR functionality that isn't wrap
|
|
331
331
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
332
332
|
See the License for the specific language governing permissions and
|
333
333
|
limitations under the License.
|
334
|
-
</pre>
|
334
|
+
</pre>
|
335
|
+
|
336
|
+
### Development Notes for Slif
|
337
|
+
|
338
|
+
<pre>
|
339
|
+
rake build # Build lorem-0.0.2.gem into the pkg directory
|
340
|
+
rake install # Build and install lorem-0.0.2.gem into system gems
|
341
|
+
rake release # Create tag v0.0.2 and build
|
342
|
+
# and push lorem-0.0.2.gem to Rubygems
|
343
|
+
</pre>
|
data/lib/elasticity/version.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,12 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: elasticity
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 9
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 1
|
8
|
-
- 2
|
9
8
|
- 3
|
10
|
-
version: 1.
|
9
|
+
version: "1.3"
|
11
10
|
platform: ruby
|
12
11
|
authors:
|
13
12
|
- Robert Slifka
|
@@ -15,7 +14,7 @@ autorequire:
|
|
15
14
|
bindir: bin
|
16
15
|
cert_chain: []
|
17
16
|
|
18
|
-
date: 2011-10-
|
17
|
+
date: 2011-10-10 00:00:00 -07:00
|
19
18
|
default_executable:
|
20
19
|
dependencies:
|
21
20
|
- !ruby/object:Gem::Dependency
|
@@ -164,7 +163,7 @@ files:
|
|
164
163
|
- .rspec
|
165
164
|
- .rvmrc
|
166
165
|
- Gemfile
|
167
|
-
- HISTORY.
|
166
|
+
- HISTORY.md
|
168
167
|
- LICENSE
|
169
168
|
- README.md
|
170
169
|
- Rakefile
|
data/HISTORY.mediawiki
DELETED
@@ -1,30 +0,0 @@
|
|
1
|
-
=== 1.2.2 ===
|
2
|
-
|
3
|
-
* HiveJob and PigJob now support configuring Hadoop options via .add_hadoop_bootstrap_action().
|
4
|
-
|
5
|
-
=== 1.2.1 ===
|
6
|
-
|
7
|
-
* Shipping up E_PARALLELS Pig variable with each invocation; reasonable default value for PARALLEL based on the number and type of instances configured.
|
8
|
-
|
9
|
-
=== 1.2 ===
|
10
|
-
|
11
|
-
* Added PigJob!
|
12
|
-
|
13
|
-
=== 1.1.1 ===
|
14
|
-
|
15
|
-
* HiveJob critical bug fixed, now it works :)
|
16
|
-
* Added log_uri and action_on_failure as options to HiveJob.
|
17
|
-
* Added integration tests to HiveJob.
|
18
|
-
|
19
|
-
=== 1.1 ===
|
20
|
-
|
21
|
-
* Added HiveJob, a simplified way to launch basic Hive job flows.
|
22
|
-
* Added HISTORY.
|
23
|
-
|
24
|
-
=== 1.0.1 ===
|
25
|
-
|
26
|
-
* Added LICENSE.
|
27
|
-
|
28
|
-
=== 1.0 ===
|
29
|
-
|
30
|
-
* Released!
|