Hey Jon,

I'm not sure whether it uses compression natively, but you could always
pipe your dump into gzip on the remote end and ungzip the resulting string
when it gets to you.  I've never tried this before, so there might be some
kind of encoding problems that give you issues.  In that case (and if the
data was particularly compressible) you might want to try piping the
gzipped stream into base64 for the transit, though that would take more
space than ideal (you might still get some bandwidth savings depending on
your data).


On Thu, Oct 10, 2013 at 1:43 PM, Jon Dufresne <jon.dufre...@gmail.com>wrote:

> Does Fabric support SSH compression? Is this something that I need to
> configure at the SSH level or the Fabric level?
>
> For transmitting large amounts of text. SSH compression would greatly
> improve performance.
>
> I'm doing something like the following:
>
> run('mysqldump bigdatabase', stdout=open('local.sql'))
>
> Thanks,
> Jon
>
> _______________________________________________
> Fab-user mailing list
> Fab-user@nongnu.org
> https://lists.nongnu.org/mailman/listinfo/fab-user
>
_______________________________________________
Fab-user mailing list
Fab-user@nongnu.org
https://lists.nongnu.org/mailman/listinfo/fab-user

Reply via email to