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

@angular/ssr - node drain breaks serverless #29801

Closed
1 task done
dklmuc opened this issue Mar 11, 2025 · 4 comments · Fixed by #29804
Closed
1 task done

@angular/ssr - node drain breaks serverless #29801

dklmuc opened this issue Mar 11, 2025 · 4 comments · Fixed by #29804
Labels
area: @angular/ssr freq1: low Only reported by a handful of users who observe it rarely severity5: regression type: bug/fix

Comments

@dklmuc
Copy link

dklmuc commented Mar 11, 2025

Command

other

Is this a regression?

  • Yes, this behavior used to work in the previous version

The previous version in which this bug was not present was

19.1.3

Description

When updating to angular 19.2.2 we see a regression while running SSR inside an AWS lambda. Local tests with a 3rd party lib lambda-local shows that response was created by angularNodeAppEngine, but writeResponseToNodeResponse does not seem to resolve anymore as before and lambda process will result in a timeout.

Minimal Reproduction

Reverting locally the changes of #29491 made it work again.

Further debugging:
f (!canContinue) { console.log('destination.write()', canContinue); await new Promise((resolve) => destination.once('drain', resolve)); }
strangely shows canContinue as undefined.

If needed a repro could be provided.

Exception or Error


Your Environment

Angular CLI: 19.2.1
Node: 22.14.0
Package Manager: npm 10.9.2
OS: linux x64

Angular: 19.2.1
... cli, common, compiler, compiler-cli, core, forms
... platform-browser, platform-browser-dynamic, platform-server
... router, ssr

Package                         Version
---------------------------------------------------------
@angular-devkit/architect       0.1902.1
@angular-devkit/build-angular   19.2.1
@angular-devkit/core            19.2.1
@angular-devkit/schematics      19.2.1
@schematics/angular             19.2.1
rxjs                            7.8.2
typescript                      5.7.3
zone.js                         0.15.0

Anything else relevant?

No response

@alan-agius4
Copy link
Collaborator

alan-agius4 commented Mar 11, 2025

Hi @dklmuc, it would be great to have a reproduction. However, OutgoingMessage .write should never return undefined.

@dklmuc
Copy link
Author

dklmuc commented Mar 11, 2025

@alan-agius4 yes, this is also what is confusing me after reading the node docs for .write

I've added a small repro: https://github.com/dklmuc/angular-srr-lambda

  • npm ci
  • npm run build
  • lambda-local -l lambda.js -e event_origin_request.json

This will output the angular response to console and then it runs into the default timeout of 3 seconds.

Sidenodes:
I've added also a console log when writeResponseToNodeResponse resolves which is not coming, so this is why I think somehow the added promise in the pull request is now stuck due to the undefined and maybe that drain event is not fired.

I can't rule out if it is an error in the used serverless package translating the lambda event into a request object, but like I've said removing that change from the pull request locally is solving this problem.

@alan-agius4
Copy link
Collaborator

Indeed, it does seem like a bug in the mentioned package. In fact there has been a long standing issue CodeGenieApp/serverless-express#683

For the time being we could potentially do a workaround.

@dklmuc
Copy link
Author

dklmuc commented Mar 11, 2025

@alan-agius4 thanks a lot for the quick help.

alan-agius4 added a commit that referenced this issue Mar 11, 2025
… a boolean

Implements a workaround for CodeGenieApp/serverless-express#683

Closes #29801

(cherry picked from commit ee8466d)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area: @angular/ssr freq1: low Only reported by a handful of users who observe it rarely severity5: regression type: bug/fix
Projects
None yet
2 participants