Details
Description
Downloading a file exceeding certain, system-dependent size with streamDownload and stepwise options turned on hangs and causes timeout.
I prepared a test which triggers the error. The patch file is pretty big, as I had to make a file enough big to make the timeout happen. Basing on my predictions, the size of the file triggering the error depends on FTP configuration and Java caching policy (no proof available yet). Working with plain Vsftpd server even 1mb files triggered timeouts. In the test environment the limit on my desktop is 5 mb. If the test passes, please make the file bigger.
My intepretation of the problem:
- Start downloading a file with size exceeding InputStream cache (on my pc approx. 1mb is the limit).
FtpOperations.java:373InputStream is = this.client.retrieveFileStream(remoteName);
- The server responds 150 and opens data connection.
[user_ftp] FTP response: Client "127.0.0.1", "150 Opening BINARY mode data connection for x (1048576 bytes)."
- The data connection does not end because InputStream is waiting for reads and it has not cached whole file. No "226 Transfer complete" response from server.
- Try to change directory as stepwise is turned on.
FtpOperations.java:387this.changeCurrentDirectory(currentDir);
- Camel hangs as the server is still in the data connection and we are waiting for response from CWD command.
Attachments
Attachments
Issue Links
- relates to
-
CAMEL-14506 came-ftp - streamDownload=true and stepwise=true for larger files could cause deadlock
- Resolved