-
Notifications
You must be signed in to change notification settings - Fork 126
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: Add Web to tool name in docs (#521)
- Loading branch information
Showing
2 changed files
with
12 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
## How does it work? | ||
|
||
AWS Lambda Adapter supports AWS Lambda function triggered by Amazon API Gateway Rest API, Http API(v2 event format), and Application Load Balancer. | ||
Lambda Adapter converts incoming events to http requests and send to web application, and convert the http response back to lambda event response. | ||
AWS Lambda Web Adapter supports AWS Lambda functions triggered by Amazon API Gateway Rest API, Http API (v2 event format), and Application Load Balancer. | ||
Lambda Web Adapter converts incoming events to http requests and sends to web application, and converts the http response back to lambda event response. | ||
|
||
Lambda Adapter is a Lambda Extension (since 0.2.0). When the docker image is running inside AWS Lambda Service, Lambda will automatic start the Adapter and | ||
the runtime process. When running outside of Lambda, Lambda Adapter does not run at all. This allows developers to package their web application | ||
Lambda Web Adapter is a Lambda Extension (since 0.2.0). When the docker image is running inside AWS Lambda Service, Lambda will automatic start the Adapter and | ||
the runtime process. When running outside of Lambda, Lambda Web Adapter does not run at all. This allows developers to package their web application | ||
as a container image and run it on AWS Lambda, AWS Fargate and Amazon EC2 without changing code. | ||
|
||
After Lambda Adapter launch the application, it will perform readiness check on http://localhost:8080/ every 10ms. | ||
After Lambda Web Adapter launches the application, it will perform readiness check on http://localhost:8080/ every 10ms. | ||
It will start lambda runtime client after receiving 200 response from the application and forward requests to http://localhost:8080. | ||
|
||
![lambda-runtime](images/lambda-adapter-runtime.png) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters