ceph distributed storage , suse storage based on it

简介:
早上起床的时候看朋友圈, 看到少聪分享的一个suse storage的链接(基于ceph改的), 非常棒.
ceph是一个很好的开源分布式存储, 光看介绍已经很兴奋了.
先记录一下, 好好研究.

Ceph is a distributed object store and file system designed to provide excellent performance, reliability and scalability.

OBJECT STORAGE
Ceph provides seamless access to objects using native language bindings or radosgw, a REST interface that’s compatible with applications written for S3 and Swift.

BLOCK STORAGE
Ceph’s RADOS Block Device (RBD) provides access to block device images that are striped and replicated across the entire storage cluster.

FILE SYSTEM
Ceph provides a POSIX-compliant network file system that aims for high performance, large data storage, and maximum compatibility with legacy applications.

WELCOME TO CEPH

Ceph uniquely delivers object, block, and file storage in one unified system.

CEPH OBJECT STORE

  • RESTful Interface
  • S3- and Swift-compliant APIs
  • S3-style subdomains
  • Unified S3/Swift namespace
  • User management
  • Usage tracking
  • Striped objects
  • Cloud solution integration
  • Multi-site deployment
  • Disaster recovery

CEPH BLOCK DEVICE

  • Thin-provisioned
  • Images up to 16 exabytes
  • Configurable striping
  • In-memory caching
  • Snapshots
  • Copy-on-write cloning
  • Kernel driver support
  • KVM/libvirt support
  • Back-end for cloud solutions
  • Incremental backup

CEPH FILESYSTEM

  • POSIX-compliant semantics
  • Separates metadata from data
  • Dynamic rebalancing
  • Subdirectory snapshots
  • Configurable striping
  • Kernel driver support
  • FUSE support
  • NFS/CIFS deployable
  • Use with Hadoop (replace HDFS)

[参考]
1.  http://ceph.com/
相关文章
|
存储 监控 文件存储
|
存储 安全 文件存储
Network Attached Storage
Network Attached Storage
88 0
|
存储 Web App开发 移动开发
storage
在HTML5出现之前,如果开发者需要在客户端存储少量的数据,只能通过cookie来实现,但是cookie存在几个不足点: 每个域名下cookie的大小限制在4KB。 cookie会包含在每个http请求中,这样会导致发送重复的数据。 cookie在网络传输过程中没有加密,存在安全隐患。 在HTML5新增了Web storage功能,Web Storage官方建议为每个网站是5MB,能存储比cookie更多的数据,并且具有比cookie更强大的功能。Web Storage现在已经得到了Firefox、Opera、Chrome、Safari各主流浏览器的支持。
281 0
storage
|
JavaScript 前端开发
|
JavaScript 前端开发 内存技术
|
NoSQL Redis
Redis+KVStore: Disk-based Storage for Massive Data
What do we do when data exceeds the capacity but has to be stored on disks? How can we encapsulate KVStore and integrate it into Redis?
1907 0