- Now tracking the Master Instance ID and Created At timestamp for job flows and steps, via @AuraBorea (Thanks!) #73.
- Fix for issue #69. The AWS region was previously being derived from the placement. With the advent of VPC/subnet IDs being set, placement is not always relevant (as the VPC subnet ID implicitly defines a placement). Since region cannot be derived it is now available directly on
JobFlow. - Fix for issue #79. Removing the ability to set the now deprecated Hadoop version. It is now set via specifying the AMI version. See the EMR docs for more details.
- Building against JRuby 1.8. While I don't necessarily have the resources to optimize for JRuby compatibility (given that I know next to nothing about it :) I'll use this as a canary to tackle any low-hanging issues that may arise.
- Second go at a fix for Issue #60, "Specifying a VPC subnet does not work" as placement and subnet cannot both be specified.
- Fix for Issue #60, "Specifying a VPC subnet does not work".
- Add support for Ruby 2.1.0 and 2.1.1.
- Major/minor bump because of breaking API changes to
Elasticity::BootstrapActiondue to Issue #55. After spending some time deprecating, I realized I don't have the code bandwidth to do it in a way that I would be happy with. Move fast and break things ;) - Dev update: Added
Elasticity::EMR#describe_jobflow_xmlto assist in job flow debugging.
Elasticity::S3DistCpandElasticity::ScriptStepadded to provide easy access to remote copying and arbitrary script execution.Elasticity::EMRcan now autodetect AWS credentials.- Baseline support now is now 1.9.3-p484. Dropped support for Ruby 1.9.2 as it was EOL on 2013/06/01.
- Dev update: No longer using
guard-rspec. - Dev update: Added
unfas an explicit dependency asfogno longer includes it since it's AWS-only.
- Added debugging support via
JobFlow#enable_debugging. Note that this requiresJobFlow#log_urito be set. - Added job flow completion polling via
JobFlow#wait_for_completion. - Added testing to support Ruby 2.0.
- Removed support for REE and 1.8.7 as these are now unsupported versions of Ruby. Common strategy in the Ruby community has been to only perform a minor version bump in this case; Elasticity is following suit.
- Now specifying minor versions in the gemspec. With the release of Ruby 2.0, I'm anticipating breaking changes coming to many gems, and hoping that this mitigates those effects.
- Dev update: guard-rspec added.
- Dev update: All development dependencies now require Ruby >= 1.9.2.
- Dev update: Latest version of Ruby 1.9.2 (p320).
- Dev update: Migrated from .rvmrc => .ruby-version and .ruby-gemset.
- Pull request from Aaron Olson, removing requirement that a
JobFlowhas steps before running. - Updating development to ruby-1.9.3-p385.
- Pull request from Aaron Olson, adding
StreamingStep#arguments.
- Pull request from Aaron Olson, adding
JobFlowStatus#normalized_instance_hours.
- Added
#visible_to_all_userstoJobFlow. Thanks to dstumm for the contribution! - Added
#ended_attoJobFlowStatus. - Added
#durationcalculated field toJobFlowStatus.
- Configuration of Hive installations via
hive_siteis now supported. See the README.md for details.
- When
JobFlow#placementis specified, instances are created in that availability zone. Previously, this setting was only used to derive the EMR API endpoint to connect to (i.e. the region). - Updated development dependencies.
SyncToS3supports S3 region specification.SyncToS3#syncsupports being called with both files and directories.
SyncToS3added to enable one-way asset synchronization.- Generic bootstrap actions are now supported via
BootstrapAction. - If you have several Hadoop bootstrap actions (15 is the current EMR limit), store all of your Hadoop configuration options in a file, ship it up with
SyncToS3and use the newHadoopFileBootstrapActionto point at that file. - If no parameters are passed to
JobFlow.new, it will use the standard AWS environment variables to lookup the access and secret keys -AWS_ACCESS_KEY_IDandAWS_SECRET_ACCESS_KEY. - New dependencies: fog (S3 access), fakefs (filesystem stubbing - development only), timecop (freezing and manipulating time - development only).
- Birthday release! ;)
- Bumped the default version of Hadoop to 1.0.3.
- Amazon now requires the
--hive-versionsargument when installing Hive (thanks to Johannes Wuerbach). JobFlowStatus#master_public_dns_nameis now available (thanks to Johannes Wuerbach).
JobFlownow supports specifying availbility zone instance specification viaJobFlow#placement=.JobFlow::from_jobflow_idnow supports region specification so that jobs created in regions other than us-east-1 can be recreated.
- Hadoop streaming jobs are now supported via
Elasticity::StreamingStep.
JobFlow::from_jobflow_idfactory method added so that you can operate on running job flows (add steps, shutdown, status, etc.) that you didn't start in the same Ruby instance.- Updated to rspec-2.11.
- TASK instance group support added.
- SPOT instance support added for all instance group types.
- Removed name of jar from default name of
CustomJarStepsince the AWS UI already calls it out in a separate column when looking at job flow steps.
2.0 is a rewrite of the simplified API after a year's worth of daily use at Sharethrough. We're investing heavily in our data processing infrastucture and many Elasticity feature ideas have come from those efforts.
In order to move more quickly and support interesting features like a command-line interface, configuration-file-based launching, keep-alive clusters and more - a remodeling of the simplified API was done. This is going to result in breaking changes to the API, hence the bump to 2.0. I hope that most of you were using gem 'elasticity', '~> 1.5' in your Gemfile :)
- The
SimpleJob-based API has been removed in favour of a more modular step-based approach using the "job flow" and "step" vernacular, in line with Amazon's own language. If you're familiar with the AWS UI, using Elasticity will be a bit more straightforward. - The functionality provided by
JobFlowandJobFlowStephas been transitioned toJobFlowStatusandJobFlowStatusSteprespectively, clearing the path for use ofJobFlowandJobFlowStepin job submission.
- When submitting jobs via
JobFlowAPI, it is now possible to specify the version of the AMI, whether or not the cluster is keep-alive, and the subnet ID (for launching into a VPC). Keep in mind that AWS will error out if you specify an unsupported combination of AMI and Hadoop version. - The default version of Hadoop in
JobFlowis now 0.20.205. The previous default was 0.20 in case you'd like to set it yourself. - It is now possible to name Hadoop bootstrap actions, making it easier to understand the actions when looking in the AWS UI after a job is submitted.
- AWS requests are now POSTs (thanks to Menno van der Sman) in order to avoid server-imposed GET request size limits. Rather than maintain two separate code paths for GET and POST, we decided to only support POST as there is no reason to support both.
- Drastic simplification of the testing around EMR submission, reducing LoC (however important that metric is you :) and complexity by ~50%.
- Development dependency updates: updated to ruby-1.9.3-p194 and rspec-2.10. Removed dependency on VCR and WebMock (no longer using either of these).
- Added support for Hadoop bootstrap actions to all job types (Pig, Hive and Custom Jar).
- Added support for REE 1.8.7-2011.12, Ruby 1.9.2 and 1.9.3.
- Updated to the latest versions of all development dependencies (notably VCR 2).
- Added
Elasticity::EMR#describe_jobflow("jobflow_id")for describing a specific job. If you happen to run hundreds of EMR jobs, this makes retrieving jobflow status much faster than usingElasticity::EMR#describe_jobflowSwhich pulls down and parses XML status for hundreds of jobs.
- Added
Elasticity::CustomJarJobfor launching "Custom Jar" jobs.
- Explicitly requiring 'time' (only a problem if you aren't running from within a Rails environment).
Elasticity::JobFlownow exposeslast_state_change_reason.
This release primarily contains contributions from Wouter Broekhof
- The default mode of communication is now via HTTPS.
Elasticity::AwsRequestnew option:secure => true|false(whether to use HTTPS).Elasticity::AwsRequestnew option:region => eu-west-1|...(which region to run the EMR job).Elasticity::EMR#describe_jobflowsnow accepts additional params for filtering the jobflow query (see docs).
HiveJobandPigJobnow support configuring Hadoop options via#add_hadoop_bootstrap_action().
- Shipping up E_PARALLELS Pig variable with each invocation; reasonable default value for PARALLEL based on the number and type of instances configured.
- Added
PigJob!
HiveJobcritical bug fixed, now it works :)- Added
log_uriandaction_on_failureas options toHiveJob. - Added integration tests to
HiveJob.
- Added
HiveJob, a simplified way to launch basic Hive job flows. - Added HISTORY.
- Added LICENSE.
- Released!