-
Notifications
You must be signed in to change notification settings - Fork 29.7k
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
Feature Request: way to merge streams like pumpify(a, b) #32020
Comments
oh, that system/version is from me running it in the docker node:latest image. I get exactly the same results with v10.17.0 in debian unstable (not in docker). |
@nodejs/streams |
@JasonWoof To get a duplex stream instead, you might like |
I don't see the point of stream.pipeline() if it does the same thing as a.pipe(b).pipe(c) and doesn't create something you can pipe data to. Technically current stream.pipeline() does return something you can pipe to, but piping to it does something very weird (ie neither useful nor expected.) I think node should have the ability to compose streams without pulling in god knows how many npm modules. If stream.pipeline() worked the way I suggest, you could still do stream.pipeline(a,b).pipe(c) and you could also do a.pipe(stream.pipeline(b, c)).pipe(d) |
It forwards errors and does cleanup. That's cumbersome without
It returns the last stream (
If |
OK, sounds like stream.pipeline() isn't going to change, so I'll try making this a feature request for a built-in way to combine streams. I think it's good to have this sort of stuff built in because then more people will get the error forwarding, cleanup, and proper backpressure that they might otherwise not bother implementing (or even realize they need to). |
I would tend to agree that this would be a nice API to add. The main difficulty is to add it with very little perf overhead (no double buffering, like pumpify/duplexify do). A good starting point could be to lift Duplexify and Pumpify and their tests and send a PR. More than anything else, this feature needs somebody willing to devote time to it. cc @ronag @mafintosh |
I'm -1 on this. A lot of things has happened in streams and I'm not convinced the way these are implemented are the best way to achieve the discussed functionality.
I might be interested in this at some point in the future. |
I'm in learning mode with streams (ie hobby project no deadline) so I wrote my own pumpify as a learning exercise. I created a transform stream and did all the fiddling to pass along back-pressure and errors and whatnot. But this could be much cleaner if it was built-in. All I want is a duplex stream interface that writes to the first stream in pipeline and reads from the last. I'm imagining something like:
|
new Duplex({
writeStream: <Writable>,
readStream: <Readable>,
}); @JasonWoof from which version of Node is that Duplex writeStream/readStream options supported? I cannot find any mention of this in the docs. @vweevers a question regarding .pipe(), it seems there is a lot of contradictory posts on whether I should handle the stream close/error/finish/end events, e.g. according to the Node docs it is not required to handle those events while piping, e.g. from this example
but then there are blog posts saying one should destroy the streams manually what is the correct approach, should we handle destroying the streams when they close? Actually there is a nearly hidden note on memory leaks due to not manually destroying the writable stream on read errors.
So should we only care about the error event and if the stream ends without error does it destroy itself automatically? For example, is this correctly handling the pipe (= only handling the readstream error events)? const readable = fs.createReadStream('x.txt')
const writable = fs.createWriteStream('y.txt')
readable.once('error' , (err) => {
writable.destroy(err)
})
readable.pipe(writable) Sorry for a little off-topic questions. |
You should use https://nodejs.org/api/stream.html#stream_stream_pipeline_source_transforms_destination_callback or the pump module on npm |
@alesmenzel none to date. That is my feature request. |
@JasonWoof oh, I misread that |
pipe is similar to pipeline however it supports stream composition. Refs: nodejs#32020
pipe is similar to pipeline however it supports stream composition. Refs: nodejs#32020
pipe is similar to pipeline however it supports stream composition. Refs: nodejs#32020
pipe is similar to pipeline however it supports stream composition. Refs: nodejs#32020
pipe is similar to pipeline however it supports stream composition. Refs: nodejs#32020
pipe is similar to pipeline however it supports stream composition. Refs: nodejs#32020
pipe is similar to pipeline however it supports stream composition. Refs: nodejs#32020
pipe is similar to pipeline however it supports stream composition. Refs: nodejs#32020
pipe is similar to pipeline however it supports stream composition. Refs: nodejs#32020
pipe is similar to pipeline however it supports stream composition. Refs: nodejs#32020
pipe is similar to pipeline however it supports stream composition. Refs: nodejs#32020
pipe is similar to pipeline however it supports stream composition. Refs: nodejs#32020
pipe is similar to pipeline however it supports stream composition. Refs: nodejs#32020
pipe is similar to pipeline however it supports stream composition. Refs: nodejs#32020
pipe is similar to pipeline however it supports stream composition. Refs: nodejs#32020
pipe is similar to pipeline however it supports stream composition. Refs: nodejs#32020
pipe is similar to pipeline however it supports stream composition. Refs: nodejs#32020
pipe is similar to pipeline however it supports stream composition. Refs: nodejs#32020
pipe is similar to pipeline however it supports stream composition. Refs: nodejs#32020
pipe is similar to pipeline however it supports stream composition. Refs: nodejs#32020
pipe is similar to pipeline however it supports stream composition. Refs: nodejs#32020
Refs: #32020 PR-URL: #39029 Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Michaël Zasso <[email protected]>
Refs: nodejs#32020 PR-URL: nodejs#39029 Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Backport-PR-URL:
Refs: nodejs#32020 PR-URL: nodejs#39029 Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Backport-PR-URL: nodejs#39563
Refs: nodejs#32020 PR-URL: nodejs#39029 Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Backport-PR-URL: nodejs#39563
Refs: nodejs#32020 PR-URL: nodejs#39029 Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Backport-PR-URL: nodejs#39563
Refs: nodejs#32020 PR-URL: nodejs#39029 Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Backport-PR-URL: nodejs#39563
Refs: nodejs#32020 PR-URL: nodejs#39029 Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Backport-PR-URL: nodejs#39563
Refs: nodejs#32020 PR-URL: nodejs#39029 Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Backport-PR-URL: nodejs#39563
Refs: nodejs#32020 PR-URL: nodejs#39029 Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Backport-PR-URL: nodejs#39563
Refs: nodejs#32020 PR-URL: nodejs#39029 Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Backport-PR-URL: nodejs#39563
Refs: nodejs#32020 PR-URL: nodejs#39029 Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Backport-PR-URL: nodejs#39563
Refs: #32020 PR-URL: #39029 Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Backport-PR-URL: #39563
What steps will reproduce the bug?
Then pipe some text to it eg:
echo "foo" | node reproduce.js
How often does it reproduce? Is there a required condition?
always
What is the expected behavior?
The text sent in should go through both transformations, eg output "FOOFOO"
What do you see instead?
The text piped in is only sent to the last transformation, eg output "FOO"
Additional information
The docs here don't say what this function returns:
https://nodejs.org/api/stream.html#stream_stream_pipeline_streams_callback
I'm saying that it should return a duplex stream so I can read and write to the ends of the pipeline.
The text was updated successfully, but these errors were encountered: