ovro-eovsa / ovro-lwa-solar-ops

Scripts and codes related to operations of OVRO-LWA for solar studies
MIT License
1 stars 4 forks source link

Feature request: change rsync to straight copy when copying from lustre #25

Closed yupinghuang closed 1 month ago

yupinghuang commented 1 month ago

There's very little need for rsync when getting data from lustre. It might be faster to just cp -r or use copytree under shutil.

binchensun commented 1 month ago

Good idea. Addressed in https://github.com/ovro-eovsa/ovro-lwa-solar-ops/pull/30. If the processing is done on the local server, download_msfiles() now uses cp instead of rsync. @yupinghuang