]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph-client.git/commit
ceph: OSD client
authorSage Weil <sage@newdream.net>
Mon, 5 Oct 2009 22:47:30 +0000 (15:47 -0700)
committerSage Weil <sage@newdream.net>
Mon, 5 Oct 2009 22:47:30 +0000 (15:47 -0700)
commite56a3a7e970e5764f6a50fab6cfe804c73b77991
tree5d2449f2ab3efff693570646ec62f3c1e43ab092
parent7ef7c1f702d8d4278a03d0a733a4f8abca030817
ceph: OSD client

The OSD client is responsible for reading and writing data from/to the
object storage pool.  This includes determining where objects are
stored in the cluster, and ensuring that requests are retried or
redirected in the event of a node failure or data migration.

If an OSD does not respond before a timeout expires, keepalive
messages are sent across the lossless, ordered communications channel
to ensure that any break in the TCP is discovered.  If the session
does reset, a reconnection is attempted and affected requests are
resent (by the message transport layer).

Signed-off-by: Sage Weil <sage@newdream.net>
fs/ceph/osd_client.c [new file with mode: 0644]
fs/ceph/osd_client.h [new file with mode: 0644]
fs/ceph/osdmap.c [new file with mode: 0644]
fs/ceph/osdmap.h [new file with mode: 0644]