Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | ceph: negotiate authentication protocol; implement AUTH_NONE protocol | Sage Weil | 2009-11-18 | 1 | -0/+4 |
| | | | | | | | | | | | | | | | | When we open a monitor session, we send an initial AUTH message listing the auth protocols we support, our entity name, and (possibly) a previously assigned global_id. The monitor chooses a protocol and responds with an initial message. Initially implement AUTH_NONE, a dummy protocol that provides no security, but works within the new framework. It generates 'authorizers' that are used when connecting to (mds, osd) services that simply state our entity name and global_id. This is a wire protocol change. Signed-off-by: Sage Weil <sage@newdream.net> | ||||
* | ceph: build cleanly without CONFIG_DEBUG_FS | Sage Weil | 2009-11-12 | 1 | -0/+2 |
| | | | | Signed-off-by: Sage Weil <sage@newdream.net> | ||||
* | ceph: OSD client | Sage Weil | 2009-10-06 | 1 | -0/+144 |
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> |