Skip to content

Latest commit

 

History

History
161 lines (96 loc) · 7.81 KB

HISTORY.md

File metadata and controls

161 lines (96 loc) · 7.81 KB

2.7.2

  • Add new volume types (Placed)

2.7.1

  • Add EBS support for EMR nodes (Placed)

2.7.0

  • Remove DescribeJobFlows (Placed)

2.5.6 - February 9, 2013

  • Pull request from Aaron Olson, removing requirement that a JobFlow has steps before running.
  • Updating development to ruby-1.9.3-p385.

2.5.5 - February 3, 2013

  • Pull request from Aaron Olson, adding StreamingStep#arguments.

2.5.4 - February 1, 2013

  • Pull request from Aaron Olson, adding JobFlowStatus#normalized_instance_hours.

2.5.3 - January 16, 2013

  • Added #visible_to_all_users to JobFlow. Thanks to dstumm for the contribution!
  • Added #ended_at to JobFlowStatus.
  • Added #duration calculated field to JobFlowStatus.

2.5.2 - November 29, 2012

  • Configuration of Hive installations via hive_site is now supported. See the README.md for details.

2.5.1 - November 28, 2012

  • When JobFlow#placement is 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.

2.5 - September 29, 2012

  • SyncToS3 supports S3 region specification.
  • SyncToS3#sync supports being called with both files and directories.

2.4 - September 1, 2012

  • SyncToS3 added 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 SyncToS3 and use the new HadoopFileBootstrapAction to 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_ID and AWS_SECRET_ACCESS_KEY.
  • New dependencies: fog (S3 access), fakefs (filesystem stubbing - development only), timecop (freezing and manipulating time - development only).

2.3.1 - August 23, 2012

  • Birthday release! ;)
  • Bumped the default version of Hadoop to 1.0.3.
  • Amazon now requires the --hive-versions argument when installing Hive (thanks to Johannes Wuerbach).
  • JobFlowStatus#master_public_dns_name is now available (thanks to Johannes Wuerbach).

2.3 - July 28, 2012

  • JobFlow now supports specifying availbility zone instance specification via JobFlow#placement=.
  • JobFlow::from_jobflow_id now supports region specification so that jobs created in regions other than us-east-1 can be recreated.

2.2 - July 23, 2012

  • Hadoop streaming jobs are now supported via Elasticity::StreamingStep.

2.1.1 - July 22, 2012

  • JobFlow::from_jobflow_id factory 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.

2.1 - July 7, 2012

  • TASK instance group support added.
  • SPOT instance support added for all instance group types.
  • Removed name of jar from default name of CustomJarStep since the AWS UI already calls it out in a separate column when looking at job flow steps.

2.0 - June 26, 2012

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 :)

API Changes

  • 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 JobFlow and JobFlowStep has been transitioned to JobFlowStatus and JobFlowStatusStep respectively, clearing the path for use of JobFlow and JobFlowStep in job submission.

New Features!

  • When submitting jobs via JobFlow API, 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 JobFlow is 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.

Under The Hood

  • 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).

1.5 - March 5, 2012

  • 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).

1.4.1 - December 17, 2011

  • 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 using Elasticity::EMR#describe_jobflowS which pulls down and parses XML status for hundreds of jobs.

1.4 - December 9, 2011

  • Added Elasticity::CustomJarJob for launching "Custom Jar" jobs.

1.3.1 - November 16, 2011

  • Explicitly requiring 'time' (only a problem if you aren't running from within a Rails environment).
  • Elasticity::JobFlow now exposes last_state_change_reason.

1.3 - October 10, 2011

This release primarily contains contributions from Wouter Broekhof

  • The default mode of communication is now via HTTPS.
  • Elasticity::AwsRequest new option :secure => true|false (whether to use HTTPS).
  • Elasticity::AwsRequest new option :region => eu-west-1|... (which region to run the EMR job).
  • Elasticity::EMR#describe_jobflows now accepts additional params for filtering the jobflow query (see docs).

1.2.2 - May 10, 2011

  • HiveJob and PigJob now support configuring Hadoop options via #add_hadoop_bootstrap_action().

1.2.1 - May 7, 2011

  • Shipping up E_PARALLELS Pig variable with each invocation; reasonable default value for PARALLEL based on the number and type of instances configured.

1.2 - May 4, 2011

  • Added PigJob!

1.1.1 - April 25, 2011

  • HiveJob critical bug fixed, now it works :)
  • Added log_uri and action_on_failure as options to HiveJob.
  • Added integration tests to HiveJob.

1.1 - April 24, 2011

  • Added HiveJob, a simplified way to launch basic Hive job flows.
  • Added HISTORY.

1.0.1 - April 22, 2011

  • Added LICENSE.

1.0 - April 22, 2011

  • Released!