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

Add support swift-service-lifecycle #374

Open
fabianfett opened this issue Sep 27, 2024 · 8 comments
Open

Add support swift-service-lifecycle #374

fabianfett opened this issue Sep 27, 2024 · 8 comments
Assignees
Labels
area/documentation Improvements or additions to documentation. good first issue Good for newcomers semver/none No version bump required. size/S Small task. (A couple of hours of work.) status/blocked Waiting for another issue.
Milestone

Comments

@fabianfett
Copy link
Member

fabianfett commented Sep 27, 2024

The code on the main branch currently does not support Swift Service Lifecycle.

@fabianfett fabianfett added this to the 2.0 milestone Sep 27, 2024
@sebsto sebsto self-assigned this Sep 27, 2024
@sebsto sebsto added area/documentation Improvements or additions to documentation. good first issue Good for newcomers semver/none No version bump required. status/needs-design Needs further discussion and a concrete proposal. size/S Small task. (A couple of hours of work.) labels Jan 4, 2025
@sebsto sebsto changed the title swift-service-lifecycle example & docc (use Postgres) Ass support swift-service-lifecycle Jan 12, 2025
@sebsto sebsto changed the title Ass support swift-service-lifecycle Add support swift-service-lifecycle Jan 12, 2025
@sebsto
Copy link
Contributor

sebsto commented Jan 12, 2025

We started the implementation with these two PR

  • #459 : make LambdaRuntimeClient.nextInvocation() cancellable
  • #456 : Add LambdaRuntimService and an example function

These two PR have unresolved issues.

  • #459 is not Swift 6 compliant
/swift/lambda/swift-aws-lambda-runtime/Sources/AWSLambdaRuntimeCore/LambdaRuntimeClient.swift:343:38: warning: sending 'handler' risks causing data races; this is an error in the Swift 6 language mode
341 |                 defer {
342 |                     for continuation in array {
343 |                         continuation.resume(returning: handler)
    |                                      |- warning: sending 'handler' risks causing data races; this is an error in the Swift 6 language mode
    |                                      `- note: 'self'-isolated 'handler' is passed as a 'sending' parameter; Uses in callee may race with later 'self'-isolated uses
344 |                     }
345 |                 }
  • #456 adds partial support for graceful shutdown. But the graceful shutdown flag is not propagated down to the LambdaRuntimeClient. Currently, this call cannot be interrupted when a graceful shutdown is requested.

@sebsto sebsto added status/blocked Waiting for another issue. and removed status/needs-design Needs further discussion and a concrete proposal. labels Jan 12, 2025
@fabianfett
Copy link
Member Author

Do we want to use package traits here?

https://github.com/swiftlang/swift-evolution/blob/main/proposals/0450-swiftpm-package-traits.md

cc @FranzBusch

@fabianfett
Copy link
Member Author

I think we landed this with #490. @sebsto close this one?

@sebsto
Copy link
Contributor

sebsto commented Mar 6, 2025

A big part has been landed yes. Not all of it. I’ll keep this for the example and the actual structure that implements the Service protocol

@fabianfett
Copy link
Member Author

The missing part is graceful shutdown support?

@sebsto
Copy link
Contributor

sebsto commented Mar 6, 2025

We need to add

  • an example
  • create an extension of LambdaRuntime that implements Service protocol
  • and check what happens in case of graceful shutdown.

Points 1. and 2. are in the PR I closed and I will submit a separate PR for these.

IMHO, when the LambdaRuntimeClient waits on /next, the only way to stop it is to cancel the Tasks. Therefore, graceful shutdown is very similar to task cancellation.

Ideally, we must be sure than any in flight user handler has the time to return a response. But the Lambda service will take care to re-create a runtime environment if one fails to return a response or error. So in this specific context, it is not that important to cleanly shutdown.

@fabianfett
Copy link
Member Author

create an extension of LambdaRuntime that implements Service protocol

@sebsto
Copy link
Contributor

sebsto commented Mar 6, 2025

Excellent I missed it. Thank you

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/documentation Improvements or additions to documentation. good first issue Good for newcomers semver/none No version bump required. size/S Small task. (A couple of hours of work.) status/blocked Waiting for another issue.
Projects
None yet
Development

No branches or pull requests

2 participants