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

feat: add stream helper #395

Merged
merged 13 commits into from
May 12, 2023
Merged

feat: add stream helper #395

merged 13 commits into from
May 12, 2023

Conversation

Skn0tt
Copy link
Contributor

@Skn0tt Skn0tt commented Apr 6, 2023

This PR adds a helper to support streaming responses in Netlify Functions. The decorator handles all the awslambda things under the hood, all that devs have to do is return a NodeJS.Readable or a Web Stream as the body.

It also updates the Node.js version to v14, so that pipeline is available, which makes this a breaking change technically - but as @ascorbic notes, not an actual one.

Skn0tt added 3 commits April 6, 2023 12:28

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
@ascorbic
Copy link
Contributor

ascorbic commented Apr 6, 2023

I know bumping the minimum Node version is usually a breaking change, but as this is a Node version that hasn't been supported by Lambda for a very long time I don't think it's an actual breaking change. In fact I'd bump it to 14 rather than 12.

@Skn0tt Skn0tt changed the title feat!: add stream helper feat: add stream helper Apr 11, 2023
@Skn0tt Skn0tt marked this pull request as ready for review April 11, 2023 11:02
@Skn0tt Skn0tt requested a review from a team April 11, 2023 11:02
@Skn0tt Skn0tt self-assigned this Apr 11, 2023
@Skn0tt Skn0tt requested a review from eduardoboucas April 11, 2023 11:03
* // ...
* return {
* statusCode: 200,
* body: response.body, // Web stream
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not sure I understand the differentiation between a ReadableStream and a Web stream, since response.body is a ReadableStream?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Readable is the old NodeJS class, and ReadableStream is the WHATWG interface that's been added in Node v18 under node:stream/web. Node.JS refers to the streams from WHATWG Fetch spec as Web Streams.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah, I hadn't realised that was the term they used. I left a suggestion for using WHATWG instead which I think might be slightly clearer, but feel free to take it or leave it.

* @see https://ntl.fyi/streaming-func
*/
const stream = (handler: StreamingHandler): Handler =>
awslambda.streamifyResponse(async (event, responseStream, context) => {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What's the plan for making this with in local development? Should we add this to https://github.com/ashiina/lambda-local?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That's probably the best way forward, yes. I think we already got one PR in there.

Skn0tt and others added 2 commits April 11, 2023 13:14
Co-authored-by: Eduardo Bouças <mail@eduardoboucas.com>
eduardoboucas
eduardoboucas previously approved these changes Apr 11, 2023
Copy link
Member

@eduardoboucas eduardoboucas left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM! Left a couple of non-blocking comments. We should hold off on releasing this until streaming is enabled across the board, though.

* // ...
* return {
* statusCode: 200,
* body: response.body, // Web stream
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah, I hadn't realised that was the term they used. I left a suggestion for using WHATWG instead which I think might be slightly clearer, but feel free to take it or leave it.

* @example
* ```
* export const handler = stream(async (event, context) => {
* const response = await fetch('https://api.openai.com/', { ... })
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: Maybe safer to use one of our own URLs in the example?

Suggested change
* const response = await fetch('https://api.openai.com/', { ... })
* const response = await fetch('https://api.netlify.com/api/v1/user', { ... })

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I explicitly chose OpenAI because streaming responses are useful in that context - whereas I'm not aware of any Netlify-owned API where streaming makes a difference. Let's stick with openai for now :)

Co-authored-by: Eduardo Bouças <mail@eduardoboucas.com>
@eduardoboucas eduardoboucas changed the title feat: add stream helper feat: add stream helper May 12, 2023
@eduardoboucas eduardoboucas merged commit 7b305cf into main May 12, 2023
@eduardoboucas eduardoboucas deleted the stream-helper branch May 12, 2023 11:58
eduardoboucas pushed a commit that referenced this pull request May 12, 2023
🤖 I have created a release *beep* *boop*
---


## [1.6.0](v1.5.0...v1.6.0)
(2023-05-12)


### Features

* add `stream` helper
([#395](#395))
([7b305cf](7b305cf))

---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please). See
[documentation](https://github.com/googleapis/release-please#release-please).

Co-authored-by: token-generator-app[bot] <82042599+token-generator-app[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants