You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The default MaxBufferLength of PipeStream is _maxBufferLength = 200 * 1024 * 1024
The issue occurs when there is a file in linux, whose sizes are over the default MaxBufferLength.
Steps:
Given a JsonData1.txt, whose sizes are 210MB ( > 200MB), and a JsonData2.txt, whose sizes are 190MB (< 200MB)
Copy both JsonData1.txt and JsonData2.txt into /test/ in your linux.
Test the JsonData by attached test.zip file.
Config commandtext= "cat /test/JsonData1.txt" in app.config, and config other items.
Run it, then you will get a time out issue. Actually, it should spend about 17s, if you change _maxBufferLength = 300 * 1024 * 1024
Config commandtext= "cat /test/JsonData2.txt" in app.config.
The default MaxBufferLength of PipeStream is _maxBufferLength = 200 * 1024 * 1024
The issue occurs when there is a file in linux, whose sizes are over the default MaxBufferLength.
Steps:
Test.zip
The text was updated successfully, but these errors were encountered: