Details
-
New Feature
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
0.2
-
None
-
none
Description
Existing java property 'org.apache.oodt.cas.pushpull.file.retrieval.system.recommended.thread.count' will still be treated as the ultimate max (reguardless of what each site it set to). This feature will allow number of connections to be restricted on a per site bases for the cases where sites restrict connections from a single IP to a given number. This will be configurable in the ExternalSources.xml file. The following source limits it's ftp connection to 'some.host.org' to 5 simultaneous download sessions:
<sources> ... <source host="some.host.org"> <login type="ftp" alias="host-alias"> <username>anonymous</username> <password>Brian.M.Foster@jpl.nasa.gov</password> <maxConn>5</maxConn> </login> </source> ... </sources>