storage theory
preface/prehight:
topic: Storage(share fileSystem(可共享文件系统,Access I/O existence bottleNeck,access read/write space slowly),BSD(block storage device,file not share,but access read/write space high),Object storage(both and merit))
brief description:
distributed (Object) fileSystem,block device,SFS(shared filesystem)
MDS(Metadata server) 存放的是数据属性非数据也!数据存在于OSD(object-based storage)
bottleNeck
Access interface (POSIX/MPI(message passing interface))
AFR(Acceptable Failure Rate)
DHT(Distributed Hash Table)
Redundancy protection,DP(Data Protect) method 
1,mirror
2,more than a copy(duplicate,repetition)
storage theory的更多相关文章
- Theory of Storage
		
https://www.intelligenteconomist.com/theory-of-storage/ The Theory of Storage describes features obs ...
 - Java I/O theory in system level
		
参考文章: JAVA NIO之浅谈内存映射文件原理与DirectMemory Java NIO 2.0 : Memory-Mapped Files | MappedByteBuffer Tutoria ...
 - [转] KVM storage performance and cache settings on Red Hat Enterprise Linux 6.2
		
Almost one year ago, I checked how different cache settings affected KVM storage subsystem performan ...
 - Distributed systems theory for the distributed systems engineer
		
Gwen Shapira, SA superstar and now full-time engineer at Cloudera, asked a question on Twitter that ...
 - Send custom commands to Mass Storage device
		
http://stackoverflow.com/questions/14363152/send-custom-commands-to-mass-storage-device I have devel ...
 - Azure Queue Storage 基本用法 -- Azure Storage 之 Queue
		
Azure Storage 是微软 Azure 云提供的云端存储解决方案,当前支持的存储类型有 Blob.Queue.File 和 Table. 笔者在<Azure File Storage 基 ...
 - Azure File Storage 基本用法 -- Azure Storage 之 File
		
Azure Storage 是微软 Azure 云提供的云端存储解决方案,当前支持的存储类型有 Blob.Queue.File 和 Table. 笔者在<Azure Blob Storage 基 ...
 - HTML5_06之拖放API、Worker线程、Storage存储
		
1.拖放API中源对象与目标对象事件间的数据传递: ①创建全局变量--污染全局对象: var 全局变量=null; src.ondragstart=function(){ 全局变量=数据值; ...
 - HTML5权威指南--Web Storage,本地数据库,本地缓存API,Web Sockets API,Geolocation API(简要学习笔记二)
		
1.Web Storage HTML5除了Canvas元素之外,还有一个非常重要的功能那就是客户端本地保存数据的Web Storage功能. 以前都是用cookies保存用户名等简单信息. 但是c ...
 
随机推荐
- phpcms在自定义模块中的自定义标签分页
			
如果你是一个经验丰富的phpcms二次开发人员,本篇文章可以忽略不计,因为这里的写法自己都觉得很恶心 今天在开发一个网站自建了一个模块叫做论坛模块,目录名称:luntan ...
 - cocos2d-x box2d使用调试绘图
			
cocos2d-x box2d使用调试绘图 复制TestCpp的GLES-Render.h和GLES-Render.cpp过来. 添加一个成员变量: GLESDebugDraw *m_debugDra ...
 - 如何在IIS 中配置应用程序(Convert to Application)?
			
1.打开IIS 2.选择待操作的虚拟目录 3.鼠标右键,点击"Convert to Application” 4.点击connect as 5.选中Specific user,并点击Set ...
 - Delphi中的消息截获(六种方法:Hook,SubClass,Override WndProc,Message Handler,RTTI,Form1.WindowProc:=@myfun)good
			
Windows是一个基于消息驱动的系统,因此,在很多时候,我们需要截获一些消息然后自己进行处理.而VCL系统又有一些特定的消息.下面对我所了解的delphi环境中截获消息进行一些总结. 就个 ...
 - Unix/Linux环境C编程入门教程(19)Red Hat Entetprise Linux 7.0环境搭建
			
位架构,包括英特尔X-86_64.Power和s390.动态定时能力将降低内核内部中断数量,Open vSwitch 2.0功能可调节虚拟机之间的流量.RHEL 7中默认的文件系统是XFS,包含了一个 ...
 - C语言的本质(2)——二进制、八进制、十六进制与十进制
			
二进制是计算技术中广泛采用的一种数制.二进制数据是用0和1两个数码来表示的数.它的基数为2,进位规则是"逢二进一",借位规则是"借一当二",由18世纪德国数理哲 ...
 - c语言结构体排序示例
			
设计性实验编程实现对学生成绩表的相关信息排序.实验要求:⑴ 建立一个由n个学生的考试成绩表,每条信息由学号.姓名和分数组成.⑵ 按学号排序,并输出排序结果.⑶ 按分数排序,分数相同的则按学号有序,并输 ...
 - 习题3.10  约瑟夫环 josephus问题
			
/* assume a header */ /* 双向循环链表 */ struct Node; typedef struct Node * PtrToNode; typedef PtrToNode L ...
 - Qt部件--烧肉
			
1,QSplitter
 - uva 10163 - Storage Keepers(01背包)
			
题目链接:10163 - Storage Keepers 题目大意:给出m为仓库的数量, 给出n为有守夜人的数量, 然后给出n个数值,为对应守夜人应付的酬劳,每个守夜人的能力与他需要的酬劳是相等的,并 ...