Jump to content

CRIU: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
Umawera (talk | contribs)
mNo edit summary
Line 50: Line 50:
* [http://dmtcp.sourceforge.net '''DMTCP''']
* [http://dmtcp.sourceforge.net '''DMTCP''']
* [https://ftg.lbl.gov/projects/CheckpointRestart/ '''BLCR''']
* [https://ftg.lbl.gov/projects/CheckpointRestart/ '''BLCR''']
* [https://ckpt.wiki.kernel.org '''Linux C/R''']


== External links ==
== External links ==

Revision as of 13:52, 23 November 2012

CRIU
Developer(s)OpenVZ Team
Stable release3.18 (April 22, 2023; 20 months ago (2023-04-22)[1]) [±]
Repository
Written inC and Assembler
Operating systemLinux
TypeProgramming tool
LicenseGNU GPL v.2
Websitehttp://criu.org

Checkpoint/Restore In Userspace, or CRIU, is a software tool for the Linux operating system. Using this tool, you can freeze a running application (or part of it) and checkpoint it to persistent storage as a 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 project is that it is mainly implemented in user space.

The project is currently under active development.

History

The initial version of CRIU software was presented to the Linux developers community by Pavel Emelianov, the OpenVZ team leader, on 15 July 2011. In September 2011, the project was presented at the Linux Plumbers Conference.[2]

In general, most of the attendees took a positive view of the project, which is proven by the fact that a number of kernel patches required for implementing the project were included in the mainline kernel. Linus Torvalds, however, was a bit skeptical:

A note on this: this is a project by various mad Russians to perform c/r mainly from userspace, with various oddball helper code added into the kernel where the need is demonstrated... However I'm less confident than the developers that it will all eventually work! So what I'm asking them to do is to wrap each piece of new code inside CONFIG_CHECKPOINT_RESTORE. So if it all eventually comes to tears and the project as a whole fails, it should be a simple matter to go through and delete all trace of it.

— Linus Torvalds, [3]

Project version 0.1 was released on July 23, 2012.

Use

The CRIU tool is being developed as part of the OpenVZ project. Though its main focus is to support the migration of containers, it allows you to check-point and restore the current state of running processes and process groups. The tool can currently be used on x86-64 systems only and supports the following features:

To support some of these features, additional kernel patches have to be applied to the kernel. The CRIU developers are currently focusing on including these patches in the mainline kernel. Some of the required patches have been already accepted and are part of the kernel (e.g., shared memory, Unix sockets, TCP/IP sockets).

TCP connection migration

One of the initial project goals was to support the migration of TCP connections, the biggest challenge being to suspend and then restore only one side of a connection. This was necessary for performing the live migration of containers (along with all their active network connections) between physical servers, the main scenario of using the checkpoint/restore feature in OpenVZ. To cope with this problem, a new feature, "TCP repair mode", was implemented. The feature was included in the v3.5 mainline Linux kernel[4] and provides users with additional means to disassemble and reconstruct TCP sockets without the necessity of exchanging network packets with the opposite side of the connection.

See also

The following projects provide functionality similar to CRIU:

  1. ^ "Release schedule".
  2. ^ http://www.linuxplumbersconf.org/2011/ocw/sessions/831
  3. ^ Linux kernel git commit, http://git.kernel.org/?p=linux/kernel/git/torvalds/linux.git;a=commit;h=099469502f62fbe0d7e4f0b83a2f22538367f734
  4. ^ http://lwn.net, «TCP connection repair»