Commit 149890a8 authored by Pavel Emelyanov's avatar Pavel Emelyanov Committed by GitHub

Add information about phaul, soccr and compel

parent b6bb8380
...@@ -8,6 +8,10 @@ collection of files. You can then use the files to restore and run the ...@@ -8,6 +8,10 @@ collection of files. You can then use the files to restore and run the
application from the point it was frozen at. The distinctive feature of the CRIU application from the point it was frozen at. The distinctive feature of the CRIU
project is that it is mainly implemented in user space. project is that it is mainly implemented in user space.
Also, CRIU provides a library for Live migration, and exposes two low-level
core features as standalone libraries. Thes are libcompel for parasite code
injection and libsoccr for TCP connections checkpoint-restore.
The project home is at http://criu.org. The project home is at http://criu.org.
Pages worth starting with are: Pages worth starting with are:
...@@ -18,13 +22,32 @@ Pages worth starting with are: ...@@ -18,13 +22,32 @@ Pages worth starting with are:
### A video tour on basic CRIU features ### A video tour on basic CRIU features
[![CRIU introduction](https://asciinema.org/a/7fnt2prsumvxiwf3ng61fgct3.png)](https://asciinema.org/a/7fnt2prsumvxiwf3ng61fgct3) [![CRIU introduction](https://asciinema.org/a/7fnt2prsumvxiwf3ng61fgct3.png)](https://asciinema.org/a/7fnt2prsumvxiwf3ng61fgct3)
### How to contribute ## Live migration
True [live migration](https://criu.org/Live_migration) using CRIU is possible, but doing
all the steps by hands might be complicated. The [phaul sub-project](https://criu.org/P.Haul)
provides a Go library that incapsulates most of the complexity.
## Parasite code ijection
In order to get state of the running process CRIU needs to make this process execute
some code, that would fetch the required information. To make this happen without
killing the application itself, CRIU uses the [parasite code injection](https://criu.org/Parasite_code)
technique, which is also available as a standalone library called [libcompel](https://criu.org/Compel).
## TCP sockets checkpoint-restore
One of the CRIu features is the ability to save and restore state of a TCP socket
without breaking the connection. This functionality is considered to be useful by
tiself, and we have it available as the [libsoccr library](https://criu.org/Libsoccr).
## How to contribute
* [How to submit patches](http://criu.org/How_to_submit_patches); * [How to submit patches](http://criu.org/How_to_submit_patches);
* Send all bug reports to [mailing * Send all bug reports to [mailing
list](https://lists.openvz.org/mailman/listinfo/criu); list](https://lists.openvz.org/mailman/listinfo/criu);
* Spread the word about CRIU in [social networks](http://criu.org/Contacts); * Spread the word about CRIU in [social networks](http://criu.org/Contacts);
### Licence ## Licence
The project is licensed under GPLv2 (though files sitting in the lib/ directory are LGPLv2.1). The project is licensed under GPLv2 (though files sitting in the lib/ directory are LGPLv2.1).
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment