Enable scp compression on remote executor to try to improve data
authorScott <[email protected]>
Tue, 25 Jan 2022 04:20:16 +0000 (20:20 -0800)
committerScott <[email protected]>
Tue, 25 Jan 2022 04:20:16 +0000 (20:20 -0800)
xfer times.

executors.py

index dcc21806efa33e10b9cf507c373205e7c2f4cb62..399e32d14d33c3b3097a6457f762c76439785f5e 100644 (file)
@@ -63,7 +63,7 @@ parser.add_argument(
 )
 
 SSH = '/usr/bin/ssh -oForwardX11=no'
-SCP = '/usr/bin/scp'
+SCP = '/usr/bin/scp -C'
 
 
 def make_cloud_pickle(fun, *args, **kwargs):