From 76b2332477e67c65c19f234e39e66e40e5af5aa0 Mon Sep 17 00:00:00 2001 From: tomer doron Date: Mon, 11 May 2020 10:39:19 -0700 Subject: [PATCH] update readme (#75) motivation: better and more up-to-date information changes: rewrite readme to reflect APIs and architecture Co-authored-by: Konrad `ktoso` Malawski Co-authored-by: Fabian Fett --- readme.md | 316 ++++++++++++++++++++++++++++++++++++++++++------------ 1 file changed, 249 insertions(+), 67 deletions(-) diff --git a/readme.md b/readme.md index b395c3ea..aa7e383b 100644 --- a/readme.md +++ b/readme.md @@ -1,10 +1,8 @@ -# SwiftAWSLambdaRuntime +# Swift AWS Lambda Runtime -SwiftAWSLambdaRuntime is a Swift implementation of [AWS Lambda Runtime](https://docs.aws.amazon.com/lambda/latest/dg/runtimes-custom.html). +Serverless Functions are increasingly becoming a popular choice for running event-driven or otherwise ad-hoc compute tasks in the cloud. In many cases, Serverless Functions allow developers to easily scale and control compute costs given their on-demand nature. When using Serverless Functions, extra attention is given to resource utilization as it directly impacts the costs of the system. This is where Swift shines! With its low memory footprint, deterministic performance and quick start time, Swift is a fantastic match for the Serverless Functions architecture. Combine this with Swift’s developer friendliness, expressiveness and emphasis on safety, and we have a solution that is great for developers at all skill levels, scalable, and cost effective. -AWS Lambda runtime is a program that runs a Lambda function's handler method when the function is invoked. - -SwiftAWSLambdaRuntime is designed to simplify the implementation of an AWS Lambda using the Swift programming language. +Swift AWS Lambda Runtime is a library designed to make building Lambda functions in Swift simple and safe. The library is an implementation of the [AWS Lambda Runtime API](https://docs.aws.amazon.com/lambda/latest/dg/runtimes-custom.html) and uses an embedded asynchronous HTTP Client based on [SwiftNIO](http://github.com/apple/swift-nio) that is fine tuned for performance in the AWS Runtime context to communicate with the runtime engine. The library provides a multi-tier API that allows building a range of Lambda functions: From quick and simple closures to a complex, performance sensitive event handlers. ## Getting started @@ -31,111 +29,295 @@ SwiftAWSLambdaRuntime is designed to simplify the implementation of an AWS Lambd ) ``` -2. Create a main.swift and implement your Lambda. Typically a Lambda is implemented as a closure. - For example, a closure that receives a JSON payload and replies with a JSON response via `Codable`: +2. Create a ‘main.swift’ and implement your Lambda. - ```swift - import AWSLambdaRuntime + ### Using Closures - private struct Request: Codable { - let name: String - } - - private struct Response: Codable { - let message: String - } - - // In this example we are receiving and responding with Codable. - // Request and Response above are examples of how to use Codable to model - // request and response objects. - Lambda.run { (_, request: Request, callback) in - callback(.success(Response(message: "Hello, \(request.name)"))) - } - ``` - - Or, a closure that receives a string payload and replies with the reverse version: + The simplest way to use AWS Lambda Runtime is to pass in a closure, for example: ```swift + // Import the module import AWSLambdaRuntime // in this example we are receiving and responding with strings Lambda.run { (context, payload: String, callback) in - callback(.success(String(payload.reversed()))) + callback(.success("Hello, \(payload)")) } ``` - See a complete example in AWSLambdaRuntimeSample. + More commonly, the payload would be a JSON, which is modeled using Codable, for example: -3. Deploy to AWS Lambda. To do so, you need to compile your Application for Amazon 2 Linux, package it as a Zip file, and upload to AWS. + ```swift + // Import the module + import AWSLambdaRuntime - You can find sample build and deployment scripts in AWSLambdaRuntimeSample. + // Request, uses Codable for transparent JSON encoding + private struct Request: Codable { + let name: String + } + + // Response, uses Codable for transparent JSON encoding + private struct Response: Codable { + let message: String + } + + // In this example we are receiving and responding with `Codable`. + Lambda.run { (context, request: Request, callback) in + callback(.success(Response(message: "Hello, \(request.name)"))) + } + ``` + + Since most Lambda functions are triggered by events originating in the AWS platform like `SNS`, `SQS` or `APIGateway`, the package also includes a `AWSLambdaEvents` module that provides implementations for most common AWS event types further simplifying writing Lambda functions. For example, handling an `SQS` message: + + + ```swift + // Import the modules + import AWSLambdaRuntime + Import AWSLambdaEvents + + // In this example we are receiving an SQS Message, with no response (Void). + Lambda.run { (context, message: SQS.Message, callback) in + ... + callback(.success(Void())) + } + ``` + + Modeling Lambda functions as Closures is both simple and safe. The Swift AWS Lambda Runtime will ensure that the user provided code is offloaded off the network processing thread such that even if the code becomes slow to respond or gets hang, the underlying Lambda process can continue to take traffic and respond to other requests. This safety comes at a a small performance penalty from context switching between the networking and the user-land threads. In low volume use cases, or other non-performance sensitive applications, the simplicity & safety of using the Closure based API is often preferred over the complexity of the performance oriented API. + + + ### Using EventLoopLambdaHandler + + Performance sensitive Lambda functions may choose to use a more complex API which allows the user code to run on the same thread as the networking handlers. AWS Lambda Runtime uses [SwiftNIO](https://github.com/apple/swift-nio) as its underlying networking engine which means the APIs are based on [SwiftNIO](https://github.com/apple/swift-nio) concurrency primitives like the `EventLoop` and `EventLoopFuture`. For example: + + ```swift + // Import the modules + import AWSLambdaRuntime + import AWSLambdaEvents + import NIO + + // Our Lambda handler, conforms to EventLoopLambdaHandler + struct Handler: EventLoopLambdaHandler { + typealias In = SNS.Message // Request type + typealias Out = Void // Response type + + // In this example we are receiving an SNS Message, with no response (Void). + func handle(context: Lambda.Context, payload: In) -> EventLoopFuture { + ... + context.eventLoop.makeSucceededFuture(Void()) + } + } + + Lambda.run(Handler()) + ``` + + Beyond the small cognitive complexity of using the `EventLoopFuture` based APIs, note these APIs should be used with extra care. An `EventLoopLambdaHandler` will execute the user code on the same `EventLoop` as the core runtime engine, making the processing faster but requires more care from the implementation to never block the underlying `EventLoop`. In other words, the Lambda code should never use blocking API calls as it will prevent the underlying Lambda process from continuing to take traffic and respond to other requests + + +3. Deploy to AWS Lambda. To do so, you need to compile your Application for Amazon Linux 2, package it as a Zip file, and upload to AWS. Swift.org publishes [Swift toolchains and Docker images for Amazon Linux 2](https://swift.org/download/). + +You can find complete sample build and deployment scripts in the [Examples Directory](/Examples) + ## Architecture -The library defined 3 base protcols for the implementation of a Lambda: +The library defines three protocols for the implementation of a Lambda Handler. From low-level to more convenient: -1. `ByteBufferLambdaHandler`: `EventLoopFuture` based processing protocol for a Lambda that takes a `ByteBuffer` and returns a `ByteBuffer?` asynchronously. +### ByteBufferLambdaHandler - `ByteBufferLambdaHandler` is a low level protocol designed to power the higher level `EventLoopLambdaHandler` and `LambdaHandler` based APIs. +An `EventLoopFuture` based processing protocol for a Lambda that takes a `ByteBuffer` and returns a `ByteBuffer?` asynchronously. - Most users are not expected to use this protocol. +`ByteBufferLambdaHandler` is the lowest level protocol designed to power the higher level `EventLoopLambdaHandler` and `LambdaHandler` based APIs. Users are not expected to use this protocol, though some performance sensitive applications that operate at he `ByteBuffer` level or have special serialization needs may choose to do so. -2. `EventLoopLambdaHandler`: Strongly typed, `EventLoopFuture` based processing protocol for a Lambda that takes a user defined `In` and returns a user defined `Out` asynchronously. +```swift +public protocol ByteBufferLambdaHandler { + /// The Lambda handling method + /// Concrete Lambda handlers implement this method to provide the Lambda functionality. + /// + /// - parameters: + /// - context: Runtime `Context`. + /// - payload: The event or request payload encoded as `ByteBuffer`. + /// + /// - Returns: An `EventLoopFuture` to report the result of the Lambda back to the runtime engine. + /// The `EventLoopFuture` should be completed with either a response encoded as `ByteBuffer` or an `Error` + func handle(context: Lambda.Context, payload: ByteBuffer) -> EventLoopFuture +} +``` - `EventLoopLambdaHandler` extends `ByteBufferLambdaHandler`, performing `ByteBuffer` -> `In` decoding and `Out` -> `ByteBuffer` encoding. +### EventLoopLambdaHandler - `EventLoopLambdaHandler` executes the Lambda on the same `EventLoop` as the core runtime engine, making the processing faster but requires more care from the implementation to never block the `EventLoop`. +`EventLoopLambdaHandler` is a strongly typed, `EventLoopFuture` based asynchronous processing protocol for a Lambda that takes a user defined In and returns a user defined Out. -3. `LambdaHandler`: Strongly typed, callback based processing protocol for a Lambda that takes a user defined `In` and returns a user defined `Out` asynchronously. +`EventLoopLambdaHandler` extends `ByteBufferLambdaHandler`, providing `ByteBuffer` -> `In` decoding and `Out` -> `ByteBuffer?` encoding for `Codable` and String. - `LambdaHandler` extends `ByteBufferLambdaHandler`, performing `ByteBuffer` -> `In` decoding and `Out` -> `ByteBuffer` encoding. +`EventLoopLambdaHandler` executes the user provided Lambda on the same `EventLoop` as the core runtime engine, making the processing fast but requires more care from the implementation to never block the `EventLoop`. It it designed for performance sensitive applications that use `Codable` or String based Lambda functions. - `LambdaHandler` offloads the Lambda execution to a `DispatchQueue` making processing safer but slower. +```swift +public protocol EventLoopLambdaHandler: ByteBufferLambdaHandler { + associatedtype In + associatedtype Out -In addition to protocol based Lambda, the library provides support for Closure based ones, as demonstrated in the getting started section. + /// The Lambda handling method + /// Concrete Lambda handlers implement this method to provide the Lambda functionality. + /// + /// - parameters: + /// - context: Runtime `Context`. + /// - payload: Payload of type `In` representing the event or request. + /// + /// - Returns: An `EventLoopFuture` to report the result of the Lambda back to the runtime engine. + /// The `EventLoopFuture` should be completed with either a response of type `Out` or an `Error` + func handle(context: Lambda.Context, payload: In) -> EventLoopFuture -Closure based Lambda are based on the `LambdaHandler` protocol which mean the are safer but slower. -For most use cases, Closure based Lambda is a great fit. + /// Encode a response of type `Out` to `ByteBuffer` + /// Concrete Lambda handlers implement this method to provide coding functionality. + /// - parameters: + /// - allocator: A `ByteBufferAllocator` to help allocate the `ByteBuffer`. + /// - value: Response of type `Out`. + /// + /// - Returns: A `ByteBuffer` with the encoded version of the `value`. + func encode(allocator: ByteBufferAllocator, value: Out) throws -> ByteBuffer? -Only performance sensitive use cases should explore the `EventLoopLambdaHandler` protocol based approach as it requires more care from the implementation to never block the `EventLoop`. + /// Decode a`ByteBuffer` to a request or event of type `In` + /// Concrete Lambda handlers implement this method to provide coding functionality. + /// + /// - parameters: + /// - buffer: The `ByteBuffer` to decode. + /// + /// - Returns: A request or event of type `In`. + func decode(buffer: ByteBuffer) throws -> In +} +``` -The library includes built-in codec for `String` and `Codable` into `ByteBuffer`, which means users can express `String` and `Codable` based Lambda without the need to provide encoding and decoding logic. +### LambdaHandler -Since AWS Lambda is primarily JSON based, this covers the most common use cases. +`LambdaHandler` is a strongly typed, completion handler based asynchronous processing protocol for a Lambda that takes a user defined In and returns a user defined Out. -The design does allow for other payload types as well, and such Lambda implementation can extend one of the above protocols and provided their own `ByteBuffer` -> `In` decoding and `Out` -> `ByteBuffer` encoding. +`LambdaHandler` extends `ByteBufferLambdaHandler`, performing `ByteBuffer` -> `In` decoding and `Out` -> `ByteBuffer` encoding for `Codable` and String. + +`LambdaHandler` offloads the user provided Lambda execution to a `DispatchQueue` making processing safer but slower. + +```swift +public protocol LambdaHandler: EventLoopLambdaHandler { + /// Defines to which `DispatchQueue` the Lambda execution is offloaded to. + var offloadQueue: DispatchQueue { get } + + /// The Lambda handling method + /// Concrete Lambda handlers implement this method to provide the Lambda functionality. + /// + /// - parameters: + /// - context: Runtime `Context`. + /// - payload: Payload of type `In` representing the event or request. + /// - callback: Completion handler to report the result of the Lambda back to the runtime engine. + /// The completion handler expects a `Result` with either a response of type `Out` or an `Error` + func handle(context: Lambda.Context, payload: In, callback: @escaping (Result) -> Void) +} +``` + +### Closures + +In addition to protocol based Lambda, the library provides support for Closure based ones, as demonstrated in the overview section above. Closure based Lambda are based on the `LambdaHandler` protocol which mean they are safer. For most use cases, Closure based Lambda is a great fit and users are encouraged to use them. + +The library includes implementations for `Codable` and String based Lambda. Since AWS Lambda is primarily JSON based, this covers the most common use cases. + +```swift +public typealias CodableClosure = (Lambda.Context, In, @escaping (Result) -> Void) -> Void +``` + +```swift +public typealias StringClosure = (Lambda.Context, String, @escaping (Result) -> Void) -> Void +``` + +This design allows for addition payload types as well, and such Lambda implementation can extend one of the above protocols and provided their own `ByteBuffer` -> `In` decoding and `Out` -> `ByteBuffer` encoding. + +### Context + +When calling the user provided Lambda function, the library provides a `Context` class that provides metadata about the execution context, as well as utilities for logging and allocating buffers. + +```swift +public final class Context { + /// The request ID, which identifies the request that triggered the function invocation. + public let requestId: String + + /// The AWS X-Ray tracing header. + public let traceId: String + + /// The ARN of the Lambda function, version, or alias that's specified in the invocation. + public let invokedFunctionArn: String + + /// The timestamp that the function times out + public let deadline: DispatchWallTime + + /// For invocations from the AWS Mobile SDK, data about the Amazon Cognito identity provider. + public let cognitoIdentity: String? + + /// For invocations from the AWS Mobile SDK, data about the client application and device. + public let clientContext: String? + + /// `Logger` to log with + /// + /// - note: The `LogLevel` can be configured using the `LOG_LEVEL` environment variable. + public let logger: Logger + + /// The `EventLoop` the Lambda is executed on. Use this to schedule work with. + /// This is useful when implementing the `EventLoopLambdaHandler` protocol. + /// + /// - note: The `EventLoop` is shared with the Lambda runtime engine and should be handled with extra care. + /// Most importantly the `EventLoop` must never be blocked. + public let eventLoop: EventLoop + + /// `ByteBufferAllocator` to allocate `ByteBuffer` + /// This is useful when implementing `EventLoopLambdaHandler` + public let allocator: ByteBufferAllocator +} +``` + +### Configuration + +The library’s behavior can be fine tuned using environment variables based configuration. The library supported the following environment variables: + +* `LOG_LEVEL`: Define the logging level as defined by [SwiftLog](https://github.com/apple/swift-log). Set to INFO by default. +* `MAX_REQUESTS`: Max cycles the library should handle before exiting. Set to none by default. +* `STOP_SIGNAL`: Signal to capture for termination. Set to TERM by default. +* `REQUEST_TIMEOUT`: Max time to wait for responses to come back from the AWS Runtime engine. Set to none by default. + + +### AWS Lambda Runtime Engine Integration + +The library is designed to integrate with AWS Lambda Runtime Engine via the [AWS Lambda Runtime API](https://docs.aws.amazon.com/lambda/latest/dg/runtimes-custom.html) which was introduced as part of [AWS Lambda Custom Runtimes](https://aws.amazon.com/about-aws/whats-new/2018/11/aws-lambda-now-supports-custom-runtimes-and-layers/) in 2018. The latter is an HTTP server that exposes three main RESTful endpoint: -The library is designed to integrate with AWS Lambda Runtime Engine, via the BYOL Native Runtime API. The latter is an HTTP server that exposes three main RESTful endpoint: * `/runtime/invocation/next` * `/runtime/invocation/response` * `/runtime/invocation/error` -The library encapsulates these endpoints and the expected lifecycle via `Lambda.RuntimeClient` and `Lambda.Runner` respectively. - -**Single Lambda Execution Workflow** +A single Lambda execution workflow is made of the following steps: 1. The library calls AWS Lambda Runtime Engine `/next` endpoint to retrieve the next invocation request. +2. The library parses the response HTTP headers and populate the Context object. +3. The library reads the `/next` response body and attempt to decode it. Typically it decodes to user provided `In` type which extends `Decodable`, but users may choose to write Lambda functions that receive the input as String or `ByteBuffer` which require less, or no decoding. +4. The library hands off the `Context` and `In` payload to the user provided handler. In the case of `LambdaHandler` based handler this is done on a dedicated `DispatchQueue`, providing isolation between user's and the library's code. +5. User provided handler processes the request asynchronously, invoking a callback or returning a future upon completion, which returns a Result type with the Out or Error populated. +6. In case of error, the library posts to AWS Lambda Runtime Engine `/error` endpoint to provide the error details, which will show up on AWS Lambda logs. +7. In case of success, the library will attempt to encode the response. Typically it encodes from user provided `Out` type which extends `Encodable`, but users may choose to write Lambda functions that return a String or `ByteBuffer`, which require less, or no encoding. The library then posts the response to AWS Lambda Runtime Engine `/response` endpoint to provide the response to the callee. -2. The library parses the response HTTP headers and populate the `Lambda.Context` object. +The library encapsulates the workflow via the internal `LambdaRuntimeClient` and `LambdaRunner` structs respectively. -3. The library reads the response body and attempt to decode it, if required. - Typically it decodes to user provided type which extends `Decodable`, but users may choose to write Lambdas that receive the input as `String` or `ByteBuffer` which require less, or no decoding. - -4. The library hands off the `Context` and `Request` to the user provided handler. - In the case of `LambdaHandler` based Lambda this is done on a dedicated `DispatchQueue`, providing isolation between user's and the library's code. - -5. User's code processes the request asynchronously, invoking a callback or returning a future upon completion, which returns a result type with the `Response` or `Error` populated. - -6. In case of error, the library posts to AWS Lambda Runtime Engine `/error` endpoint to provide the error details, which will show up on AWS Lambda logs. - -7. In case of success, the library will attempt to encode the response, if required. - Typically it encodes from user provided type which extends `Encodable`, but users may choose to write Lambdas that return a `String` or `ByteBuffer`, which require less, or no encoding. - The library then posts to AWS Lambda Runtime Engine `/response` endpoint to provide the response. - -**Lifecycle Management** +### Lifecycle Management AWS Lambda Runtime Engine controls the Application lifecycle and in the happy case never terminates the application, only suspends it's execution when no work is avaialble. As such, the library main entry point is designed to run forever in a blocking fashion, performing the workflow described above in an endless loop. That loop is broken if/when an internal error occurs, such as a failure to communicate with AWS Lambda Runtime Engine API, or under other unexpected conditions. + +By default, the library also registers a Signal handler that traps `INT` and `TERM` , which are typical Signals used in modern deployment platforms to communicate shutdown request. + +### Integration with AWS Platform Events + +AWS Lambda functions can be invoked directly from the AWS Lambda console UI, AWS Lambda API, AWS SDKs, AWS CLI, and AWS toolkits. More commonly, they are invoked as a reaction to an events coming from the AWS platform. To make it easier to integrate with AWS platform events, the library includes an `AWSLambdaEvents` target which provides abstractions for many commonly used events. Additional events can be easily modeled when needed following the same patterns set by `AWSLambdaEvents`. Integration points with the AWS Platform include: + +* [APIGateway Proxy](https://docs.aws.amazon.com/lambda/latest/dg/services-apigateway.html) +* [S3 Events](https://docs.aws.amazon.com/lambda/latest/dg/with-s3.html) +* [SNS Events](https://docs.aws.amazon.com/lambda/latest/dg/with-sns.html) +* [SQS Events](https://docs.aws.amazon.com/lambda/latest/dg/with-sqs.html) +* [CloudWatch Events](https://docs.aws.amazon.com/lambda/latest/dg/services-cloudwatchevents.html) + +**Note**: Each one of the integration points mentioned above includes a set of `Codable` structs that mirror AWS' data model for these APIs.