Skip to content
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

[proposal] Distribute the AWS Lambda Swift Runtime as a Lambda Layer #512

Open
sebsto opened this issue Mar 31, 2025 · 0 comments
Open

[proposal] Distribute the AWS Lambda Swift Runtime as a Lambda Layer #512

sebsto opened this issue Mar 31, 2025 · 0 comments
Assignees
Labels
kind/proposal Proposals for review.

Comments

@sebsto
Copy link
Contributor

sebsto commented Mar 31, 2025

Summary

Should we provide an AWS Lambda Layer to distribute the Swift runtime?

Background

AWS Lambda Layers allow for the distribution of dependencies and runtimes separately from the function code. This approach can simplify deployment, reduce package sizes, and improve maintainability.

Given the absence of ABI stability for Swift on Linux, each Swift version would require a separate binary layer. This introduces additional complexity but also offers potential benefits.

Benefits

Distributing the Swift runtime as a Lambda Layer would have the following advantages:

  • Smaller Deployment Packages: Users would not need to bundle the Swift runtime with their function code, reducing package sizes and improving cold start performance.
  • Simplified Deployment Process: Developers can reference the runtime layer directly, avoiding the need to manage runtime dependencies within their application package.
  • Easier Updates: Updating the runtime version would require updating the layer reference rather than redeploying the entire function.
  • Encourages Best Practices: Using a common runtime layer helps enforce consistency across Lambda functions within an organization.

Challenges & Considerations

This is a one-way door decision, meaning that once we commit to providing the Swift runtime as a Lambda Layer, we must maintain it reliably. Key challenges include:

  • Multiple Versions: Each Swift version requires a separate binary layer due to the lack of ABI stability on Linux.
  • Security & Trust: We must ensure the runtime layer is securely distributed, including:
    • Hosting it in a dedicated AWS Lambda account.
    • Signing and verifying the integrity of the layer to prevent supply chain attacks.
    • Adhering to AWS security best practices.
  • Operational Overhead:
    • Managing multiple layers across different regions.
    • Providing clear documentation on how to use the layer.
    • Defining a deprecation policy for older versions.
  • Telemetry & Monitoring:

Next Steps

  • Gather feedback from the community on the need for a runtime layer.
  • Define a strategy for building, hosting, and securing the runtime layers.
  • Implement an initial proof of concept to validate feasibility.
  • Define a release and maintenance strategy, including versioning policies.

Should we move forward with this approach? Feedback and discussion are welcome.

@sebsto sebsto self-assigned this Mar 31, 2025
@sebsto sebsto added the kind/proposal Proposals for review. label Mar 31, 2025
@sebsto sebsto changed the title [proposal] Distribute as a Lambda Layer [proposal] Distribute the AWS Lambda Swift Runtime as a Lambda Layer Mar 31, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
kind/proposal Proposals for review.
Projects
None yet
Development

No branches or pull requests

1 participant