lkml.org 
[lkml]   [2011]   [Dec]   [22]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
Subject[PATCH V2 0/6] drivers/staging: ramster: multi-machine memory capacity management
[PATCH V2 0/6] drivers/staging: ramster: multi-machine memory capacity management

HIGH LEVEL OVERVIEW

RAMster implements peer-to-peer transcendent memory, allowing a "cluster" of
kernels to dynamically pool their RAM so that a RAM-hungry workload on one
machine can temporarily and transparently utilize RAM on another machine which
is presumably idle or running a non-RAM-hungry workload. Other than the
already-merged cleancache patchset and the not-yet-merged frontswap patchset,
no core kernel changes are currently required.

(Note that, unlike previous public descriptions of RAMster, this implementation
does NOT require synchronous "gets" or core networking changes.)

RAMster combines the clustering and messaging foundation of the ocfs2
filesystem implementation with the in-kernel compression implementation
of zcache, and adds code to glue them together. When a page is "put"
to RAMster, it is compressed and stored locally. Periodically, a thread
will "remotify" these pages by sending them via messages to a remote machine.
When the page is later needed as indicated by a page fault, a "get" is issued.
If the data is local, it is uncompressed and the fault is resolved. If the
data is remote, a message is sent to fetch the data and the faulting thread
sleeps; when the data arrives, the thread awakens, the data is decompressed
and the fault is resolved.

The mechanism works today for a two-node cluster. Some simple policy
is in place that will need to be refined over time. Larger clusters
and fault-resistant protocols can also be added over time.

A git branch containing these patches can be found at:
git://oss.oracle.com/git/djm/tmem.git #ramster-v2
Note that that tree also includes frontswap-v11.

Signed-off-by: Dan Magenheimer <dan.magenheimer@oracle.com>

---

Diffstat:
drivers/staging/Kconfig | 2 +
drivers/staging/Makefile | 1 +
drivers/staging/ramster/Kconfig | 14 +
drivers/staging/ramster/Makefile | 2 +
drivers/staging/ramster/cluster/Makefile | 5 +
drivers/staging/ramster/cluster/heartbeat.c | 2636 ++++++++++++++++
drivers/staging/ramster/cluster/heartbeat.h | 92 +
drivers/staging/ramster/cluster/masklog.c | 155 +
drivers/staging/ramster/cluster/masklog.h | 219 ++
drivers/staging/ramster/cluster/netdebug.c | 543 ++++
drivers/staging/ramster/cluster/nodemanager.c | 989 ++++++
drivers/staging/ramster/cluster/nodemanager.h | 88 +
drivers/staging/ramster/cluster/ocfs2_heartbeat.h | 38 +
.../staging/ramster/cluster/ocfs2_nodemanager.h | 45 +
drivers/staging/ramster/cluster/quorum.c | 331 ++
drivers/staging/ramster/cluster/quorum.h | 36 +
drivers/staging/ramster/cluster/sys.c | 82 +
drivers/staging/ramster/cluster/sys.h | 33 +
drivers/staging/ramster/cluster/tcp.c | 2255 +++++++++++++
drivers/staging/ramster/cluster/tcp.h | 156 +
drivers/staging/ramster/cluster/tcp_internal.h | 249 ++
drivers/staging/ramster/cluster/ver.c | 42 +
drivers/staging/ramster/cluster/ver.h | 31 +
drivers/staging/ramster/ramster.h | 117 +
drivers/staging/ramster/ramster_o2net.c | 419 +++
drivers/staging/ramster/tmem.c | 853 +++++
drivers/staging/ramster/tmem.h | 244 ++
drivers/staging/ramster/zcache-main.c | 3318 ++++++++++++++++++++
drivers/staging/ramster/zcache.h | 22 +
29 files changed, 13017 insertions(+), 0 deletions(-)


\
 
 \ /
  Last update: 2011-12-22 16:53    [W:1.411 / U:0.028 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site