checkpoint/restart python processes

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Neal Becker

    checkpoint/restart python processes

    Hi numeric processing fans. I'm pleased to report that you can now have
    convenient checkpoint/restart, at least if you are running fedora linux.

    Example:
    python -i blcr_mod.py <<< this will start python, then checkpoint it
    c_int(2) (ignore this debug)
    >>>
    [quit]

    cr_restart checkpoint.nbec ker1.23768 <<< this will restart
    >>>
    Berkeley Lab Checkpoint/Restart for Linux (BLCR)


    What I've done is:
    1) built 2 rpm packages for blcr. First installs everything except kernel
    module. 2nd is the kernel module, packaged for use with akmods, which will
    be (I think) the kmod format of choice in rpmfusion.

    2) made a python ctypes module to use it. This allows your python program
    to checkpoint itself. This is blcr_mod.py. (This is my first ctypes
    experience, be gentle)


    You will need a couple of packages from livna development to use this:
    rpm -q --whatprovides kmodtool
    kmodtool-1-7.fc8.noarch
    rpm -q --whatprovides akmods
    akmods-0.2.1-1.fc8.noarch

    You can find this stuff here:


    I grabbed the development srpms from livna and built them for my F8 machine.

    My stuff is here:




    Note: My RPM packages are provided as a convenience for fedora users. You
    can just get the original blcr tar files from the above mentioned url and
    build if you prefer, or if you are using a different linux distribution
    than I am.

Working...