real-time data processing using aws lambda - september webinar series

24
© 2016, Amazon Web Services, Inc. or its Affiliates. All rights reserved. Cecilia Deng Software Engineer AWS Lambda Stream Processing

Upload: amazon-web-services

Post on 16-Apr-2017

704 views

Category:

Technology


2 download

TRANSCRIPT

Page 1: Real-Time Data Processing Using AWS Lambda - September Webinar Series

© 2016, Amazon Web Services, Inc. or its Affiliates. All rights reserved.

Cecilia DengSoftware Engineer

AWS Lambda Stream Processing

Page 2: Real-Time Data Processing Using AWS Lambda - September Webinar Series

Agenda

Overview of Lambda

Overview of Kinesis to Lambda event source

Configuring the event source

Lambda side processing

Page 3: Real-Time Data Processing Using AWS Lambda - September Webinar Series

AWS Lambda: Overview

Lambda functions: a piece of code with stateless execution

Triggered by events:• Direct Sync and Async API calls• AWS Service integrations• 3rd party triggers• And many more …

Makes it easy to:• Perform data-driven auditing, analysis, and notification • Build back-end services that perform at scale

Page 4: Real-Time Data Processing Using AWS Lambda - September Webinar Series

Amazon Kinesis: Overview

Real-time Ingest

Highly Scalable

Durable

Replay-able Reads

Continuous Processing

GetShardIterator and GetRecords(ShardIterator)

Allows checkpointing/ replay

Enables multi concurrent processing

KCL, Firehose, Analytics, Lambda

• Managed Service - makes it easy to provision, deploy, manage your stream• Low end-to-end (real time) latency• Pay as you go, no upfront cost• Enables data movement to many stores or processing engines

Page 5: Real-Time Data Processing Using AWS Lambda - September Webinar Series

Data Processing/Streaming Architecture & Workflow

Smart Devices

Click Stream

Log Data

Page 6: Real-Time Data Processing Using AWS Lambda - September Webinar Series

AWS Lambda and Amazon Kinesis integration

How it Works

Pull event source model: ▪ Kinesis mapped as Event Source in Lambda▪ Lambda polls the stream and batches available records ▪ Batches are passed for invocation to Lambda through function

parameters

What this means:▪ Fleet of pollers running a flavor of KCL▪ No resource policy

Page 7: Real-Time Data Processing Using AWS Lambda - September Webinar Series

AWS Lambda and Amazon Kinesis integration

Event structure: ▪ Event received by Lambda function is a collection of records

from Kinesis stream

Page 8: Real-Time Data Processing Using AWS Lambda - September Webinar Series

AWS Lambda and Amazon Kinesis integration

Synchronous invocation: ▪ Lambda invoked as synchronous RequestResponse type▪ Lambda honors Kinesis at least once semantics▪ Each shard blocks on in order synchronous invocation

Page 9: Real-Time Data Processing Using AWS Lambda - September Webinar Series

AWS Lambda and Amazon Kinesis integration

• Multiple functions can be mapped to one stream

• Multiple streams can be mapped to one Lambda function

• Each mapping is a unique key pair Kinesis stream to Lambda function

• Each mapping has unique shard iterators

Amazon Kinesis

1

AWS Lambda

1

Amazon CloudWatc

h

AmazonDynamo

DB

AWS Lambda

2Amazo

nS3Amazon

Kinesis 2

Page 10: Real-Time Data Processing Using AWS Lambda - September Webinar Series

DEMO

Page 11: Real-Time Data Processing Using AWS Lambda - September Webinar Series

Creating a Kinesis streamStreams ▪Made up of Shards▪Each Shard supports writes up to 1MB/s▪Each Shard supports reads up to 2MB/sacross maximum 5 transactions/s

Data▪ All data is stored and replayable for 24 hours▪ A Partition Key is supplied by producer and used to distribute the PUTs across

Shards (using MD5 function to hash to 128-bit integers)▪ A unique Sequence # is returned to the Producer upon a successful PUT call▪ Make sure partition key distribution is even to optimize parallel throughput▪ Pick a key with more groups than shards

Page 12: Real-Time Data Processing Using AWS Lambda - September Webinar Series

Creating a Lambda function

Memory: ▪ CPU and disk proportional to the memory configured▪ Increasing memory makes your code execute faster (if CPU

bound)▪ Increasing memory allows for larger record sizes processed

Timeout: ▪ Increasing timeout allows for longer functions, but more wait in case of

errorsRetries:

▪ For Kinesis, Lambda retries until the data expires (default 24 hours)Permission model:

• The execution role defined for Lambda must have permission to access the stream

Page 13: Real-Time Data Processing Using AWS Lambda - September Webinar Series

Configuring the Event Source

Batch size: ▪ Max number of records that Lambda will send to one invocation▪ Not equivalent to how many records Lambda will poll▪ Effective batch size is every 250 ms

MIN(records available, batch size, 6MB)▪ Increasing batch size allows fewer Lambda function invocations with

more data processed per function

Page 14: Real-Time Data Processing Using AWS Lambda - September Webinar Series

Configuring the Event Source

Starting Position: ▪ The position in the stream where Lambda starts reading▪ Set to “Trim Horizon” for reading from start of stream (all data)▪ Set to “Latest” for reading most recent data (LIFO) (latest data)

Page 15: Real-Time Data Processing Using AWS Lambda - September Webinar Series

Processing

Per Shard:▪ Lambda calls GetRecords with max limit from Kinesis (10k or 10MB)▪ If no record, wait 250 ms▪ From in memory, sub batches and formats records into Lambda payload▪ Invoke Lambda with synchronous invoke

… …Source

Kinesis

Destination 1

Lambda Poller

Destination 2

FunctionsShards

Lambda will scale automaticallyScale Kinesis by adding shards

Batch sync invokesPolls

Page 16: Real-Time Data Processing Using AWS Lambda - September Webinar Series

Processing

▪ Lambda blocks on ordered processing for each individual shard▪ Increasing # of shards with even distribution allows increased concurrency▪ Batch size may impact duration if the Lambda function takes longer to process

more records

… …Source

Kinesis

Destination 1

Lambda Poller

Destination 2

FunctionsShards

Lambda will scale automaticallyScale Kinesis by adding shards

Batch sync invokesPolls

Page 17: Real-Time Data Processing Using AWS Lambda - September Webinar Series

Processing▪ Maximum theoretical throughput :

# shards * 2MB / (s)▪ Effective theoretical throughput :

# shards * batch size (MB) / Lambda function duration (s)▪ If put / ingestion rate is greater than the theoretical throughput, your processing

is at risk of falling behind

Common observations:▪ Effective batch size may be less than configured during low throughput▪ Effective batch size will increase during higher throughput▪ Number of invokes and GetRecord calls will decrease with increased Lambda

duration

Page 18: Real-Time Data Processing Using AWS Lambda - September Webinar Series

Processing

▪ Retry execution failures until the record is expired▪ Retry with exponential backoff up to 60s▪ Throttles and errors impacts duration and directly impacts throughput▪ Effective theoretical throughput :

( # shards * batch size (MB) ) / ( function duration (s) * retries until expiry)

Kinesis

Destination 1

Destination 2

… …Source

FunctionsShards

Lambda will scale automaticallyScale Kinesis by adding shards

Receives errorPolls

Receives error

Receives success

Lambda Poller

Page 19: Real-Time Data Processing Using AWS Lambda - September Webinar Series

Monitoring Kinesis

•GetRecords (effective throughput) : bytes, latency, records etc•PutRecord : bytes, latency, records, etc•GetRecords.IteratorAgeMilliseconds: how old your last processed records were. If high, processing is falling behind. If close to 24 hours, records are close to being dropped.

Page 20: Real-Time Data Processing Using AWS Lambda - September Webinar Series

Monitoring Lambda

•Monitoring: available in Amazon CloudWatch Metrics

• Invocation count

• Duration

• Error count

• Throttle count

•Debugging: available in Amazon CloudWatch Logs

• All Metrics

• Custom logs

• RAM consumed

• Search for log events

Page 21: Real-Time Data Processing Using AWS Lambda - September Webinar Series

Best Practices

▪ Create enough shards for parallel processing▪ Distribute load evenly across shards▪ Monitor and address Lambda errors and throttles▪ Monitor Kinesis limits and throttles

Page 22: Real-Time Data Processing Using AWS Lambda - September Webinar Series

Best PracticesCreate different Lambda functions for each task, associate to same Kinesis stream

Log to CloudWatch

Logs

Push to SNS

Page 23: Real-Time Data Processing Using AWS Lambda - September Webinar Series

Get Started: Data Processing with AWSNext Steps1. Create your first Kinesis stream. Configure hundreds of thousands

of data producers to put data into an Amazon Kinesis stream. Ex. data from Social media feeds.

2. Create and test your first Lambda function. Use any third party library, even native ones. First 1M requests each month are on us!

3. Read the Developer Guide, AWS Lambda and Kinesis Tutorial, and resources on GitHub at AWS Labs

• http://docs.aws.amazon.com/lambda/latest/dg/with-kinesis.html• https://github.com/awslabs/lambda-streams-to-firehose

Page 24: Real-Time Data Processing Using AWS Lambda - September Webinar Series

Thank you!