You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-issues@hadoop.apache.org by "Krishnamoorthy Dharmalingam (JIRA)" <ji...@apache.org> on 2014/09/17 11:38:33 UTC

[jira] [Created] (HADOOP-11100) Support to configure ftpClient.setControlKeepAliveTimeout

Krishnamoorthy Dharmalingam created HADOOP-11100:
----------------------------------------------------

             Summary: Support to configure  ftpClient.setControlKeepAliveTimeout 
                 Key: HADOOP-11100
                 URL: https://issues.apache.org/jira/browse/HADOOP-11100
             Project: Hadoop Common
          Issue Type: Improvement
          Components: fs
    Affects Versions: 2.3.0
            Reporter: Krishnamoorthy Dharmalingam
            Priority: Minor


In FTPFilesystem or Configuration, timeout is not possible to configure.
It is very straight forward to configure, in FTPFilesystem.connect() method.
 ftpClient.setControlKeepAliveTimeout


Like
private FTPClient connect() throws IOException {
...
String timeout = conf.get("fs.ftp.timeout." + host);
...
 ftpClient.setControlKeepAliveTimeout(new Integer(300));
....
}




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)