首页 > 其他分享 >CSCI-GA.2250-001 IO Scheduling

CSCI-GA.2250-001 IO Scheduling

时间:2024-08-12 12:37:51浏览次数:5  
标签:CSCI request queue 001 iomake IO time Scheduling disk

Programming Assignment #4 (Lab 4): IO Scheduling

Professor Hubertus Franke

Class CSCI-GA.2250-001 Summer 2024

In this lab you will implement and simulate the scheduling and optimization of I/O operations for a hard disk. Applications

submit their block IO requests (bio) to the IO subsystem [ Block Layer ] (potentially via the filesystem), where they are

maintained in an IO-queue until the disk device is ready for servicing another request. The IO-scheduler then selects a request

from the IO-queue and submits it to the disk device. This selection is commonly known as the strategy() routine in

operating systems and shown in the figure below. On completion, another request can be taken from the IO-queue and

submitted to the disk. The scheduling policies will allow for some optimization as to reduce disk head movement or overall

wait time in the system.

The schedulers that need to be implemented are FIFO (N), SSTF (S), LOOK (L), CLOOK (C), and FLOOK (F)

(the letters in bracket define which parameter must be given in the –s program flag shown below).

You are to implement these different IO-schedulers in C or C++ and submit the source code and Makefile as a *.zip, *.tar or

*.tar.Z, which we will compile and run. Please test on linserv*.cims.nyu.edu before submission.

Invocation is as follows:

./iosched [ –s<schedalgo> | -v | -q | -f ] <inputfile>

Only the “-s” option is required. The default scheduler is fifo is “-s” is not supplied. Options as usual can be in any order.

The input file is structured as follows: Lines starting with ‘#’ are comment lines and should be ignored.

Any other line describes an IO operation where the 1st integer is the time step at which the IO operation is issued and the 2nd

integer is the track that is accesses. Since IO operation latencies are largely dictated by seek delay (i.e. moving the head to the

correct track), we ignore rotational and transfer delays for simplicity. The inputs are well formed.

#io generator

#numio=32 maxtracks=512 lambda=10.000000

1 339

131 401

:

We assume that moving the head by one track will cost one time unit. As a result, your simulation can/should be done using

integers. The disk can only consume/process one IO request at a time. Once a request is active on the disk it cannot be

interrupted by any other incoming request. Hence these requests must be maintained in an IO queue and managed according

to the scheduling policy. The initial direction of the LOOK algorithms is from 0-tracks to higher tracks. The head is initially

positioned at track=0 at time=0. Note that you do not have to know the maxtrack (think SCAN vs. LOOK).Programming Assignment #4 (Lab 4): IO Scheduling

Professor Hubertus Franke

Class CSCI-GA.2250-001 Summer 2024

Each simulation should print information on individual IO requests followed by a SUM line that has computed some statistics

of the overall run. (see reference outputs).

For each IO request create an info line (5 requests shown) in the order of appearance in the input file.

0: 1 1 431

1: 87 467 533

2: 280 431 467

3: 321 533 762

4: 505 762 791

Created by

printf("%5d: %5d %5d %5d\n", iop, req->arr_time, r->start_time, r->end_time);

args: IO-op#, its arrival to the system (same as from inputfile), its disk service start time, its disk service end time

Please remember “ %5d” is not “%6d” !!! For C++ formatting refer back to lab2 and lab3 where similar outputs were created.

and for the statistics of the simulation provide a SUM line ( note variables printed as “%lf” are double floats ).

Created by: printf("SUM: %d %d %.4lf %.2lf %.2lf %d\n",

total_time, tot_movement, io_utilization,

avg_turnaround, avg_waittime, max_waittime);

total_time:

total simulated time, i.e. until the last I/O request has completed.

tot_movement:

total number of tracks the head had to be moved

io_utilization: ratio of time_io_was_busy / total_time

avg_turnaround:

average turnaround time per operation from time of submission to time of completion

avg_waittime:

average wait time per operation (time from submission to issue of IO request to start disk operation)

max_waittime:

maximum wait time for any IO operation.

10 sample inputs and outputs and runit/gradeit scripts are provided with the assignment on NYU brightspace.

Please look at the sum results and identify what different characteristics the schedulers exhibit.

You can make the following assumptions (enforced and caught by the reference program).

- at most 10000 IO operations will be tested, so its OK (recommended) to first read all requests from file before processing.

- all io-requests are provided in increasing time order (no sort needed)

- you never have two IO requests arrive at the same time (so input is monotonically increasing)

I strongly suggest, you do not use discrete event simulation this time. You can write a simple loop that increments simulation

time by one and checks whether any action is to be taken. In that case you have to check in the following order.

The code structure should look something like this (there are some edge conditions you have to consider, such as the next I/O

is for the track the head currently is at, etc. ):

while (true)

if a new I/O arrived at the system at this current time

→ add request to IO-queue

if an IO is active and completed at this time

→ Compute relevant info and store in the IO request for final summary

if no IO request active now

if requests are pending

→ Fetch the next request from IO-queue and start the new IO.

else if all IO from input file processed

→ exit simulation

if an IO is active

→ Move the head by one unit in the direction its going (to simulate seek)

Increment time by 1

When switching queues in FLOOK you always continue in the direction you were going from the current position, until the

queue is empty. Then you switch direction until empty and then switch the queues continuing into that direction and so forth.

While other variants are possible, I simply chose this one this time though other variants make also perfect sense.Programming Assignment #4 (Lab 4): IO Scheduling

Professor Hubertus Franke

Class CSCI-GA.2250-001 Summer 2024

Additional Information:

As usual, I provide some more detailed tracing information to help you overcome problems. Note your code only needs to

provide the result line per IO request and the ‘SUM line’.

The reference program under ~frankeh/Public/lab4/iosched on the cims machine implements three additional options: –v, -q,

-f to debug deeper into IO tracing and IO queues.

The –v execution trace contains 3 different operations (add a request to the IO-queue, issue an operation to the disk and

finish a disk operation). Following is an example of tracking IO-op 18 through the times 1151..1307 from submission to

completion.

1151: 18 add 221 // 18 is the IO-op # (starting with 0) and 221 is the track# requested

1239: 18 issue 221 289 // 18 is the IO-op #, 221 is the track# requested, 289 is the current track#

1307: 18 finish 68 // 18 is the IO-op #, 68 is total length/time of the io from request to completion

-q shows the details of the IO queue and direction of movement ( 1==up , -1==down) and

–f shows additional queue information during the FLOOK.

Here Queue entries are tuples during add [ ior# : #io-track ] or triplets during get [ ior# : io-track# : distance ],

where distance is negative if it goes into the opposite direction (where applicable ).

Please use these debug flags and the reference program to get more insights on debugging the ins and outs (no punt intended)

of this assignment and answering certain “why” questions.

Generating your own input for further testing:

A generator program is available under ~frankeh/Public/lab4/iomake and can be used to create additional inputs if you like to

expand your testing. You will have to run this against the reference program ~frankeh/Public/lab4/iosched yourself.

Usage: iomake [-v] [-t maxtracks] [-i num_ios] [-L lambda] [-f interarrival_factor]

maxtracks is the tracks the disks will have, default is 512

num_ios is the number of ios to generate, default is 32

lambda is parameter to create a poisson distribution, default is 1.0 ( consider ranges from 0.01 .. 10.0 )

interarrival_factor is time factor how rapidly IOs will arrive, default is 1.0 ( consider values 0.5 .. 1.5 ), too small and the

system will be overloaded and too large it will be underloaded and scheduling is mute as often only one i/o is outstanding.

Below are the parameters for the 10 inputs files provided in the assignment so you don’t pick the same.

  1. iomake -v -t 128 -i 10 -L0.11 -f 0.4
  2. iomake -v -t 512 -i 20 -L0.51
  3. iomake -v -t 128 -i 50 -L0.51
  4. iomake -v -t 512 -i 100 -L0.01
  5. iomake -v -t 256 -i 50 -L1.1
  6. iomake -v -t 256 -i 20 -L0.3
  7. iomake -v -t 512 -i 100 -L0.9
  8. iomake -v -t 300 -i 80 -L3.4 -f 0.6
  9. iomake -v -t 1000 -i 80 -L3.4 -f 0.6
  10. iomake -v -t 512 -i 500 -L2.4 -f 0.6

标签:CSCI,request,queue,001,iomake,IO,time,Scheduling,disk
From: https://www.cnblogs.com/vx-codehelp/p/18354292

相关文章

  • PAT1001 害死人不偿命的(3n+1)猜想
    卡拉兹(Callatz)猜想:对任何一个正整数n,如果它是偶数,那么把它砍掉一半;如果它是奇数,那么把(3n+1)砍掉一半。这样一直反复砍下去,最后一定在某一步得到n=1。卡拉兹在1950年的世界数学家大会上公布了这个猜想,传说当时耶鲁大学师生齐动员,拼命想证明这个貌似很傻很天真的命题,结......
  • 0001初识MySQL
    ##内容参考网课##笔记整理一,数据库基础知识1.数据库概念英文名称:Database,即存储数据的仓库;专业解释为存储在计算机磁盘上的有组织,可供享的大量数据的集合 类型关系数据库与非关系数据库两类,前者包含MySQL,Oracle,SQL,Server,SQLite等,后者包含Redis,MongoDB等数据库管理系......
  • AGC001 题解
    目录A-BBQEasyB-MysteriousLightC-ShortenDiameterA-BBQEasy先将\(2N\)个数排序,从大到小考虑,最大的数一定不会产生贡献,次大的数可以和最大的数捆绑在一起,并产生贡献,以此类推,这样的贪心正确性还是较为显然的。#include<bits/stdc++.h>#definelllonglongusin......
  • C++竞赛初阶L1-10-第四单元-if练习(第24课)100015: 判断能否被 3,5,7 整除
    题目内容给定一个整数 x,判断它能否被 3,5,7 整除,并输出以下信息:1、能同时被 3,5,7 整除(直接输出 357,每个数中间一个空格);2、只能被其中两个数整除(按从小到大的顺序输出两个数,例如:35 或者 37 或者 57,中间用空格分隔);3、只能被其中一个数整除(输出这个除数);4、不能......
  • CSCI 2600 — Principles of Software
    CSCI2600—PrinciplesofSoftwareHomework6:GenericsandLeast-CostPathsDue:Tuesday,Aug.6,2024,11:59:59pmSubmissionInstructionsThisassignmentusesthesamerepositoryasHomeworkassignments4and5,sowhenyouarereadytostartworki......
  • midjourney 随手记 001
    ai摄影课绘画画的是感悟+所见摄影师的七招核心创作逻辑第一层,前四招基础设定的维度核心创作逻辑第二层,第五招简易版第五招、第六招、第七招核心创作逻辑第一层,前四招基本句式Photographyby(艺术家),(招数词),主体,环境。Photographyby安塞尔亚当斯(拍风景的),hig......
  • 001topsolid软件操作工具漏孔漏槽解决方案
            使用topsolid软件拆单经常会遇到漏孔漏槽问题,在设备加工试装后被试装师傅数落不知多少次!老话说吃一堑长一智,明明已点操作工具,但还是防不胜防,甚是头疼。总结如下原因:1、调入标准件时,最后一步未点击操作工具;2、在修改模型过程中,操作工具偶尔失效,软件自身bug;......
  • 热烈祝贺华企盾科技获得ISO/IEC 27001信息安全管理体系认证证书!
    近日,北京华企盾科技有限责任公司顺利通过权威认证机构的严格审核,获得“ISO/IEC27001信息安全管理体系认证证书”。认证范围涵盖与计算机软硬件销售及软件运维相关的信息安全管理活动等。信息安全管理实用规则ISO/IEC27001是国际上具有代表性的信息安全管理体系标准,已在世界各......
  • 洛谷P1001 A+B Problem的一些歪解(淼作)
    一、LCT#include<iostream>#include<cstring>#include<cstdio>#include<cstring>usingnamespacestd;structnode{intdata,rev,sum;node*son[2],*pre;booljudge();boolisroot();voidpushdown();voidupda......
  • 001在vscode中创建flask项目框架
    目录在vscode中创建flask项目1.配置flask环境2.导入以及创建flask框架在vscode中创建flask项目1.配置flask环境先配置解释器然后再该虚拟环境下进行安装flask模块进行该指令:pipinstallflask==版本号2.导入以及创建flask框架在桌面或者文件中建立一个文件夹将其移......