先看一段来自redbook的Strowize V7000的定义:An IBM Storwize V7000 system is a clustered, scalable, and midrange storage system, and an external virtualization device.

V7000最大的卖点是Virtualization。所谓的存储虚拟化是将不同厂商的存储设备放到一个Pool里以便统一管理,例如下图Storwize V7000(SVC)后面可以接IBM的DS8000,XIV,NetApp,EMC等其他厂商的设备。将这些设备的所有存储空间放到一个大的Pool里,跨设备之间做copy service,Data Migration。对后端存储做操作时对前端主机是透明的,因为前端host只看到一个Storwize V7000(or SVC)。

说到虚拟化,IBM除了Storwize V7000,还有SVC(SAN Volume controller)。两者运行的code都是一样的,只不过一个是作为Server(SVC),一个是作为Storage(Storwize V7K)。下图是一套Storwize V7000系统的组成部分,类似于DS3K/4K/5K,它也分Control Enclosure和Expansion Enclosure。

再看看Storwize V7000的硬件,Front view和Font view,硬件外观上看上去和DS3512很像,只不过Storwize V7000中叫做Node Canisters,而DS3512叫做Controller。每个Storwize V7000有一个或两个(optional)control enclosures,每个control enclosure都包括两个node canisters,磁盘及两个PSU。

重要的术语:

Control enclosure

A hardware unit that includes the chassis with a midplane for connection of node canisters, drives and power supplies with batteries.

Node canister

【类似于DS5K的Controller】

A hardware unit that includes the node electronics, fabric and service interfaces, serial-attached SCSI (SAS) expansion ports and direct connections to internal drives in the enclosure.

Expansion enclosure

A hardware unit that includes the chassis with a midplane for connection of expansion canisters, drives, and power supplies without batteries.

Expansion canister

【类似于DS5K扩展柜的ESM】

A hardware unit that includes the electronics to provide serial-attached SCSI (SAS) connections to the internal drives in the enclosure and SAS expansion ports for p_w_upload of additional expansion enclosures.

Cluster

Two node canisters in a control enclosure.

Managed Disk (MDisk)

A SCSI logical unit (aka LUN) built from an internal or external RAID array.

Storage pool

A collection of MDisks providing real capacity for volumes.

SVC: Managed Disk Group (MDG)

Volume

What the host operating system sees as a SCSI disk drive.

SVC: Virtual Disk (VDisk)

Cluster    
Cluster由2~8个节点组成,所有的配置,监控和服务进程是在Cluster level执行,configuration 是copy在Cluster里的所有node 上。Cluster只分配一个IP而不是每个node一个IP。其中一个Node会被选出成为“configuration node canister”,它是唯一一个来activate Cluster IP的node。如果这个node fail了,会重新选出新的“configuration node”,新的“configuration node”会接管这个IP。

I/O Groups:两个节点构成的类似AB控制器的一对, VDisk在同一个IOgroup的两个节点之间fail over, fail back

正常情况下,某个Volume的IO都是由I/O group里的同一个Node处理的。和DS3K/4K/5K一样,一个Volume也只有一个Preferred Owner(A控orB控,Node1orNode2),两个Node是以failover mode模式工作,即一个Node down掉时,另一个Node可以继续工作,而对主机没有impact。

一个Node就是一个SVC(SAN Volume controller),是个运行Linux的X Series服务器,提供虚拟化,copy service。两个Node组成一个Cluster。一个Cluster可以有1-4个Node paris。每个pair都是一个IO Group。IO group在配置Cluster的时候定义。每个Node只能在一个IO group里。

Managed Disk (MDisk)

Host端不会看到Managed disk,相反,他们看到的是Logical disks,也被称为Virtual disks。Managed disks再组成managed disk groups。组成Virtual disks的Managed disk必须来自同一个Managed disk group。每个Managed disk被分成多个Extents(默认16MB,16MB~8192MB),从0开始,一直到Managed disk的结束。建议一个system里所有Storage Pool都使用一个Extent,这是在两个Storage Pool之间做volume Migration的前提,当然如果extent不一样,可以使用volume Mirroring。

关于Mdisk,Storage Pool,Vdisk之间的关系,下图阐释的非常清楚。

Storage Pool

多个Mdisks(最多为128个)组成一个Storage Pool。


Quorum disk,Configuration Information是存在QuorumDisk上的,system里的所有node都可访问,Quorumdisk可以是一个Mdisk或者是Internal Drive,也是仲裁盘。一个Cluster由3个quorum disk,但只有一个是Active的。在V7K,Internal drive可以被认为是Quorum candidates。如果一个环境里有多个存储,那为了避免单个Storage坏掉而丢失Quorum disk,应该把Quorum disk分散在多个存储上。

Quorum disk是来决定当Cluster中的一个node offline 时,哪个node继续工作。In this tie-break situation, the first group of nodes that access the quorum disk marks their ownership of the quorum disk and as a result continues to operate as the cluster. If the other group of nodes cannot access the quorum disk or finds it owned by another group of nodes it stops operating as the cluster and does not handle I/O requests.

看下一个write request是怎么在V7000中完成的:

创建Vdisk时就已经define了preferred node,在上图中即node1,正常情况下所有对V1这个Vdisk的读写操作都是由node1完成的。

通过Node1 对Vdisk V1进行写操作请求(1),write data会copy一份到node2里,然后才会给主机返回一个写完成操作(2)。之后,node1会将cache数据destage到disk

总结:写操作时,处理IO的Node会将数据copy一份到IO group里的另一个Node,然后才会给主机返回一个write completion。读数据时,和其他storage一样,preferred node会先检查cache中有没有data。如果没有就从磁盘中读。如果IO group里的一个node fail了,另一个node会立刻接管过来,由于write data是在两个node之间mirror的,所以这种node failure不会造成data loss。Surviving node会将cache里的数据destage到disk并进入write-through mode,即所有write data直接写到disk而不经过cache。

转载于:https://blog.51cto.com/taotao1240/1599615

IBM Storwize V7000 Introduction(1)相关推荐

  1. 内置虚拟化,自动分层,重复数据删除,固态硬盘,IBM Storwize V7000亮点解析

    最近IBM 新一代中端虚拟存储产品Storwize V7000在业内反响挺大,Storwize V7000是一款被IBM寄予厚望的产品,在发布这款新品之前,IBM特意为其制作了具有强烈神秘感的广告,并 ...

  2. Android API Guides 安卓API指导----第一部分:Introduction(介绍)

    第一部分: Introduction(介绍) 目录包含:APP  Fundamentals     (应用程序基础) Device   Compatibility(设备兼容性) System Perm ...

  3. v7000 lun 扩展 oracle asm,IBM Storwize V7000 EasyTier介绍

    IBM Storwize V7000 EasyTier介绍 在之前的文章介绍到,storage pool是mdisk构成,mdisk是由外部或内存储构成.在正常的设置下,我们知道V7000 可以同时支 ...

  4. 如何写好科研论文:Introduction(2)

    导读 本系列[1]将切片介绍如何写好科研论文,包含了:摘要,背景介绍,方法,结果,讨论等. 由于翻译能力有限,强力推荐有需要的伙伴,直接在文末找到参考链接,阅读原文,谢谢. 标准 一个成功的 Intr ...

  5. TS Introduction(介绍)

    什么是TypeScript? TypeScript 是 微软开发的一门编程语言,是Javascript的一个超集, 遵循最新的ES6脚本语言规范,扩展了JavaScript语法. angular2框架 ...

  6. IBM MessageBroker笔记系列(一)

    查看全文 http://www.taodudu.cc/news/show-4443136.html 相关文章: 数据库 day60,61 Oracle入门,单行函数,多表查询,子查询,事物处理,约束, ...

  7. 数字图像处理(冈萨雷斯第三版)学习笔记 - Chapter 1 Introduction(1)

    前言: 本人是一名刚刚学习数字图像的小白,目前正在学习数字图像处理这门课程,所使用的教材是冈萨雷斯的经典书籍<数字图像处理>,学习的课程是由Duke大学Guillermo Sapiro教授 ...

  8. introduction(html)(1-26)

    去样式 a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, capt ...

  9. introduction(引言)—— 论文写作常用表达(不停更新)

    引言段落结构 para1: 主题的重要性,计算技术(人工技术)的局限,其在传统方法中应用的具体表现.对于某个痛点有重要的影响.有的期刊将参考文献放入了段落内部,以表达此处是引用发展历程的重点. par ...

最新文章

  1. 制备pdms膜的方法_四川大学杨伟团队JMCC:实现柔性压阻式压力传感器的规模化制备...
  2. 查看MS-SQL的安装版本及补丁
  3. WinSock服务程序
  4. 一不小心,知乎炸了!
  5. C和C++语言编程里面常用函数或者编程技巧总结(不断更新)
  6. Jenkins的Windows Slave分布式构建和部署
  7. jQuery jqGrid 文档
  8. 西南科技大学OJ题 折半查找的实现1010
  9. svn合并分支到主干
  10. jszip 解压压缩包_Node.js使用jszip实现打包zip压缩包
  11. maven仓库repositories和mirrors的配置及区别详解(轻松搞明白)
  12. 今日头条里放H5链接如何直接跳转到微信小商店
  13. Linux的sh脚本编写基础知识
  14. 二 Python 基本数据类型
  15. 走进大数据丨 一条让我虎躯一震的SQL
  16. Newton's Method 牛顿法求极值.
  17. SXMB_MONI传输记录报错:具有无效值 BE #SAP #PO #REST
  18. Google帝国的接班人,凭什么是他?
  19. wordpress最佳架构_2020年最受欢迎和最佳WordPress主题(专家精选)
  20. 探测器反向偏压_光电子技术题库

热门文章

  1. cookie和session的讲解
  2. numpy---(精简)
  3. 推荐:Java性能优化系列集锦
  4. 组合数据类型练习、英语词频统计
  5. Java Date的after和before方法解释
  6. ITK读取CT DICOM,如何设置窗位和窗宽?
  7. 自动化测试框架的一些建议
  8. [C语言]关于指针和int型的一道题目
  9. 非标自动化转行机器人_机器人与非标自动化这两个有什么区别?可以从结构,功能等方面谈谈吗?...
  10. npm安装报错Error: EPERM: operation not permitted解决方案