-
-
Notifications
You must be signed in to change notification settings - Fork 34.2k
stream: improve performance of finished() #59873
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
Changes from all commits
765dd80
f5595c6
66dd3f6
48db583
8e5b4a2
2d55f08
a7f49d3
c49b350
d51ca0d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,33 @@ | ||
| 'use strict'; | ||
|
|
||
| const common = require('../common'); | ||
| const { Readable, Writable } = require('stream'); | ||
| const { finished } = require('stream/promises'); | ||
|
|
||
| const bench = common.createBenchmark(main, { | ||
| n: [1e7], | ||
| streamType: ['readable', 'writable'], | ||
| }); | ||
|
|
||
| async function main({ n, streamType }) { | ||
| bench.start(); | ||
|
|
||
| for (let i = 0; i < n; i++) { | ||
| let stream; | ||
|
|
||
| switch (streamType) { | ||
| case 'readable': | ||
| stream = new Readable({ read() { this.push(null); } }); | ||
| stream.resume(); | ||
| break; | ||
| case 'writable': | ||
| stream = new Writable({ write(chunk, enc, cb) { cb(); } }); | ||
| stream.end(); | ||
| break; | ||
| } | ||
|
|
||
| await finished(stream); | ||
| } | ||
|
|
||
| bench.end(n); | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| // Flags: --expose-internals | ||
| 'use strict'; | ||
|
|
||
| const common = require('../common'); | ||
| const { Readable, finished } = require('stream'); | ||
| const { AsyncLocalStorage } = require('async_hooks'); | ||
| const { strictEqual } = require('assert'); | ||
| const AsyncContextFrame = require('internal/async_context_frame'); | ||
| const internalAsyncHooks = require('internal/async_hooks'); | ||
|
|
||
| // This test verifies that ALS context is preserved when using stream.finished() | ||
|
|
||
| const als = new AsyncLocalStorage(); | ||
| const readable = new Readable(); | ||
|
|
||
| als.run('test-context-1', () => { | ||
| finished(readable, common.mustCall(() => { | ||
| strictEqual(AsyncContextFrame.enabled || internalAsyncHooks.getHookArrays()[0].length > 0, | ||
| true, 'One of AsyncContextFrame or async hooks criteria should be met'); | ||
| strictEqual(als.getStore(), 'test-context-1', 'ALS context should be preserved'); | ||
| })); | ||
| }); | ||
|
|
||
| readable.destroy(); |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,35 @@ | ||
| // Flags: --expose-internals | ||
| 'use strict'; | ||
|
|
||
| const common = require('../common'); | ||
| const { Readable, finished } = require('stream'); | ||
| const { createHook, executionAsyncId } = require('async_hooks'); | ||
| const { strictEqual } = require('assert'); | ||
| const internalAsyncHooks = require('internal/async_hooks'); | ||
|
|
||
| // This test verifies that when there are active async hooks, stream.finished() uses | ||
| // the bindAsyncResource path | ||
|
|
||
| createHook({ | ||
| init(asyncId, type, triggerAsyncId) { | ||
| if (type === 'STREAM_END_OF_STREAM') { | ||
| const parentContext = contextMap.get(triggerAsyncId); | ||
| contextMap.set(asyncId, parentContext); | ||
| } | ||
| } | ||
| }).enable(); | ||
|
|
||
| const contextMap = new Map(); | ||
| const asyncId = executionAsyncId(); | ||
| contextMap.set(asyncId, 'abc-123'); | ||
| const readable = new Readable(); | ||
|
|
||
| finished(readable, common.mustCall(() => { | ||
| const currentAsyncId = executionAsyncId(); | ||
| const ctx = contextMap.get(currentAsyncId); | ||
| strictEqual(internalAsyncHooks.getHookArrays()[0].length > 0, | ||
| true, 'Should have active user async hook'); | ||
| strictEqual(ctx, 'abc-123', 'Context should be preserved'); | ||
| })); | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Note that this does not verify continuation is preserved
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This doesn't verify the code path either. It is a copy of the condition and someone might change one of the locations.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks! I expanded on the test!
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @mcollina I addressed your comment, thanks! |
||
|
|
||
| readable.destroy(); | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| // Flags: --expose-internals --no-async-context-frame | ||
| 'use strict'; | ||
|
|
||
| const common = require('../common'); | ||
| const { Readable, finished } = require('stream'); | ||
| const { strictEqual } = require('assert'); | ||
| const AsyncContextFrame = require('internal/async_context_frame'); | ||
| const internalAsyncHooks = require('internal/async_hooks'); | ||
|
|
||
| // This test verifies that when there are no active async hooks, stream.finished() uses the default callback path | ||
|
|
||
| const readable = new Readable(); | ||
|
|
||
| finished(readable, common.mustCall(() => { | ||
| strictEqual(internalAsyncHooks.getHookArrays()[0].length === 0, | ||
| true, 'Should not have active user async hook'); | ||
| strictEqual(AsyncContextFrame.current() || internalAsyncHooks.getHookArrays()[0].length > 0, | ||
| false, 'Default callback path should be used'); | ||
| })); | ||
|
|
||
| readable.destroy(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note that this does not verify continuation is preserved