Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/checkpoint-restore/criu.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Viennot <Nicolas.Viennot@twosigma.com>2020-05-21 20:40:17 +0300
committerAndrei Vagin <avagin@gmail.com>2020-10-20 10:18:24 +0300
commit7d79a58f4daa9ddda015fc0aaca2a60d156d12cc (patch)
tree57d69718d53db9ba64b5f3610572aed4a85c5b50 /Documentation
parent51c3f8a908b1738d7d268afc5bb0dd9a59f3d8a5 (diff)
img-streamer: introduction of criu-image-streamer
This adds the ability to stream images with criu-image-streamer The workflow is the following: 1) criu-image-streamer is started, and starts listening on a UNIX socket. 2) CRIU is started. img_streamer_init() is invoked, which connects to the socket. During dump/restore operations, instead of using local disk to open an image file, img_streamer_open() is called to provide a UNIX pipe that is sent over the UNIX socket. 3) Once the operation is done, img_streamer_finish() is called, and the UNIX socket is disconnected. criu-image-streamer can be found at: https://github.com/checkpoint-restore/criu-image-streamer Signed-off-by: Nicolas Viennot <Nicolas.Viennot@twosigma.com>
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/criu.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/Documentation/criu.txt b/Documentation/criu.txt
index ab63e461c..4e9b4132e 100644
--- a/Documentation/criu.txt
+++ b/Documentation/criu.txt
@@ -76,6 +76,11 @@ The following levels are available:
*-D*, *--images-dir* 'path'::
Use 'path' as a base directory where to look for sets of image files.
+*--stream*::
+ dump/restore images using criu-image-streamer.
+ See https://github.com/checkpoint-restore/criu-image-streamer for detailed
+ usage.
+
*--prev-images-dir* 'path'::
Use 'path' as a parent directory where to look for sets of image files.
This option makes sense in case of incremental dumps.