-
Notifications
You must be signed in to change notification settings - Fork 104
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
Deploying multiple Lambdas at once #117
Comments
@eneko you are correct to point out that the deployment examples focus on single-function/single-executable per package users of this library may of course choose to build "larger" packages that include many executables in them. we did not emphasize this option in the documentation and example as it leads to lager packages that have slower start time (AWS needs to download a larger zipfile, etc) for modularity and code sharing, one can build an executable that is a router of sorts and can delegate the event to the relevant private modules. #57 has some relevant discussion as well |
Thanks for the feedback, @tomerd I read #57, and found it interesting. For sure, it would be nice to support the "handler" name entered in Lambda configuration page, so a single binary could be used for multiple functions. In the cases stated above in this issue, I was thinking on the scenario where a Swift Package contains multiple binaries (multiple executable products), one executable per Lambda function. This is, following how Lambda Functions Examples are set up. The question I had is on what would be the best approach for budding, packaging and deploying multiple binaries at the same time, using SAM for example. Hope that makes sense. |
Might be a good idea to document terminology. For example, here we are talking about two different packages:
Using a single SAM template to deploy multiple lambdas in a Swift Package shouldn’t make each packaged lambda larger in size. Hope I’m making sense. |
Hi @eneko,
As stated in #57 you can use the
You can just throw your sam templates into each other. If you want to you could deploy all example Lambas with just one sam template if you copy and pasted all the sam templates into one file. Just make sure all your resources have different names. |
@fabianfett thanks for the feedback. This is not really an issue, just trying to find out what the best practices are, so we could update scripts if needed, and/or document different approaches. For example, on a demo project I'm working on, I have two lambda functions that use the same DynamoDB table. Having both functions in the same SAM template, together with the DynamoDB table definition, allows for using resource references instead of manually specifying the ARN:
However, in order to deploy this SAM template, both This can easily be done with a deploy script like this:
I'm not sure if this follows best practices, or if there is a better approach. Thanks! |
@eneko Well, I don't know if there is a better approach either, but that's pretty close to what I'm doing ;) |
@eneko would you like to PR some docs around this so we can close it out? maybe highlighting the tradeoffs and why normally you want to deploy one at a time? |
one approach to address that is to have many Lambda function in the same SAM template (which also defines other AWS resources) but to package and deploy each function separately
|
As far as I know SAM CLI packages each function separately.
References: |
Thanks everyone. I haven't looked into this recently, but I'm looking forward to do more research and document it. Some example of possible goals or nice-to-have's:
|
Hi, I have project called aws-deploy-kit that might help with this. It has a lot of cli help, readme help and some examples. If you end up using separate SAM templates per Lambda, you could explicitly deploy them with a command like In the project, I converted all the shell build scripts from the examples in this repo to Swift code. The above command will build each function in Docker, then run If you can switch from SAM, please take a look at the AdvancedExample to see how to programmatically deploy. The example shows a similar idea as what you described with the shared resources. I just wrapped up with the examples. If you have any questions, comments or requests, please let me know. |
Keeping this thread alive I came to pondered upon the same doubts and implementations naturally as I was developing a bigger project (the ones proposed by @eneko and @pokryfka)
A few "fine lines" I also found were:
|
I've been wondering what would be the best approach for deploying multiple lambdas at once, so I'm hoping to use this issue thread as a place to discuss the best strategy for this. If there is a better place, like forums.swift.org, let me know.
I don't have much experience with lambda, however, I can imagine the following scenarios:
I'd like to assume for each of those scenarios, being able to deploy lambdas individually (this is, update a single lambda and deploy it) should remain an option.
Focusing on SAM for now, there are two approaches:
What would be the recommended layout for projects with many functions? What are the pros and cons of one template for multiple lambdas vs one template per function?
The text was updated successfully, but these errors were encountered: