-
Notifications
You must be signed in to change notification settings - Fork 439
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
Pausing and resuming is causing the stream to remain stuck #899
Comments
We have the same issue: Stream remains stuck while fetching data. I looked into it and so far I think there is a timing issue inside incoming-message-stream.js I not about pause and resume in general, calling pause and resume makes it only more likely to happen. When it is stuck this.currentMessage is undefined before stream ends and when it happens it is almost to the end. Maybe this helps for someone who looks into it. |
We agree on the issue being caused by code somewhere inside |
@irgijs Have you tried version 6.0.1.? |
@mcwonka 6.0.1 does not work for us. Version 6.0.0 and previous versions do work. |
Hi @mcwonka, I was reading through the original thread of the PR #518 for adding pause and resume. That thread mentioned something related pause when there are few entries left: "I have fixed the problem. It happened when there were only a few records left when pause() was called. I have added another test case to verify that this problem is solved. Could you please test again?" I think this part is could related to what @mcwonka mentioned: "when it happens it is almost to the end." Therefore I through that try to reduce that package size like it is mentioned from the conversion from the original thread. I set an extra value under the connection configuration for reducing the packet Size which indeed resolves the stuck issue from test_pause_and_resume. However, I am not sure whether this is a stable fix or not. This is the documentation for the configuration key: This is how I modified the configuration: |
@MichaelSun90 I applied this workaround to our software but it does not seem to work ([email protected] / SQL Server 2017) |
@irgijs For the test_pause_and_resume.js that you provided, I only add the "packetSize:2046", then the issue seems to be solved. Is it possible that you added the packetsize to the config.authentication.options instead of config.options? It works for me. Without this packet size, the test script always hanging at row 920, after adding this, it seems went all the way. const config = { |
@MichaelSun90 This solution does work for the |
I'll be taking a look as soon as I can. Changing the Thank you for providing a test case, that'll be very helpful in reproducing this! |
Again, thank you for the report and the test case. Based on the test case, I was able to track down the issue and build a proper fix: diff --git a/src/incoming-message-stream.js b/src/incoming-message-stream.js
index 65c16d3..6c83497 100644
--- a/src/incoming-message-stream.js
+++ b/src/incoming-message-stream.js
@@ -64,13 +64,24 @@ class IncomingMessageStream extends Transform {
}
if (packet.isLast()) {
- this.currentMessage = undefined;
- // Wait until the current message was fully processed before we
- // continue processing any remaining messages.
- message.once('end', () => {
- this.processBufferedData(callback);
- });
- message.end(packet.data());
+ const endMessage = () => {
+ this.currentMessage = undefined;
+
+ // Wait until the current message was fully processed before we
+ // continue processing any remaining messages.
+ message.once('end', () => {
+ this.processBufferedData(callback);
+ });
+
+ message.end(packet.data());
+ };
+
+ if (message.isPaused()) {
+ message.on('resume', endMessage);
+ } else {
+ endMessage();
+ }
+
return;
} else {
this.currentMessage = message; I'll open a proper PR and push a new release as soon as I can. In the meantime, feel free to test using the above patch and let me know if that fixes the issue for you too! 🙇 |
@arthurschreiber Thank you for providing a patch. I can confirm your patch does work for our own software as well! |
@arthurschreiber It also works for us! Thanks! |
🎉 This issue has been resolved in version 6.1.2 🎉 The release is available on: Your semantic-release bot 📦🚀 |
@mcwonka @irgijs I just pushed |
We are running into an issue where the tedious stream remains stuck if the stream is paused and resumed multiple times. The stream is not resumed even though certain rows should be emitted into the stream pipeline.
It seems to be related to the data as this problem does not occur if the data is changed.
A script is attached to reproduce this problem. An
npm install
should be performed and the database authentication settings should be adjusted inside the script.test_pause_and_resume.zip
The text was updated successfully, but these errors were encountered: