Copy link to clipboard
Copied
Hi,
I am trying to upload large file 3-5 Gb to the ftp server and when i upload more then 2 larger files in parallel it stops the CF server, is there a way to see the number of active FTP connection so that i can restrict the user to not upload more then 2 files in parallel.
Thanks in advance everyone.
Copy link to clipboard
Copied
What is your ColdFusion version and update level? Generally, the settings for maximum number of request threads and maximum size of post data can be found in the Server Settings page in the ColdFusion Administrator. You should test by changing the settings.
Do you want a fine-grained view of the connections? Then you should monitor your application with FusionReactor or with Adobe's own Performance Monitoring Toolset.
Copy link to clipboard
Copied
Can you provide some additional information on what you're doing, along with your version number etc that @BKBK asked for? My feeling is that you're really overworking the CFFTP tag, if that's what you're using. I'd try to extract the FTP functionality from your CF app, so that CF is responsible for putting files in a given directory, then you're using your own command-line script that tracks the files currently being FTPd, and that script uses a command-line FTP client to actually move the files. I'm a little hazy on how you'd track the files being moved, but am fairly confident it's doable.
Dave Watts, Eidolon LLC
Copy link to clipboard
Copied
Hi Dave,
Server Product | ColdFusion 2016 |
Version | 2016.0.03.300466 |
This is code that i am using currently:
Copy link to clipboard
Copied
Copy link to clipboard
Copied
Thanks for the information.
More information required to give a clearer picture:
Copy link to clipboard
Copied
@Akash299451589siy , I now have second thoughts. My suggestion is: