Btrfsは順番にスナップショットを送りますか? (非同期複製)

Btrfsは順番にスナップショットを送りますか? (非同期複製)

インターネットからBtrfs増分スナップショットを順番に送信する方法を説明するこのページが見つかりました。

https://arstechnica.com/civis/viewtopic.php?f=16&t=1226135

そこでインターネットを検索しましたが、それに関連するコンテンツが見つかりませんでした(非同期複製?)。

たとえば、スナップショットがあります。

$ btrfs sub snapshot dir snaps/1
$ btrfs sub snapshot dir snaps/2
$ btrfs sub snapshot dir snaps/3

btrfs send1、3、2をどのように効果的に実行できますか?

また、ページ裏面には「必要に応じて戻ることができます」と書かれています。 3個、2個、1個ができますかbtrfs send?どのように?

また、順番に送信するのは、順番に送信するよりも受信側でより多くのスペースを占めていますか?

これが私が見つけることができる最も近い手がかりですが、私が理解しにくい例を使用します。https://btrfs.wiki.kernel.org/index.php/FAQ#What_is_the_difference_ Between_-c_and_-p_in_send.3F

ベストアンサー1

# Send 3 then 1 then 2
btrfs send 3
btrfs send -c 3 1      # Send 1 and Subtract data matching 3
btrfs send -c 3 -p 1 2 # Send 2 with Parent of 1, and Subtract data matching 3

# Send 3 then 2 then 1
btrfs send 3
btrfs send -c 3 2      # Send 2 and Subtract data matching 3
btrfs send -c 3 -c 2 1 # Send 1 and Subtract data matching 2 and 3

おすすめ記事