我怎么知道 google rsync 是否正常工作
how can i know if google rsync is working
我是运行 gsutil rsync,结果出来了。
# gsutil -m rsync /mydata/ gs://mybucket/
WARNING: gsutil rsync uses hashes when modification time is not available at
both the source and destination. Your crcmod installation isn't using the
module's C extension, so checksumming will run very slowly. If this is your
first rsync since updating gsutil, this rsync can take significantly longer than
usual. For help installing the extension, please see "gsutil help crcmod".
Building synchronization state...
Starting synchronization...
然后我尝试通过 "ps -aux" 命令了解 google rsync 是否正在工作,但是没有 gsutil 或类似 rsync 的东西。
大约 30 次模拟后,我确实检查了 google 存储桶,但没有任何变化。没有什么可以上传。
我怎么知道 google rsync 是否 运行
谁能帮帮我
我明白了。在我的例子中,我想要同步的文件夹有几个子文件夹。
# gsutil -m rsync /my_parent_folder/ gs://mybucket/
这里是我的文件:/my_parent_folder/child_folder/child_folder/my_file.txt
然后我试图同步最后一个子文件夹并成功完成。
# gsutil -m rsync /my_parent_folder/child_folder/child_folder/ gs://mybucket/
我也误解了"google rsync is working"。我以为我 运行 上面的命令一次,然后当我的文件有更改时我的文件可以自动同步。
但似乎每当我想同步文件时,我必须再次 运行 上面的命令。
但另一个问题。如何从我的父文件夹同步。我的子文件夹不固定。这取决于创建文件的应用程序中的日期时间和用户名等条件。
我是运行 gsutil rsync,结果出来了。
# gsutil -m rsync /mydata/ gs://mybucket/
WARNING: gsutil rsync uses hashes when modification time is not available at
both the source and destination. Your crcmod installation isn't using the
module's C extension, so checksumming will run very slowly. If this is your
first rsync since updating gsutil, this rsync can take significantly longer than
usual. For help installing the extension, please see "gsutil help crcmod".
Building synchronization state...
Starting synchronization...
然后我尝试通过 "ps -aux" 命令了解 google rsync 是否正在工作,但是没有 gsutil 或类似 rsync 的东西。
大约 30 次模拟后,我确实检查了 google 存储桶,但没有任何变化。没有什么可以上传。
我怎么知道 google rsync 是否 运行 谁能帮帮我
我明白了。在我的例子中,我想要同步的文件夹有几个子文件夹。
# gsutil -m rsync /my_parent_folder/ gs://mybucket/
这里是我的文件:/my_parent_folder/child_folder/child_folder/my_file.txt 然后我试图同步最后一个子文件夹并成功完成。
# gsutil -m rsync /my_parent_folder/child_folder/child_folder/ gs://mybucket/
我也误解了"google rsync is working"。我以为我 运行 上面的命令一次,然后当我的文件有更改时我的文件可以自动同步。 但似乎每当我想同步文件时,我必须再次 运行 上面的命令。
但另一个问题。如何从我的父文件夹同步。我的子文件夹不固定。这取决于创建文件的应用程序中的日期时间和用户名等条件。