DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports Events Over 2 million developers have joined DZone. Join Today! Thanks for visiting DZone today,
Edit Profile Manage Email Subscriptions Moderation Admin Console How to Post to DZone Article Submission Guidelines
View Profile
Sign Out
Refcards
Trend Reports
Events
Zones
Culture and Methodologies Agile Career Development Methodologies Team Management
Data Engineering AI/ML Big Data Data Databases IoT
Software Design and Architecture Cloud Architecture Containers Integration Microservices Performance Security
Coding Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Culture and Methodologies
Agile Career Development Methodologies Team Management
Data Engineering
AI/ML Big Data Data Databases IoT
Software Design and Architecture
Cloud Architecture Containers Integration Microservices Performance Security
Coding
Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance
Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
  1. DZone
  2. Data Engineering
  3. AI/ML
  4. Options for Deploying ML Algorithms to AWS

Options for Deploying ML Algorithms to AWS

Let's explore AWS' options for deploying ML algorithms to the cloud, EMR and SageMaker, as well as the ActivePython AMI by ActiveState.

Christopher Shoe user avatar by
Christopher Shoe
·
Jan. 22, 18 · Analysis
Like (1)
Save
Tweet
Share
5.39K Views

Join the DZone community and get the full member experience.

Join For Free

AWS is a great place for accessing scalable, cheap resources on which to deploy data models.

However, actually using AWS for this purpose can be challenging. If you didn't begin your project on AWS, you have to figure out a way to migrate it there. In addition, you have to determine how to handle the dataset against which you run your algorithm: should you move all of that data into AWS (and deal with the privacy challenges that this raises), just stream the data (which is not cheap), or do something else?

In this article, we’ll examine different solutions for working with data models on AWS. We’ll consider AWS’ own machine learning solutions — specifically, EMR and SageMaker — as well as the ActivePython AMI provided by ActiveState.

AWS EMR

Amazon Elastic MapReduce (EMR) was introduced in April 2009 to automate provisioning of a Hadoop cluster, run and terminate jobs, and handle data transfer between EC2 (VM) and S3 (object storage). It simplifies the management of a Hadoop cluster, making it available to anyone at the click of a button.

EMR offers several preinstalled software packages, including:

  • Hadoop
  • HBase
  • Pig
  • Hive
  • Hue
  • Spark, and many others.  

EMR has supported Spot Instances since 2011. It is recommended that the Task Instance Group only be run on Spot Instances to take advantage of the lower cost while maintaining availability.

EMR pricing is based on the type of instances forming the cluster, and it's divided in tiers. The pricing adds to the cost of spinning up the instances in EC2.

In addition (importantly), costs are calculated in hourly increments, so if you plan to use the cluster for two sessions of half an hour, you should have it up for one hour consecutively instead of spinning it up and down twice.

EMR is not included in the AWS free tier, so it's always a good practice to do some price-checking before you spin up a cluster.

You can use the AWS cost calculator to estimate the cost of a three-node cluster with medium-size instances (m3.xlarge, for example), which comes out to slightly more than one dollar. If you were to keep the cluster alive for a month, that would result in a pretty high price. That's why it's so convenient to spin clusters up and down as they are needed.

EMR is designed to handle data transfer between Amazon EC2 and S3. It is recommended that you use these services when uploading your data. There are multiple options for getting your data from EMR to these instances, but two of the most widely used are AWS Snowball and AWS Kinesis.

AWS Snowball offers a durable and encrypted portable storage device to load streaming data into AWS. AWS will ship the device directly to you, and it can be plugged in directly to your network. Multiple devices can be used in parallel, and are configured to handle up to 50TB of data per device. Once the data is transferred into S3, or any other AWS data storage solution, the data is wiped from the Snowball device.

AWS Kinesis allows the user to capture and load streaming data into Amazon S3, or a variety of other AWS tools such as Redshift. Amazon Kinesis Firehose allows a simple API call to manage Kinesis data streams, and replaces the need to write complex code to capture and load the data. You can create the stream capture via the AWS Management Console and specify which S3 buckets you want as your destination point. Firehose also allows batching, encrypting and compressing to take place before the delivery, which is great for uptime and security. 

Amazon SageMaker

AWS Re:Invent was overwhelmed with talk of automation and serverless solutions, and Amazon SageMaker is a fulfillment of that promise.

SageMaker includes hosted Jupyter notebooks and allows connections into S3, or you can utilize AWS Glue to move data from Amazon RDS, Amazon DynamoDB, and Amazon Redshift into S3 for analysis in your notebook. It is also preconfigured with TensorFlow and Apache MXNet. 

More impressive is its ability to automatically tune your model, while managing all of the underlying infrastructure up to a petabyte scale. Amazon laid this process out nicely in their blog, which includes the image below, providing a quick guide on how to use the application:

Image title

SageMaker also provides a full end-to-end workflow, allowing you to use your existing tools and/or Jupyter Notebooks that are locally stored. You can find more information on how to do this in their documentation.

ActivePython AMI From ActiveState

If you have a Python algorithm to deploy on AWS, the ActivePython AMI from ActiveState is an easy-to-use solution. The AMI includes the latest versions of both Python 2.7 and 3.5, along with all the key Data Science (numpy, scipy, scikit-learn, etc) and Machine Learning packages (TensorFlow, Keras, Pandas, etc) you’ll need.

What may be the most convenient aspect of the ActivePython AMI is that it includes all the typical webdev packages as well, so you can go from creating models to implementing them in applications or services, all within the same stack.

Currently available as a private AMI, it can be run on everything from Micro to Large instances. And because the AMI is 100% compatible with the open source or ActiveState version of Python you may be running on premise, you can choose where to develop which aspects of your solution: in the enterprise or in the cloud.

Conclusion 

The process for deploying machine learning algorithms is cumbersome, often ad hoc, and can be expensive for even the most frugal database administrator. However, Amazon’s focus on serverless solutions hints at a bright future and can lead to a lot fewer headaches. 

AWS Machine learning Data science

Published at DZone with permission of Christopher Shoe, DZone MVB. See the original article here.

Opinions expressed by DZone contributors are their own.

Popular on DZone

  • Data Mesh vs. Data Fabric: A Tale of Two New Data Paradigms
  • How To Avoid “Schema Drift”
  • Problems of Cloud Cost Management: A Socio-Technical Analysis
  • Learning by Doing: An HTTP API With Rust

Comments

Partner Resources

X

ABOUT US

  • About DZone
  • Send feedback
  • Careers
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 600 Park Offices Drive
  • Suite 300
  • Durham, NC 27709
  • support@dzone.com
  • +1 (919) 678-0300

Let's be friends: