-
Notifications
You must be signed in to change notification settings - Fork 55
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Inconsistency between RIC in container and Node in zip deployment #17
Comments
I'm seeing this happening and I'm also confused if I'm missing something. I'm having different behaviors between running in the container and running in AWS. |
I noticed different inconsistency. If zip-based lambda throws an error, lambda will terminate the |
I am surprised to find these questions (and others) have gone unanswered here. @jeffmcaffer thanks for your issue as it could explain why my function isn't working in AWS. I've been trying to work out why my container image runs the function in docker-compose locally, but not in AWS. Could make sense if the headers aren't there & gives me a new angle to debug at least. Quite possibly my knowledge of API gateway or triggers is the issue though :) Not finding the answers online though. It would be useful to create function from a NodeJS container. I'd like to see a NodeJs application run from a platform agnostic container, deployed into a function. Perhaps a process.exit(0) would terminate the route handler on completion or perhaps structure the application as a middleware module that could be used by the lambda implementation. In my tests I can see a significantly better warmup time when using containers & would like to prove that using a NodeJS runtime. |
I've been able to get my container image running in AWS now... The function itself receives whatever its passed in the event invocation. So if you create a container and run it locally, then curl with curl -XPOST "http://localhost:8080/2015-03-31/functions/function/invocations" -d '{"headers": {"someHeader": 12345677654321}}' The function will receive the headers passed though from the RIC implementation. The contents of the -d flag above you can pass that payload as event json under the test tab {
"headers": {
"someHeader": 12345677654321
}
} So then headers show up in the container... but I've not worked out yet how to get the request headers to pass through. |
I got the headers through, but they needed to be passed in from a rest API gateway with a mapping template. What I do see as inconsistent is that the lambda function published with SAM needs to return and object with statusCode, headers and a body. Whereas from a docker container needs only to return the body. |
I created two functions, one deployed as a custom container using this runtime interface and the other as a Node handler deployed as a zip. The
event
argument to the two handlers is different. Both functions are triggered by a REST API gateway POST route configured in the same way AFAICT.Container + RIC
This setup seems to get the
body
of the event as an object (already parsed) and is is expected to return the result object as the response. The handler does not have access to the request headers etc. Nor can the handler control the response status code etc. Here is a rough outline of the handler.Node and zip deploy
In this case the handler is given the full REST API event object headers, body, ... and it must parse the body. Note also that the return value appears to need to be a structured object that has the statusCode and a stringified version of the return value.
Questions
event
.The text was updated successfully, but these errors were encountered: