際際滷

際際滷Share a Scribd company logo
Who Am I ?
By day:
Technical Program Manager
 National Rural Electric Cooperative Association
 Large 40M+ Angular, Backbone.JS, .Net WebApi
 application
By night
JavaScript Extraordinaire
Co-Founder & Chief Engineer for Hoozip.com
 Angular
 AWS S3
 AWS Lambda
 AWS Api Gateway
 AWS EC2
@javascriptbully
 Mongo
 Express
 Angular
 NodeJS
 AWS
 NodeJS
 Angular
 Lambda
@javascriptbully
Time to get Mean!
?
Who Am I ?
Time to get
A.N.A.L !!!!!
Event-Driven Compute
 As data enters your cloud infrastructure Lambda makes it extremely easy to
transform that data by applying your function to the data based on events you
de鍖ne.
 Examples include data transformation, image transformation, large scale data
analysis. For example, run transformation functions whenever a DynamoDB
table is loaded.
 Ability to scale horizontally across large scale work loads and dynamically then
instantly shrink back once the work is complete.
 100 concurrent executions
 1,000 invokes per second
Quickly build mobile Backends
 AWS mobile SDKs
Lambda offering overview
 Runs code in response to events
 Object uploads to Amazon S3
 Updates to Amazon DynamoDB via Streams
 Data in Amazon Kinesis Streams
 In app activity
 Lambda handles all capacity, scaling, patching and infrastructure administration
 Lambda only runs your code when triggered so you dont have to pay for unused capacity
 Provides realtime metrics and logs to Amazon CloudWatch
 Low cost, No upfront costs
 Code is charged in measurements of 100ms increments
 Python, Java, NodeJs
 Lambda Function (Micro service architecture)
 Prebuilt examples
 Built in support for AWS SDK
 AWS Free Tier you can try Lambda for free
 Security is baked in
Lambda offering overview (界看稼岳d)
AWS Lambda supports the following runtime versions
 Node.js: v0.10.36
 Java: Java 8
 Python: Python 2.7
If you author your Lambda function code in Node.js,
the following libraries are available in the AWS Lambda
execution environment so you don't need to include
them:
 ImageMagick: Installed with default settings. For
versioning information, see imagemagick nodejs
wrapper and ImageMagick native binary
(search for "ImageMagick").
 AWS SDK: AWS SDK for JavaScript version
2.2.32
If you author your Lambda function code in Python, the
following libraries are available in the AWS Lambda
execution environment so you don't need to include
them:
 AWS SDK for Python (Boto 3) version 1.2.3
There are no additional libraries available for Java.
Hoozip Use Case
 Want to send property reports on demand via SMS
 Wanted to follow an event driven, micro service design
 Scale our systems up or down when certain load metrics are hit
 Send out noti鍖cations to owners of properties when their property is requested
 Managing and reacting to all those events would require a complex infrastructure, so
often we simply put them together in one controller action or use observers that run in
the same processes as our applications. This makes the codebase more complex as
parts start getting interwoven.
 Most teams start pushing those tasks into background workers, but the infrastructure
necessary for managing tasks this way is overhead too. Therefore, background
workers are typically limited to the most important tasks. This is especially true when
they dont get automatically triggered by events, but need to be triggered through the
codebase. Doing this adds another level of complexity to the code in order to
understand which part triggers which event.
 It lets you write small NodeJS functions that will be called with the event metadata
from events triggered by various services or through your own code.
Hoozip
 Hoozip.com is a marketplace and software provider for real estate investors
(rehabbers, wholesalers, lenders) to 鍖nd, post, and curate real estate
investment deals in an ef鍖cient way.
What we normally would do
 Size Provision Scale Servers
 Estimate capacity
 Run fault tolerance
 Manage Operating System
Updates
 Apply Security Patches
 Monitor for performance and
availability
 Lambda does the
impedance matching for
your event 鍖ow so you dont
have to worry about over or
under provisioning as
Lambda scales elastically
call twilio
post to ApiGateway
call Lambda
parse message
fuzzy address
geoCode address
call property API
call bitly API
persist to DynamoDB
generate message
post back to twiliosend message
How we did it
* As the API gets busier, well add a queueing / push
noti鍖cation mechanism via SQS & SNS
TEXT YOUR DEAL
ADDRESS
TO HOOZIP!
(202) 798-1333
Hoozip Architecture
 We serve our Angular app out of a S3 Bucket
 We use CloudFront as our CDN for all static assets including
the Angular App
 Most of our services are separate stand alone projects and
handled via Api Gateway and Lambda
 We currently use DynamoDB for persisting and Postgres as
our store for 鍖nancial related actions and some GeoSpatial
calculations.
 When we cant use Lambda (static IP addressing,
computationally heavy work loads) we use EC2 with Node
v4.0, Express, served via Node Forever and NodeMon
LETS CODE!!!!
enough of that
Whats available while programming in Node?
 Lambda Function Handler
 Event Object
 Context Object
 ImageMagick available (Node.js)
 Logging & Monitoring (CloudWatch & CloudTrail)
 Exceptions
 Ephemeral I/O operations while function is executing
 Awesome! But the worst part:
 Node v0.10.36
 http://docs.aws.amazon.com/lambda/latest/dg/current-supported-versions.html
Code via the online code editor, or in your own IDE
 Lets build a simple API that goes out to Github, and gets a user object.
 Heres our Lambda function:
Testing your Lambda function locally
 Easy to test your logic locally
 Easy to turn this into an express module that you can then use
to serve via an api somewhere else so youre not bound to
Lambda if you decide to move at a later date.
Upload your code
 Compress the items in you source
folder.
 Upload the zip 鍖le directly to your
Lamda function via the console.
 Better if you use a task manager like
Gulp that will zip the 鍖le and upload it
for you via the AWS SDK publish API
 I prefer to use Gulp to zip my code, then
upload to S3 so I have artifact
versioning as well. I wrote another
Lambda functions that listens for upload
events on that bucket then imports the
code into my Lambda function.
Now lets create an API in API Gateway
that integrates with our Lambda Function
Lets setup our API to have a query string parameter
called name that we pass into our Lambda Function
Next we map the data retrieved byApi Gateway
to the Event object passed into our Lambda Function
via the mapping template
Lets deploy our Api to a stage called prod!
Staging allows you to create various versions of your
Api for testing, different clients, etc
And were done!
Instantly scalable to millions of users!
Heres my Lambda function that
deploys other Lambda Functions
 Event source for this Lambda function in my S3 bucket where I upload my
Lambda zip 鍖les
 Uses the AWS SDK which is already loaded into memory by AWS.
Pricing Details
 No hourly, daily, monthly minimums
 No per device fees
 Compute time is purchased in 100ms increments
 1M requests and 400,000 GB-s of compute every month for free
 You only pay when youre doing work, not when youre idle.
Requests
You are charged for the total number of requests across all your functions. Lambda counts a request
each time it starts executing in response to an event noti鍖cation or invoke call, including test invokes
from the console.
 First 1 million requests per month are free
 $0.20 per 1 million requests thereafter ($0.0000002 per request)
Duration
Duration is calculated from the time your code begins executing until it returns or otherwise terminates,
rounded up to the nearest 100ms. The price depends on the amount of memory you allocate to your
function. You are charged $0.00001667 for every GB-second used.
Free Tier
The Lambda free tier includes 1M free requests per month and 400,000 GB-seconds of compute time
per month. The memory size you choose for your Lambda functions determines how long they can run in
the free tier. The Lambda free tier does not automatically expire at the end of your 12 month AWS Free
Tier term, but is available to both existing and new AWS customers inde鍖nitely.
Monthly compute charges
The monthly compute price is $0.00001667 per
GB-s and the free tier provides 400,000 GB-s.
Total compute (seconds) = 30M * (0.2sec) =
6,000,000 seconds
Total compute (GB-s) = 6,000,000 * 128MB/1024
= 750,000 GB-s
Total Compute  Free tier compute = Monthly
billable compute seconds
750,000 GB-s  400,000 free tier GB-s = 350,000
GB-s
Monthly compute charges = 350,000 *
$0.00001667 = $5.83
Monthly request charges
The monthly request price is $0.20
per 1 million requests and the free
tier provides 1M requests per month.
Total requests  Free tier request =
Monthly billable requests
30M requests  1M free tier requests
= 29M Monthly billable requests
Monthly request charges = 29M *
$0.2/M = $5.80
Total compute charges
Total charges = Compute charges
+ Request charges = $5.83 + $5.80
= $11.63 per month
Pricing Example
If you allocated 128MB of memory to your function, executed it 30 million times in one month,
and it ran for 200ms each time, your charges would be calculated as follows:
What should you do next?
 Take just one API and turn it into a Lambda function.
 Build a mobile app using the Mobile SDK using Lambda as
your backend
AWS Lambda Presentation (Tech Talk DC)
 Great example of scaling a total of 57 lines of code including error handling to
16 million posts a day.
 Scrub to 26:00 to see the Zillow presentation
https://www.youtube.com/watch?v=ygHGPnAd0Uo
Zillow Use Case (界看稼岳d)
Zillow Use Case (界看稼岳d)
Zillow Use Case (界看稼岳d)
Calling Lambda Functions (extra)
Call from mobile or web apps
- Wait for a response or send an event and continue
- AWS SDK, AWS Mobile, Rest API, CLI
Send events from S3, or SNS
- One event per Lambda invocation, 3 attempts
Process DynamoDB changes records as events:
- Ordered model with multiple records per event
- Unlimited retries (until data expires) or determined by your code
Writing Lambda Functions (extra)
 AWS SDK by default
 Imagemagick for NodeJS Lambdas
 Lambda handles the inbound traf鍖c (no web server)
 Scheduled Functions! (uses cron syntax)
 Allows versioning via a publish API so you can create immutable contracts with your
clients, and you can version via S3
 (Versioning happens via the ARN format FunctionName:ARN or FunctionName:
$LATEST)
 You can alias the ARN, allows for each rollbacks by quickly associating an alias with a
different ARN. You can also version via the API in API Gateway by assigning the
resource to a different Lambda Function.
Stateless
 Use s3, DynamoDB, or any internet based storage to persist data.
 Call other APIs from your Lambda function, or other Lambdas.
 Uses processes, threads, sockets, i/o for 鍖le writing (ephemeral) etc
 You can add your own libraries, no restrictions
Send events from S3, or SNS
- One event per Lambda invocation, 3 attempts
Process DynamoDB changes records as events:
- Ordered model with multiple records per event
- Unlimited retries (until data expires) or determined by your code

More Related Content

Similar to AWS Lambda Presentation (Tech Talk DC) (18)

Serverlessusecase workshop feb3_v2
Serverlessusecase workshop feb3_v2Serverlessusecase workshop feb3_v2
Serverlessusecase workshop feb3_v2
kartraj
Getting Started with AWS Lambda & Serverless Cloud
Getting Started with AWS Lambda & Serverless CloudGetting Started with AWS Lambda & Serverless Cloud
Getting Started with AWS Lambda & Serverless Cloud
Ian Massingham
AWS for Java Developers workshop
AWS for Java Developers workshopAWS for Java Developers workshop
AWS for Java Developers workshop
Rory Preddy
Serverless Meetup - Event Sourcing
Serverless Meetup - Event SourcingServerless Meetup - Event Sourcing
Serverless Meetup - Event Sourcing
Luca Bianchi
AWS for the Java Developer
AWS for the Java DeveloperAWS for the Java Developer
AWS for the Java Developer
Rory Preddy
2016-06 - Design your api management strategy - AWS - Microservices on AWS
2016-06 - Design your api management strategy - AWS - Microservices on AWS2016-06 - Design your api management strategy - AWS - Microservices on AWS
2016-06 - Design your api management strategy - AWS - Microservices on AWS
SmartWave
Serverless architectures on aws
Serverless architectures on awsServerless architectures on aws
Serverless architectures on aws
Paolo latella
Serverless Architectures on AWS Lambda
Serverless Architectures on AWS LambdaServerless Architectures on AWS Lambda
Serverless Architectures on AWS Lambda
Serhat Can
AWS and Serverless with Alexa
AWS and Serverless with AlexaAWS and Serverless with Alexa
AWS and Serverless with Alexa
Rory Preddy
How to Build a Big Data Application: Serverless Edition
How to Build a Big Data Application: Serverless EditionHow to Build a Big Data Application: Serverless Edition
How to Build a Big Data Application: Serverless Edition
ecobold
Aws Lambda and Serverless Cloud
Aws Lambda and Serverless CloudAws Lambda and Serverless Cloud
Aws Lambda and Serverless Cloud
Muhammet Arslan
Introduction to Aws lambda and build first application | Namespace IT
Introduction to Aws lambda and build first application | Namespace ITIntroduction to Aws lambda and build first application | Namespace IT
Introduction to Aws lambda and build first application | Namespace IT
namespaceit
From Serverless to InterCloud
From Serverless to InterCloudFrom Serverless to InterCloud
From Serverless to InterCloud
Wayne Scarano
Serverless design considerations for Cloud Native workloads
Serverless design considerations for Cloud Native workloadsServerless design considerations for Cloud Native workloads
Serverless design considerations for Cloud Native workloads
Tensult
How to Build a Big Data Application: Serverless Edition
How to Build a Big Data Application: Serverless EditionHow to Build a Big Data Application: Serverless Edition
How to Build a Big Data Application: Serverless Edition
Lecole Cole
AWS Lambda Functions A Comprehensive Guide
AWS Lambda Functions A Comprehensive GuideAWS Lambda Functions A Comprehensive Guide
AWS Lambda Functions A Comprehensive Guide
Inexture Solutions
Introduce AWS Lambda for newbie and Non-IT
Introduce AWS Lambda for newbie and Non-ITIntroduce AWS Lambda for newbie and Non-IT
Introduce AWS Lambda for newbie and Non-IT
Chitpong Wuttanan
Serverless applications
Serverless applicationsServerless applications
Serverless applications
mbaric
Serverlessusecase workshop feb3_v2
Serverlessusecase workshop feb3_v2Serverlessusecase workshop feb3_v2
Serverlessusecase workshop feb3_v2
kartraj
Getting Started with AWS Lambda & Serverless Cloud
Getting Started with AWS Lambda & Serverless CloudGetting Started with AWS Lambda & Serverless Cloud
Getting Started with AWS Lambda & Serverless Cloud
Ian Massingham
AWS for Java Developers workshop
AWS for Java Developers workshopAWS for Java Developers workshop
AWS for Java Developers workshop
Rory Preddy
Serverless Meetup - Event Sourcing
Serverless Meetup - Event SourcingServerless Meetup - Event Sourcing
Serverless Meetup - Event Sourcing
Luca Bianchi
AWS for the Java Developer
AWS for the Java DeveloperAWS for the Java Developer
AWS for the Java Developer
Rory Preddy
2016-06 - Design your api management strategy - AWS - Microservices on AWS
2016-06 - Design your api management strategy - AWS - Microservices on AWS2016-06 - Design your api management strategy - AWS - Microservices on AWS
2016-06 - Design your api management strategy - AWS - Microservices on AWS
SmartWave
Serverless architectures on aws
Serverless architectures on awsServerless architectures on aws
Serverless architectures on aws
Paolo latella
Serverless Architectures on AWS Lambda
Serverless Architectures on AWS LambdaServerless Architectures on AWS Lambda
Serverless Architectures on AWS Lambda
Serhat Can
AWS and Serverless with Alexa
AWS and Serverless with AlexaAWS and Serverless with Alexa
AWS and Serverless with Alexa
Rory Preddy
How to Build a Big Data Application: Serverless Edition
How to Build a Big Data Application: Serverless EditionHow to Build a Big Data Application: Serverless Edition
How to Build a Big Data Application: Serverless Edition
ecobold
Aws Lambda and Serverless Cloud
Aws Lambda and Serverless CloudAws Lambda and Serverless Cloud
Aws Lambda and Serverless Cloud
Muhammet Arslan
Introduction to Aws lambda and build first application | Namespace IT
Introduction to Aws lambda and build first application | Namespace ITIntroduction to Aws lambda and build first application | Namespace IT
Introduction to Aws lambda and build first application | Namespace IT
namespaceit
From Serverless to InterCloud
From Serverless to InterCloudFrom Serverless to InterCloud
From Serverless to InterCloud
Wayne Scarano
Serverless design considerations for Cloud Native workloads
Serverless design considerations for Cloud Native workloadsServerless design considerations for Cloud Native workloads
Serverless design considerations for Cloud Native workloads
Tensult
How to Build a Big Data Application: Serverless Edition
How to Build a Big Data Application: Serverless EditionHow to Build a Big Data Application: Serverless Edition
How to Build a Big Data Application: Serverless Edition
Lecole Cole
AWS Lambda Functions A Comprehensive Guide
AWS Lambda Functions A Comprehensive GuideAWS Lambda Functions A Comprehensive Guide
AWS Lambda Functions A Comprehensive Guide
Inexture Solutions
Introduce AWS Lambda for newbie and Non-IT
Introduce AWS Lambda for newbie and Non-ITIntroduce AWS Lambda for newbie and Non-IT
Introduce AWS Lambda for newbie and Non-IT
Chitpong Wuttanan
Serverless applications
Serverless applicationsServerless applications
Serverless applications
mbaric

Recently uploaded (20)

The Rise of AI Agents-From Automation to Autonomous Technology
The Rise of AI Agents-From Automation to Autonomous TechnologyThe Rise of AI Agents-From Automation to Autonomous Technology
The Rise of AI Agents-From Automation to Autonomous Technology
Impelsys Inc.
STRING FUNCTIONS IN JAVA BY N SARATH KUMAR
STRING FUNCTIONS IN JAVA BY N SARATH KUMARSTRING FUNCTIONS IN JAVA BY N SARATH KUMAR
STRING FUNCTIONS IN JAVA BY N SARATH KUMAR
Sarathkumar Narsupalli
Achieving Extreme Scale with ScyllaDB: Tips & Tradeoffs
Achieving Extreme Scale with ScyllaDB: Tips & TradeoffsAchieving Extreme Scale with ScyllaDB: Tips & Tradeoffs
Achieving Extreme Scale with ScyllaDB: Tips & Tradeoffs
ScyllaDB
Getting the Best of TrueDEM April News & Updates
Getting the Best of TrueDEM  April News & UpdatesGetting the Best of TrueDEM  April News & Updates
Getting the Best of TrueDEM April News & Updates
panagenda
How Air Coil Inductors Work By Cet Technology
How Air Coil Inductors Work By Cet TechnologyHow Air Coil Inductors Work By Cet Technology
How Air Coil Inductors Work By Cet Technology
CET Technology
All-Data, Any-AI Integration: FME & Amazon Bedrock in the Real-World
All-Data, Any-AI Integration: FME & Amazon Bedrock in the Real-WorldAll-Data, Any-AI Integration: FME & Amazon Bedrock in the Real-World
All-Data, Any-AI Integration: FME & Amazon Bedrock in the Real-World
Safe Software
Testing Tools for Accessibility Enhancement Part II.pptx
Testing Tools for Accessibility Enhancement Part II.pptxTesting Tools for Accessibility Enhancement Part II.pptx
Testing Tools for Accessibility Enhancement Part II.pptx
Julia Undeutsch
Dev Dives: Unleash the power of macOS Automation with UiPath
Dev Dives: Unleash the power of macOS Automation with UiPathDev Dives: Unleash the power of macOS Automation with UiPath
Dev Dives: Unleash the power of macOS Automation with UiPath
UiPathCommunity
GDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AI
GDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AIGDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AI
GDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AI
James Anderson
Scalable Multi-Agent AI with AutoGen by Udai
Scalable Multi-Agent AI with AutoGen by UdaiScalable Multi-Agent AI with AutoGen by Udai
Scalable Multi-Agent AI with AutoGen by Udai
Udaiappa Ramachandran
UiPath Agentic automation with Autopilot for everyone + new features/releases
UiPath Agentic  automation with Autopilot for everyone + new features/releasesUiPath Agentic  automation with Autopilot for everyone + new features/releases
UiPath Agentic automation with Autopilot for everyone + new features/releases
DianaGray10
Build with AI on Google Cloud Session #5
Build with AI on Google Cloud Session #5Build with AI on Google Cloud Session #5
Build with AI on Google Cloud Session #5
Margaret Maynard-Reid
SAP Automation with UiPath: SAP Test Automation - Part 5 of 8
SAP Automation with UiPath: SAP Test Automation - Part 5 of 8SAP Automation with UiPath: SAP Test Automation - Part 5 of 8
SAP Automation with UiPath: SAP Test Automation - Part 5 of 8
DianaGray10
Benefits of Moving Ellucian Banner to Oracle Cloud
Benefits of Moving Ellucian Banner to Oracle CloudBenefits of Moving Ellucian Banner to Oracle Cloud
Benefits of Moving Ellucian Banner to Oracle Cloud
AstuteBusiness
Columbia Weather Systems - Product Overview
Columbia Weather Systems - Product OverviewColumbia Weather Systems - Product Overview
Columbia Weather Systems - Product Overview
Columbia Weather Systems
build-with-ai-sydney AI for web devs Tamas Piros
build-with-ai-sydney AI for web devs Tamas Pirosbuild-with-ai-sydney AI for web devs Tamas Piros
build-with-ai-sydney AI for web devs Tamas Piros
Geshan Manandhar
How AWS Encryption Key Options Impact Your Security and Compliance
How AWS Encryption Key Options Impact Your Security and ComplianceHow AWS Encryption Key Options Impact Your Security and Compliance
How AWS Encryption Key Options Impact Your Security and Compliance
Chris Bingham
When Platform Engineers meet SREs - The Birth of O11y-as-a-Service Superpowers
When Platform Engineers meet SREs - The Birth of O11y-as-a-Service SuperpowersWhen Platform Engineers meet SREs - The Birth of O11y-as-a-Service Superpowers
When Platform Engineers meet SREs - The Birth of O11y-as-a-Service Superpowers
Eric D. Schabell
SAP Business Data Cloud: Was die neue SAP-L旦sung f端r Unternehmen und ihre Dat...
SAP Business Data Cloud: Was die neue SAP-L旦sung f端r Unternehmen und ihre Dat...SAP Business Data Cloud: Was die neue SAP-L旦sung f端r Unternehmen und ihre Dat...
SAP Business Data Cloud: Was die neue SAP-L旦sung f端r Unternehmen und ihre Dat...
IBsolution GmbH
The Road to SAP S4HANA Cloud with SAP Activate.pptx
The Road to SAP S4HANA Cloud with SAP Activate.pptxThe Road to SAP S4HANA Cloud with SAP Activate.pptx
The Road to SAP S4HANA Cloud with SAP Activate.pptx
zsbaranyai
The Rise of AI Agents-From Automation to Autonomous Technology
The Rise of AI Agents-From Automation to Autonomous TechnologyThe Rise of AI Agents-From Automation to Autonomous Technology
The Rise of AI Agents-From Automation to Autonomous Technology
Impelsys Inc.
STRING FUNCTIONS IN JAVA BY N SARATH KUMAR
STRING FUNCTIONS IN JAVA BY N SARATH KUMARSTRING FUNCTIONS IN JAVA BY N SARATH KUMAR
STRING FUNCTIONS IN JAVA BY N SARATH KUMAR
Sarathkumar Narsupalli
Achieving Extreme Scale with ScyllaDB: Tips & Tradeoffs
Achieving Extreme Scale with ScyllaDB: Tips & TradeoffsAchieving Extreme Scale with ScyllaDB: Tips & Tradeoffs
Achieving Extreme Scale with ScyllaDB: Tips & Tradeoffs
ScyllaDB
Getting the Best of TrueDEM April News & Updates
Getting the Best of TrueDEM  April News & UpdatesGetting the Best of TrueDEM  April News & Updates
Getting the Best of TrueDEM April News & Updates
panagenda
How Air Coil Inductors Work By Cet Technology
How Air Coil Inductors Work By Cet TechnologyHow Air Coil Inductors Work By Cet Technology
How Air Coil Inductors Work By Cet Technology
CET Technology
All-Data, Any-AI Integration: FME & Amazon Bedrock in the Real-World
All-Data, Any-AI Integration: FME & Amazon Bedrock in the Real-WorldAll-Data, Any-AI Integration: FME & Amazon Bedrock in the Real-World
All-Data, Any-AI Integration: FME & Amazon Bedrock in the Real-World
Safe Software
Testing Tools for Accessibility Enhancement Part II.pptx
Testing Tools for Accessibility Enhancement Part II.pptxTesting Tools for Accessibility Enhancement Part II.pptx
Testing Tools for Accessibility Enhancement Part II.pptx
Julia Undeutsch
Dev Dives: Unleash the power of macOS Automation with UiPath
Dev Dives: Unleash the power of macOS Automation with UiPathDev Dives: Unleash the power of macOS Automation with UiPath
Dev Dives: Unleash the power of macOS Automation with UiPath
UiPathCommunity
GDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AI
GDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AIGDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AI
GDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AI
James Anderson
Scalable Multi-Agent AI with AutoGen by Udai
Scalable Multi-Agent AI with AutoGen by UdaiScalable Multi-Agent AI with AutoGen by Udai
Scalable Multi-Agent AI with AutoGen by Udai
Udaiappa Ramachandran
UiPath Agentic automation with Autopilot for everyone + new features/releases
UiPath Agentic  automation with Autopilot for everyone + new features/releasesUiPath Agentic  automation with Autopilot for everyone + new features/releases
UiPath Agentic automation with Autopilot for everyone + new features/releases
DianaGray10
Build with AI on Google Cloud Session #5
Build with AI on Google Cloud Session #5Build with AI on Google Cloud Session #5
Build with AI on Google Cloud Session #5
Margaret Maynard-Reid
SAP Automation with UiPath: SAP Test Automation - Part 5 of 8
SAP Automation with UiPath: SAP Test Automation - Part 5 of 8SAP Automation with UiPath: SAP Test Automation - Part 5 of 8
SAP Automation with UiPath: SAP Test Automation - Part 5 of 8
DianaGray10
Benefits of Moving Ellucian Banner to Oracle Cloud
Benefits of Moving Ellucian Banner to Oracle CloudBenefits of Moving Ellucian Banner to Oracle Cloud
Benefits of Moving Ellucian Banner to Oracle Cloud
AstuteBusiness
Columbia Weather Systems - Product Overview
Columbia Weather Systems - Product OverviewColumbia Weather Systems - Product Overview
Columbia Weather Systems - Product Overview
Columbia Weather Systems
build-with-ai-sydney AI for web devs Tamas Piros
build-with-ai-sydney AI for web devs Tamas Pirosbuild-with-ai-sydney AI for web devs Tamas Piros
build-with-ai-sydney AI for web devs Tamas Piros
Geshan Manandhar
How AWS Encryption Key Options Impact Your Security and Compliance
How AWS Encryption Key Options Impact Your Security and ComplianceHow AWS Encryption Key Options Impact Your Security and Compliance
How AWS Encryption Key Options Impact Your Security and Compliance
Chris Bingham
When Platform Engineers meet SREs - The Birth of O11y-as-a-Service Superpowers
When Platform Engineers meet SREs - The Birth of O11y-as-a-Service SuperpowersWhen Platform Engineers meet SREs - The Birth of O11y-as-a-Service Superpowers
When Platform Engineers meet SREs - The Birth of O11y-as-a-Service Superpowers
Eric D. Schabell
SAP Business Data Cloud: Was die neue SAP-L旦sung f端r Unternehmen und ihre Dat...
SAP Business Data Cloud: Was die neue SAP-L旦sung f端r Unternehmen und ihre Dat...SAP Business Data Cloud: Was die neue SAP-L旦sung f端r Unternehmen und ihre Dat...
SAP Business Data Cloud: Was die neue SAP-L旦sung f端r Unternehmen und ihre Dat...
IBsolution GmbH
The Road to SAP S4HANA Cloud with SAP Activate.pptx
The Road to SAP S4HANA Cloud with SAP Activate.pptxThe Road to SAP S4HANA Cloud with SAP Activate.pptx
The Road to SAP S4HANA Cloud with SAP Activate.pptx
zsbaranyai

AWS Lambda Presentation (Tech Talk DC)

  • 1. Who Am I ? By day: Technical Program Manager National Rural Electric Cooperative Association Large 40M+ Angular, Backbone.JS, .Net WebApi application By night JavaScript Extraordinaire Co-Founder & Chief Engineer for Hoozip.com Angular AWS S3 AWS Lambda AWS Api Gateway AWS EC2 @javascriptbully
  • 2. Mongo Express Angular NodeJS AWS NodeJS Angular Lambda @javascriptbully Time to get Mean! ? Who Am I ?
  • 4. Event-Driven Compute As data enters your cloud infrastructure Lambda makes it extremely easy to transform that data by applying your function to the data based on events you de鍖ne. Examples include data transformation, image transformation, large scale data analysis. For example, run transformation functions whenever a DynamoDB table is loaded. Ability to scale horizontally across large scale work loads and dynamically then instantly shrink back once the work is complete. 100 concurrent executions 1,000 invokes per second Quickly build mobile Backends AWS mobile SDKs
  • 5. Lambda offering overview Runs code in response to events Object uploads to Amazon S3 Updates to Amazon DynamoDB via Streams Data in Amazon Kinesis Streams In app activity Lambda handles all capacity, scaling, patching and infrastructure administration Lambda only runs your code when triggered so you dont have to pay for unused capacity Provides realtime metrics and logs to Amazon CloudWatch Low cost, No upfront costs Code is charged in measurements of 100ms increments Python, Java, NodeJs Lambda Function (Micro service architecture) Prebuilt examples Built in support for AWS SDK AWS Free Tier you can try Lambda for free Security is baked in
  • 6. Lambda offering overview (界看稼岳d) AWS Lambda supports the following runtime versions Node.js: v0.10.36 Java: Java 8 Python: Python 2.7 If you author your Lambda function code in Node.js, the following libraries are available in the AWS Lambda execution environment so you don't need to include them: ImageMagick: Installed with default settings. For versioning information, see imagemagick nodejs wrapper and ImageMagick native binary (search for "ImageMagick"). AWS SDK: AWS SDK for JavaScript version 2.2.32 If you author your Lambda function code in Python, the following libraries are available in the AWS Lambda execution environment so you don't need to include them: AWS SDK for Python (Boto 3) version 1.2.3 There are no additional libraries available for Java.
  • 7. Hoozip Use Case Want to send property reports on demand via SMS Wanted to follow an event driven, micro service design Scale our systems up or down when certain load metrics are hit Send out noti鍖cations to owners of properties when their property is requested Managing and reacting to all those events would require a complex infrastructure, so often we simply put them together in one controller action or use observers that run in the same processes as our applications. This makes the codebase more complex as parts start getting interwoven. Most teams start pushing those tasks into background workers, but the infrastructure necessary for managing tasks this way is overhead too. Therefore, background workers are typically limited to the most important tasks. This is especially true when they dont get automatically triggered by events, but need to be triggered through the codebase. Doing this adds another level of complexity to the code in order to understand which part triggers which event. It lets you write small NodeJS functions that will be called with the event metadata from events triggered by various services or through your own code.
  • 8. Hoozip Hoozip.com is a marketplace and software provider for real estate investors (rehabbers, wholesalers, lenders) to 鍖nd, post, and curate real estate investment deals in an ef鍖cient way.
  • 9. What we normally would do Size Provision Scale Servers Estimate capacity Run fault tolerance Manage Operating System Updates Apply Security Patches Monitor for performance and availability Lambda does the impedance matching for your event 鍖ow so you dont have to worry about over or under provisioning as Lambda scales elastically
  • 10. call twilio post to ApiGateway call Lambda parse message fuzzy address geoCode address call property API call bitly API persist to DynamoDB generate message post back to twiliosend message How we did it * As the API gets busier, well add a queueing / push noti鍖cation mechanism via SQS & SNS
  • 11. TEXT YOUR DEAL ADDRESS TO HOOZIP! (202) 798-1333
  • 12. Hoozip Architecture We serve our Angular app out of a S3 Bucket We use CloudFront as our CDN for all static assets including the Angular App Most of our services are separate stand alone projects and handled via Api Gateway and Lambda We currently use DynamoDB for persisting and Postgres as our store for 鍖nancial related actions and some GeoSpatial calculations. When we cant use Lambda (static IP addressing, computationally heavy work loads) we use EC2 with Node v4.0, Express, served via Node Forever and NodeMon
  • 14. Whats available while programming in Node? Lambda Function Handler Event Object Context Object ImageMagick available (Node.js) Logging & Monitoring (CloudWatch & CloudTrail) Exceptions Ephemeral I/O operations while function is executing Awesome! But the worst part: Node v0.10.36 http://docs.aws.amazon.com/lambda/latest/dg/current-supported-versions.html
  • 15. Code via the online code editor, or in your own IDE Lets build a simple API that goes out to Github, and gets a user object. Heres our Lambda function:
  • 16. Testing your Lambda function locally Easy to test your logic locally Easy to turn this into an express module that you can then use to serve via an api somewhere else so youre not bound to Lambda if you decide to move at a later date.
  • 17. Upload your code Compress the items in you source folder. Upload the zip 鍖le directly to your Lamda function via the console. Better if you use a task manager like Gulp that will zip the 鍖le and upload it for you via the AWS SDK publish API I prefer to use Gulp to zip my code, then upload to S3 so I have artifact versioning as well. I wrote another Lambda functions that listens for upload events on that bucket then imports the code into my Lambda function.
  • 18. Now lets create an API in API Gateway that integrates with our Lambda Function
  • 19. Lets setup our API to have a query string parameter called name that we pass into our Lambda Function
  • 20. Next we map the data retrieved byApi Gateway to the Event object passed into our Lambda Function via the mapping template
  • 21. Lets deploy our Api to a stage called prod! Staging allows you to create various versions of your Api for testing, different clients, etc
  • 22. And were done! Instantly scalable to millions of users!
  • 23. Heres my Lambda function that deploys other Lambda Functions Event source for this Lambda function in my S3 bucket where I upload my Lambda zip 鍖les Uses the AWS SDK which is already loaded into memory by AWS.
  • 24. Pricing Details No hourly, daily, monthly minimums No per device fees Compute time is purchased in 100ms increments 1M requests and 400,000 GB-s of compute every month for free You only pay when youre doing work, not when youre idle. Requests You are charged for the total number of requests across all your functions. Lambda counts a request each time it starts executing in response to an event noti鍖cation or invoke call, including test invokes from the console. First 1 million requests per month are free $0.20 per 1 million requests thereafter ($0.0000002 per request) Duration Duration is calculated from the time your code begins executing until it returns or otherwise terminates, rounded up to the nearest 100ms. The price depends on the amount of memory you allocate to your function. You are charged $0.00001667 for every GB-second used. Free Tier The Lambda free tier includes 1M free requests per month and 400,000 GB-seconds of compute time per month. The memory size you choose for your Lambda functions determines how long they can run in the free tier. The Lambda free tier does not automatically expire at the end of your 12 month AWS Free Tier term, but is available to both existing and new AWS customers inde鍖nitely.
  • 25. Monthly compute charges The monthly compute price is $0.00001667 per GB-s and the free tier provides 400,000 GB-s. Total compute (seconds) = 30M * (0.2sec) = 6,000,000 seconds Total compute (GB-s) = 6,000,000 * 128MB/1024 = 750,000 GB-s Total Compute Free tier compute = Monthly billable compute seconds 750,000 GB-s 400,000 free tier GB-s = 350,000 GB-s Monthly compute charges = 350,000 * $0.00001667 = $5.83 Monthly request charges The monthly request price is $0.20 per 1 million requests and the free tier provides 1M requests per month. Total requests Free tier request = Monthly billable requests 30M requests 1M free tier requests = 29M Monthly billable requests Monthly request charges = 29M * $0.2/M = $5.80 Total compute charges Total charges = Compute charges + Request charges = $5.83 + $5.80 = $11.63 per month Pricing Example If you allocated 128MB of memory to your function, executed it 30 million times in one month, and it ran for 200ms each time, your charges would be calculated as follows:
  • 26. What should you do next? Take just one API and turn it into a Lambda function. Build a mobile app using the Mobile SDK using Lambda as your backend
  • 28. Great example of scaling a total of 57 lines of code including error handling to 16 million posts a day. Scrub to 26:00 to see the Zillow presentation https://www.youtube.com/watch?v=ygHGPnAd0Uo
  • 29. Zillow Use Case (界看稼岳d)
  • 30. Zillow Use Case (界看稼岳d)
  • 31. Zillow Use Case (界看稼岳d)
  • 32. Calling Lambda Functions (extra) Call from mobile or web apps - Wait for a response or send an event and continue - AWS SDK, AWS Mobile, Rest API, CLI Send events from S3, or SNS - One event per Lambda invocation, 3 attempts Process DynamoDB changes records as events: - Ordered model with multiple records per event - Unlimited retries (until data expires) or determined by your code
  • 33. Writing Lambda Functions (extra) AWS SDK by default Imagemagick for NodeJS Lambdas Lambda handles the inbound traf鍖c (no web server) Scheduled Functions! (uses cron syntax) Allows versioning via a publish API so you can create immutable contracts with your clients, and you can version via S3 (Versioning happens via the ARN format FunctionName:ARN or FunctionName: $LATEST) You can alias the ARN, allows for each rollbacks by quickly associating an alias with a different ARN. You can also version via the API in API Gateway by assigning the resource to a different Lambda Function. Stateless Use s3, DynamoDB, or any internet based storage to persist data. Call other APIs from your Lambda function, or other Lambdas. Uses processes, threads, sockets, i/o for 鍖le writing (ephemeral) etc You can add your own libraries, no restrictions Send events from S3, or SNS - One event per Lambda invocation, 3 attempts Process DynamoDB changes records as events: - Ordered model with multiple records per event - Unlimited retries (until data expires) or determined by your code