4
4
import org .apache .commons .vfs2 .FileObject ;
5
5
import org .apache .commons .vfs2 .FileSystemException ;
6
6
import org .apache .commons .vfs2 .FileSystemOptions ;
7
- import org .apache .commons .vfs2 .Selectors ;
8
7
import org .apache .commons .vfs2 .impl .StandardFileSystemManager ;
9
8
import org .apache .commons .vfs2 .provider .sftp .IdentityInfo ;
10
9
import org .apache .commons .vfs2 .provider .sftp .SftpFileSystemConfigBuilder ;
@@ -35,6 +34,7 @@ public class SftpFileOutput
35
34
private final String userInfo ;
36
35
private final String host ;
37
36
private final int port ;
37
+ private final int maxConnectionRetry ;
38
38
private final String pathPrefix ;
39
39
private final String sequenceFormat ;
40
40
private final String fileNameExtension ;
@@ -82,6 +82,7 @@ private FileSystemOptions initializeFsOptions(PluginTask task)
82
82
if (task .getSecretKeyFilePath ().isPresent ()) {
83
83
IdentityInfo identityInfo = new IdentityInfo (new File ((task .getSecretKeyFilePath ().get ())), task .getSecretKeyPassphrase ().getBytes ());
84
84
SftpFileSystemConfigBuilder .getInstance ().setIdentityInfo (fsOptions , identityInfo );
85
+ logger .info ("set identity: {}" , task .getSecretKeyFilePath ().get ());
85
86
}
86
87
}
87
88
catch (FileSystemException e ) {
@@ -99,6 +100,7 @@ private FileSystemOptions initializeFsOptions(PluginTask task)
99
100
this .fsOptions = initializeFsOptions (task );
100
101
this .host = task .getHost ();
101
102
this .port = task .getPort ();
103
+ this .maxConnectionRetry = task .getMaxConnectionRetry ();
102
104
this .pathPrefix = task .getPathPrefix ();
103
105
this .sequenceFormat = task .getSequenceFormat ();
104
106
this .fileNameExtension = task .getFileNameExtension ();
@@ -204,6 +206,26 @@ private String getOutputFilePath()
204
206
private FileObject newSftpFile (URI sftpUri )
205
207
throws FileSystemException
206
208
{
207
- return manager .resolveFile (sftpUri .toString (), fsOptions );
209
+ int count = 0 ;
210
+ while (true ) {
211
+ try {
212
+ return manager .resolveFile (sftpUri .toString (), fsOptions );
213
+ }
214
+ catch (FileSystemException e ) {
215
+ if (++count == maxConnectionRetry ) {
216
+ throw e ;
217
+ }
218
+ logger .warn ("failed to connect sftp server: " + e .getMessage (), e );
219
+
220
+ try {
221
+ Thread .sleep (count * 1000 ); // milliseconds
222
+ }
223
+ catch (InterruptedException e1 ) {
224
+ // Ignore this exception
225
+ logger .warn (e .getMessage (), e );
226
+ }
227
+ logger .warn ("retry to connect sftp server: " + count + " times" );
228
+ }
229
+ }
208
230
}
209
231
}
0 commit comments