欢迎来到第壹文秘! | 帮助中心 分享价值,成长自我!
第壹文秘
全部分类
  • 幼儿/小学教育>
  • 中学教育>
  • 高等教育>
  • 研究生考试>
  • 外语学习>
  • 资格/认证考试>
  • 论文>
  • IT计算机>
  • 法律/法学>
  • 建筑/环境>
  • 通信/电子>
  • 医学/心理学>
  • ImageVerifierCode 换一换
    首页 第壹文秘 > 资源分类 > PPT文档下载
    分享到微信 分享到微博 分享到QQ空间

    operatingsystem操作系统ch12massstoragesystems49.ppt

    • 资源ID:465168       资源大小:584.50KB        全文页数:48页
    • 资源格式: PPT        下载积分:10金币
    快捷下载 游客一键下载
    账号登录下载
    三方登录下载: 微信开放平台登录 QQ登录
    下载资源需要10金币
    邮箱/手机:
    温馨提示:
    快捷下载时,如果您不填写信息,系统将为您自动创建临时账号,适用于临时下载。
    如果您填写信息,用户名和密码都是您填写的【邮箱或者手机号】(系统自动生成),方便查询和重复下载。
    如填写123,账号就是123,密码也是123。
    支付方式: 支付宝    微信支付   
    验证码:   换一换

    加入VIP,免费下载
     
    账号:
    密码:
    验证码:   换一换
      忘记密码?
        
    友情提示
    2、PDF文件下载后,可能会被浏览器默认打开,此种情况可以点击浏览器菜单,保存网页到桌面,就可以正常下载了。
    3、本站不支持迅雷下载,请使用电脑自带的IE浏览器,或者360浏览器、谷歌浏览器下载即可。
    4、本站资源下载后的文档和图纸-无水印,预览文档经过压缩,下载后原文更清晰。
    5、试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。

    operatingsystem操作系统ch12massstoragesystems49.ppt

    12.2nOverview of Mass Storage StructurenDisk StructurenDisk AttachmentnDisk SchedulingnDisk ManagementnSwap-Space ManagementnRAID StructurenDisk AttachmentnStable-Storage ImplementationnTertiary Storage DevicesnOperating System IssuesnPerformance Issues12.3nDescribe the physical structure of secondary and tertiary storage devices and the resulting effects on the uses of the devicesnExplain the performance characteristics of mass-storage devicesnDiscuss operating-system services provided for mass storage,including RAID and HSM12.4nMagnetic disks provide bulk of secondary storage of modern computerslDrives rotate at 60 to 200 times per secondlTransfer rate is rate at which data flow between drive and computerlPositioning time(random-access time)is time to move disk arm to desired cylinder(seek time)and time for desired sector to rotate under the disk head(rotational latency)lHead crash results from disk head making contact with the disk surface4Thats badnDisks can be removablenDrive attached to computer via I/O buslBusses vary,including EIDE,ATA,SATA,USB,Fibre Channel,SCSIlHost controller in computer uses bus to talk to disk controller built into drive or storage array12.512.6nMagnetic tapelWas early secondary-storage mediumlRelatively permanent and holds large quantities of datalAccess time slowlRandom access 1000 times slower than disklMainly used for backup,storage of infrequently-used data,transfer medium between systemslKept in spool and wound or rewound past read-write headlOnce data under head,transfer rates comparable to diskl20-200GB typical storagelCommon technologies are 4mm,8mm,19mm,LTO-2 and SDLT12.7nDisk drives are addressed as large 1-dimensional arrays of logical blocks,where the logical block is the smallest unit of transfer.nThe 1-dimensional array of logical blocks is mapped into the sectors of the disk sequentially.lSector 0 is the first sector of the first track on the outermost cylinder.lMapping proceeds in order through that track,then the rest of the tracks in that cylinder,and then through the rest of the cylinders from outermost to innermost.12.8nHost-attached storage accessed through I/O ports talking to I/O bussesnSCSI itself is a bus,up to 16 devices on one cable,SCSI initiator requests operation and SCSI targets perform tasks lEach target can have up to 8 logical units(disks attached to device controllernFC is high-speed serial architecturelCan be switched fabric with 24-bit address space the basis of storage area networks(SANs)in which many hosts attach to many storage unitslCan be arbitrated loop(FC-AL)of 126 devices12.9nNetwork-attached storage(NAS)is storage made available over a network rather than over a local connection(such as a bus)nNFS and CIFS are common protocolsnImplemented via remote procedure calls(RPCs)between host and storagenNew iSCSI protocol uses IP network to carry the SCSI protocol12.10nCommon in large storage environments(and becoming more common)nMultiple hosts attached to multiple storage arrays-flexible12.11nThe operating system is responsible for using hardware efficiently for the disk drives,this means having a fast access time and disk bandwidth.nAccess time has two major componentslSeek time is the time for the disk are to move the heads to the cylinder containing the desired sector.lRotational latency is the additional time waiting for the disk to rotate the desired sector to the disk head.nMinimize seek timenSeek time seek distancenDisk bandwidth is the total number of bytes transferred,divided by the total time between the first request for service and the completion of the last transfer.12.12nSeveral algorithms exist to schedule the servicing of disk I/O requests.nWe illustrate them with a request queue(0-199).98,183,37,122,14,124,65,67Head pointer 5312.13Illustration shows total head movement of 640 cylinders.12.14nSelects the request with the minimum seek time from the current head position.nSSTF scheduling is a form of SJF scheduling;may cause starvation of some requests.nIllustration shows total head movement of 236 cylinders.12.1512.16nThe disk arm starts at one end of the disk,and moves toward the other end,servicing requests until it gets to the other end of the disk,where the head movement is reversed and servicing continues.nSometimes called the elevator algorithm.nIllustration shows total head movement of 208 cylinders.12.1712.18nProvides a more uniform wait time than SCAN.nThe head moves from one end of the disk to the other.servicing requests as it goes.When it reaches the other end,however,it immediately returns to the beginning of the disk,without servicing any requests on the return trip.nTreats the cylinders as a circular list that wraps around from the last cylinder to the first one.12.1912.20nVersion of C-SCANnArm only goes as far as the last request in each direction,then reverses direction immediately,without first going all the way to the end of the disk.12.2112.22nSSTF is common and has a natural appealnSCAN and C-SCAN perfo

    注意事项

    本文(operatingsystem操作系统ch12massstoragesystems49.ppt)为本站会员(p**)主动上传,第壹文秘仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知第壹文秘(点击联系客服),我们立即给予删除!

    温馨提示:如果因为网速或其他原因下载失败请重新下载,重复下载不扣分。




    关于我们 - 网站声明 - 网站地图 - 资源地图 - 友情链接 - 网站客服 - 联系我们

    copyright@ 2008-2023 1wenmi网站版权所有

    经营许可证编号:宁ICP备2022001189号-1

    本站为文档C2C交易模式,即用户上传的文档直接被用户下载,本站只是中间服务平台,本站所有文档下载所得的收益归上传人(含作者)所有。第壹文秘仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。若文档所含内容侵犯了您的版权或隐私,请立即通知第壹文秘网,我们立即给予删除!

    收起
    展开