Details
Description
When we have tempFilename in camel uri and we use producer template to write file to remote ftp location , camel opens new connection for every file transfer. Though disconnect option is set to false in uri.
If we take out tempFilename from uri connections are reused
We can verify it by running attached sample.
Check the connections made from camel server to ftp server . Fire {{netstat -an|grep 10.80.14.56|wc -l]]
- When we have tempFileName in uri it will show 1 connection per file transfer
- Without tempFileName it will show only 1 connection for all files transfer.
Attachments
Attachments
Issue Links
- relates to
-
CAMEL-8860 Too many connection in TIME_WAIT when tempfilename is set in the FTP producer URI.
- Closed