<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://homeostasis.scs.carleton.ca/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Dagar</id>
	<title>Soma-notes - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://homeostasis.scs.carleton.ca/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Dagar"/>
	<link rel="alternate" type="text/html" href="https://homeostasis.scs.carleton.ca/wiki/index.php/Special:Contributions/Dagar"/>
	<updated>2026-06-02T21:06:59Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.42.1</generator>
	<entry>
		<id>https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=6978</id>
		<title>COMP 3000 Essay 2 2010 Question 10</title>
		<link rel="alternate" type="text/html" href="https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=6978"/>
		<updated>2010-12-03T11:40:31Z</updated>

		<summary type="html">&lt;p&gt;Dagar: /* Background Concepts */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;mClock: Handling Throughput Variability for Hypervisor I/O Scheduling&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Paper==&lt;br /&gt;
&lt;br /&gt;
[http://www.usenix.org/events/osdi10/tech/full_papers/Gulati.pdf mClock: Handling Throughput Variability for Hypervisor I/O Scheduling]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Authors&#039;&#039;&#039;: &lt;br /&gt;
&lt;br /&gt;
Ajay Gulati VMware Inc. Palo Alto, CA, 94304 agulati@vmware.com&lt;br /&gt;
&lt;br /&gt;
Arif Merchant HP Labs Palo Alto, CA 94304 arif.merchant@acm.org&lt;br /&gt;
&lt;br /&gt;
Peter J. Varman Rice University Houston, TX, 77005 pjv@rice.edu&lt;br /&gt;
&lt;br /&gt;
==Background Concepts==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Virtual machines&#039;&#039;&#039; (VMs) are becoming increasingly significant as they are used by everyone from university students to large gaming firms. One of the key issues with virtual machines is ensuring that all shared resources on the machine are utilized equitably. In order to do this, and to provide the illusion that the virtual machine is running on its own hardware, a hypervisor is required. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Hypervisors&#039;&#039;&#039; are responsible for multiplexing hardware resources between virtual machines while providing isolation to an extent, using resource management. Three controls used by the hypervisor are:  reservations, where the minimum bounds are set (in absolute units); limits, where the maximum upper bound on the allocation is set (again in absolute units); and shares, which proportionally allocate the resources according to the weight of each VM. These three controls have been supported for CPU and memory resource allocation since 2003. However, the current issue is I/O resource allocation. Currently, when more VMs are added to a host, the contention for input/output (I/O) resources can suddenly lower a VM’s allocation. Also, the available throughput can change with time, and adjustments to allocations must be made dynamically.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Throughput&#039;&#039;&#039; is the average rate of job completion. In general, a system is considered more efficient if it has a higher throughput &amp;lt;sup&amp;gt;[[#Foot6|6]]&amp;lt;/sup&amp;gt;. In this paper, this term is used to discuss the fact that throughput varies, and the number of jobs a system wishes to complete varies as well. Therefore it is necessary to take throughput into account when scheduling I/O resources.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;SFQ&#039;&#039;&#039;, or Start-Time Fair Queuing, is the traditional scheduler currently used to allocate resources. It follows a proportional-sharing algorithm which divides up the total throughput between the VMs in proportion to their assigned shares. The issue with this is that it does not consider reservations or limits in its allocation.&lt;br /&gt;
&lt;br /&gt;
==Research problem==&lt;br /&gt;
&lt;br /&gt;
====Problem====&lt;br /&gt;
Today, I/O resource allocation in modern hypervisors is very simple and somewhat primitive. Currently, an algorithm called PARDA (Proportional Allocation of Resources in Distributed storage Access) &amp;lt;sup&amp;gt;[[#Foot1|1]]&amp;lt;/sup&amp;gt; is used to allocate I/O resources to each VM running on a particular storage device. Unfortunately, the I/O resource allocation algorithm of the hosts use a fair-scheduler called SFQ &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt; &amp;lt;sup&amp;gt;[[#Foot3|3]]&amp;lt;/sup&amp;gt;.SFQ(D) (Start-time Fair Queuing) performs fairly well for low-intensity workloads. However, as the workload with VMs multiplies, the constant need for faster performance and efficiency rises. &lt;br /&gt;
&lt;br /&gt;
PARDA allocates I/O resources to VMs proportional to the number of I/O shares on the host, but each host uses a fair scheduler which divides the I/O shares amongst the VMs equally. This leads to the main problem; whenever another VM is added or another background application is run on one of the VMs, all other VMs suffer a huge performance loss; a 40% performance drop. This is completely unacceptable when applications have minimum performance requirements to run effectively. An application with minimum resource requirements can be running fine on any given VM, however as soon as the stress load on the shared storage device increases, the application might fail to run smoothly, or worse, crash.&lt;br /&gt;
&lt;br /&gt;
====Solution====&lt;br /&gt;
Therefore, hypervisors require a better resource-allocation algorithm in order to meet the need for high performance VMs running concurrently. The mClock algorithm is the solution that Gulati, Varman, and Merchant have proposed in this paper.&lt;br /&gt;
&lt;br /&gt;
==Contribution==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This paper addresses the current limitations of I/O resource allocation for hypervisors. It proposes a new, more efficient algorithm for the allocation of I/O resources. Older methods were limited as they only provided proportional shares, such as SFQ. The proposed algorithm, mClock, incorporates proportional shares, as well as a minimum reservation of I/O resources, and a maximum reservation.&lt;br /&gt;
 &lt;br /&gt;
Older methods of I/O resource allocation had a significant performance disadvantage. Whenever the load on the shared storage device was increased, or when another VM was added, the performance of all hosts would drop significantly. Also, these older methods provided unreliable I/O management of hypervisors. Conversely, mClock is able to present VMs with a guaranteed minimum reservation of I/O resources. This means that application performance will never drop below a certain point. This provides much better application stability on each of the VMs, and better overall performance and efficiency level, compared to older methods such as SFQ.&lt;br /&gt;
&lt;br /&gt;
mClock is a resource-allocation algorithm that helps hypervisors manage I/O requests from multiple virtual machines simultaneously. It is a better alternative to SFQ because it supports all controls in a single algorithm, handles variable and unknown capacity, and computes quickly. The algorithm does not weaken the performance level as each VM gets added on, and mClock reservations are met. Essentially, mClock dynamically adjusts the proportions of resources each VM receives based on current activity. While mClock constantly changes the physical resource allocation to each VM, it lets each VM hold onto the illusion that it has full control of all system resources. As a result, performance can be increased for VMs that need it, without letting the others know that “their” resources are being distributed to other machines. What mClock attempts to achieve is combining a constraint-based scheduler and a weight-based scheduler. Making sure the minimum I/O reservation limit is consistently met, yet not over the upper bound limit, would be handled by the constraint-based scheduler. Then, it is the responsibility of the weight-based scheduler to distribute the remaining I/O throughput to the rest of the VMs equally. &lt;br /&gt;
&lt;br /&gt;
The mClock algorithm uses a tag-based scheduler with some modifications; like other tag-based schedulers all I/O requests are assigned tags and scheduled in order of their tag values. The modifications include the ability to use multiple tags based on the three controls (shares, reservations and limits) and to dynamically decide which tag to use for scheduling, while still synchronizing idle VMs &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
mClock was implemented on a modified version of VMware ESX server hypervisor &amp;lt;sup&amp;gt;[[#Foot4|4]]&amp;lt;/sup&amp;gt; &amp;lt;sup&amp;gt;[[#Foot5|5]]&amp;lt;/sup&amp;gt;. This modification only took around 200 lines of C code. This shows that it was not very difficult to implement mClock effectively in a existing product, and to improve performance. The mClock algorithm should be relatively portable and easy to implement in other hypervisors. &lt;br /&gt;
&lt;br /&gt;
Another contribution was the introduction of Distributed mClock or &#039;&#039;&#039;dmClock&#039;&#039;&#039; which basically runs an altered version of mClock at each server. dmClock is mainly used for cluster-based storage system which are rising as an alternative to centralized disk arrays, and are better in terms of cost. The reservation in this modified algorithm gives higher preference to non-idle VMs to attain greater performance. dmClock proved to be effective with a simple, modified mClock algorithm which does not require complex synchronizations between servers.&lt;br /&gt;
&lt;br /&gt;
==Critique==&lt;br /&gt;
&lt;br /&gt;
The article introduces the mClock algorithm which handles I/O resource allocation on multiple VMs in a variable throughput environment. The Quality of Service (QoS) requirements for a VM are expressed as a minimum reservation, a maximum limit, and a proportional share. A positive aspect of this algorithm is that it is able to meet those controls in varying capacity. Also, it is significant that the algorithm was proven to be more efficient than existing methods at allocating I/O resources in clustered architectures while providing greater isolation between VMs. mClock allows users to be comfortable when working with multiple VMs on one host without the constant worry of performance levels, with each VM add-on.&lt;br /&gt;
&lt;br /&gt;
The paper proposes a better, and effective alternative to SFQ and other older methods and the mClock algorithm efficiently handles multiple VMs in a throughput environment (LUN, PARDA).&lt;br /&gt;
&lt;br /&gt;
The negative aspect of this paper was the writing style used for displaying calculations. In many sections of the essay, the calculations are embedded in a sentence which makes them difficult to read and understand. One example is the following line:  &amp;quot;For a small reference I/O size of 8KB and using typical values for mechanical delay T&amp;lt;sub&amp;gt;m&amp;lt;/sub&amp;gt; = 5ms and peak transfer rate, B&amp;lt;sub&amp;gt;peak&amp;lt;/sub&amp;gt; = 60 MB/s, the numerator = Lat&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;*(1 + 8/300) &amp;amp;asymp; Lat&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;&amp;quot; &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt;.&amp;lt;math&amp;gt;&amp;lt;/math&amp;gt;  The calculations were often about how the algorithm would calculate the resource allocation but it was not really necessary to include them; the essay is understandable without them.&lt;br /&gt;
&lt;br /&gt;
In general, however, the essay is clear and not difficult to understand. As well, the case for this algorithm appears well-presented and valid.&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot1&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; A. Gulati, I. Ahmad, and C. Waldspurger. PARDA: Proportional&lt;br /&gt;
Allocation of Resources in Distributed Storage&lt;br /&gt;
Access. In (FAST ’09) Proceedings of the Seventh Usenix&lt;br /&gt;
Conference on File and Storage Technologies, Feb 2009.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot2&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; W. Jin, J. S. Chase, and J. Kaur. Interposed proportional&lt;br /&gt;
sharing for a storage service utility. In ACM SIGMET-&lt;br /&gt;
RICS, 2004. [http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.72.7012&amp;amp;rep=rep1&amp;amp;type=pdf Interposed proportional sharing for a storage service utility]&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot3&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt;&lt;br /&gt;
P. Goyal, H. M. Vin, and H. Cheng. Start-Time Fair&lt;br /&gt;
Queuing: A scheduling algorithm for integrated services&lt;br /&gt;
packet switching networks. Technical Report CS-TR-96-&lt;br /&gt;
02, UT Austin, January 1996.&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot4&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;4&amp;lt;/sup&amp;gt;&lt;br /&gt;
VMware ESX Server User Manual, December 2007.&lt;br /&gt;
VMware Inc.&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot5&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;5&amp;lt;/sup&amp;gt;&lt;br /&gt;
VMware, Inc. Introduction to VMware Infrastructure.&lt;br /&gt;
2007. http://www.vmware.com/support/pubs/.&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot6&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;6&amp;lt;/sup&amp;gt;&lt;br /&gt;
A. S. Tanenbaum. Modern Operating Systems: Third Edition. Pearson Education, 2008.&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;/div&gt;</summary>
		<author><name>Dagar</name></author>
	</entry>
	<entry>
		<id>https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=6976</id>
		<title>COMP 3000 Essay 2 2010 Question 10</title>
		<link rel="alternate" type="text/html" href="https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=6976"/>
		<updated>2010-12-03T11:36:53Z</updated>

		<summary type="html">&lt;p&gt;Dagar: /* Critique */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;mClock: Handling Throughput Variability for Hypervisor I/O Scheduling&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Paper==&lt;br /&gt;
&lt;br /&gt;
[http://www.usenix.org/events/osdi10/tech/full_papers/Gulati.pdf mClock: Handling Throughput Variability for Hypervisor I/O Scheduling]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Authors&#039;&#039;&#039;: &lt;br /&gt;
&lt;br /&gt;
Ajay Gulati VMware Inc. Palo Alto, CA, 94304 agulati@vmware.com&lt;br /&gt;
&lt;br /&gt;
Arif Merchant HP Labs Palo Alto, CA 94304 arif.merchant@acm.org&lt;br /&gt;
&lt;br /&gt;
Peter J. Varman Rice University Houston, TX, 77005 pjv@rice.edu&lt;br /&gt;
&lt;br /&gt;
==Background Concepts==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Virtual machines&#039;&#039;&#039; (VMs) are becoming increasingly significant as they are used by everyone from university students to large gaming firms. One of the key issues with virtual machines is ensuring that all shared resources on the machine are utilized equitably. In order to do this, and to provide the illusion that the virtual machine is running on its own hardware, a hypervisor is required. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Hypervisors&#039;&#039;&#039; are responsible for multiplexing hardware resources between virtual machines while providing isolation to an extent, using resource management. Three controls used by the hypervisor are:  reservations, where the minimum bounds are set (in absolute units); limits, where the maximum upper bound on the allocation is set (again in absolute units); and shares, which proportionally allocate the resources according to the weight of each VM. These three controls have been supported for CPU and memory resource allocation since 2003. However, the current issue is I/O resource allocation. Currently, when more VMs are added to a host, the contention for input/output (I/O) resources can suddenly lower a VM’s allocation. Also, the available throughput can change with time, and adjustments to allocations must be made dynamically.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Throughput&#039;&#039;&#039; is the average rate of job completion. In general, a system is considered more efficient if it has a higher throughput &amp;lt;sup&amp;gt;[[#Foot6|6]]&amp;lt;/sup&amp;gt;. In this paper, this term is used to discuss the fact that throughput varies, and the number of jobs a system wishes to complete varies as well. Therefore it is necessary to take throughput into account when scheduling IO resources.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;SFQ&#039;&#039;&#039;, or Start-Time Fair Queuing, is the traditional scheduler currently used to allocate resources. It follows a proportional-sharing algorithm which divides up the total throughput between the VMs in proportion to their assigned shares. The issue with this is that it does not consider reservations or limits in its allocation.&lt;br /&gt;
&lt;br /&gt;
==Research problem==&lt;br /&gt;
&lt;br /&gt;
====Problem====&lt;br /&gt;
Today, I/O resource allocation in modern hypervisors is very simple and somewhat primitive. Currently, an algorithm called PARDA (Proportional Allocation of Resources in Distributed storage Access) &amp;lt;sup&amp;gt;[[#Foot1|1]]&amp;lt;/sup&amp;gt; is used to allocate I/O resources to each VM running on a particular storage device. Unfortunately, the I/O resource allocation algorithm of the hosts use a fair-scheduler called SFQ &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt; &amp;lt;sup&amp;gt;[[#Foot3|3]]&amp;lt;/sup&amp;gt;.SFQ(D) (Start-time Fair Queuing) performs fairly well for low-intensity workloads. However, as the workload with VMs multiplies, the constant need for faster performance and efficiency rises. &lt;br /&gt;
&lt;br /&gt;
PARDA allocates I/O resources to VMs proportional to the number of I/O shares on the host, but each host uses a fair scheduler which divides the I/O shares amongst the VMs equally. This leads to the main problem; whenever another VM is added or another background application is run on one of the VMs, all other VMs suffer a huge performance loss; a 40% performance drop. This is completely unacceptable when applications have minimum performance requirements to run effectively. An application with minimum resource requirements can be running fine on any given VM, however as soon as the stress load on the shared storage device increases, the application might fail to run smoothly, or worse, crash.&lt;br /&gt;
&lt;br /&gt;
====Solution====&lt;br /&gt;
Therefore, hypervisors require a better resource-allocation algorithm in order to meet the need for high performance VMs running concurrently. The mClock algorithm is the solution that Gulati, Varman, and Merchant have proposed in this paper.&lt;br /&gt;
&lt;br /&gt;
==Contribution==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This paper addresses the current limitations of I/O resource allocation for hypervisors. It proposes a new, more efficient algorithm for the allocation of I/O resources. Older methods were limited as they only provided proportional shares, such as SFQ. The proposed algorithm, mClock, incorporates proportional shares, as well as a minimum reservation of I/O resources, and a maximum reservation.&lt;br /&gt;
 &lt;br /&gt;
Older methods of I/O resource allocation had a significant performance disadvantage. Whenever the load on the shared storage device was increased, or when another VM was added, the performance of all hosts would drop significantly. Also, these older methods provided unreliable I/O management of hypervisors. Conversely, mClock is able to present VMs with a guaranteed minimum reservation of I/O resources. This means that application performance will never drop below a certain point. This provides much better application stability on each of the VMs, and better overall performance and efficiency level, compared to older methods such as SFQ.&lt;br /&gt;
&lt;br /&gt;
mClock is a resource-allocation algorithm that helps hypervisors manage I/O requests from multiple virtual machines simultaneously. It is a better alternative to SFQ because it supports all controls in a single algorithm, handles variable and unknown capacity, and computes quickly. The algorithm does not weaken the performance level as each VM gets added on, and mClock reservations are met. Essentially, mClock dynamically adjusts the proportions of resources each VM receives based on current activity. While mClock constantly changes the physical resource allocation to each VM, it lets each VM hold onto the illusion that it has full control of all system resources. As a result, performance can be increased for VMs that need it, without letting the others know that “their” resources are being distributed to other machines. What mClock attempts to achieve is combining a constraint-based scheduler and a weight-based scheduler. Making sure the minimum I/O reservation limit is consistently met, yet not over the upper bound limit, would be handled by the constraint-based scheduler. Then, it is the responsibility of the weight-based scheduler to distribute the remaining I/O throughput to the rest of the VMs equally. &lt;br /&gt;
&lt;br /&gt;
The mClock algorithm uses a tag-based scheduler with some modifications; like other tag-based schedulers all I/O requests are assigned tags and scheduled in order of their tag values. The modifications include the ability to use multiple tags based on the three controls (shares, reservations and limits) and to dynamically decide which tag to use for scheduling, while still synchronizing idle VMs &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
mClock was implemented on a modified version of VMware ESX server hypervisor &amp;lt;sup&amp;gt;[[#Foot4|4]]&amp;lt;/sup&amp;gt; &amp;lt;sup&amp;gt;[[#Foot5|5]]&amp;lt;/sup&amp;gt;. This modification only took around 200 lines of C code. This shows that it was not very difficult to implement mClock effectively in a existing product, and to improve performance. The mClock algorithm should be relatively portable and easy to implement in other hypervisors. &lt;br /&gt;
&lt;br /&gt;
Another contribution was the introduction of Distributed mClock or &#039;&#039;&#039;dmClock&#039;&#039;&#039; which basically runs an altered version of mClock at each server. dmClock is mainly used for cluster-based storage system which are rising as an alternative to centralized disk arrays, and are better in terms of cost. The reservation in this modified algorithm gives higher preference to non-idle VMs to attain greater performance. dmClock proved to be effective with a simple, modified mClock algorithm which does not require complex synchronizations between servers.&lt;br /&gt;
&lt;br /&gt;
==Critique==&lt;br /&gt;
&lt;br /&gt;
The article introduces the mClock algorithm which handles I/O resource allocation on multiple VMs in a variable throughput environment. The Quality of Service (QoS) requirements for a VM are expressed as a minimum reservation, a maximum limit, and a proportional share. A positive aspect of this algorithm is that it is able to meet those controls in varying capacity. Also, it is significant that the algorithm was proven to be more efficient than existing methods at allocating I/O resources in clustered architectures while providing greater isolation between VMs. mClock allows users to be comfortable when working with multiple VMs on one host without the constant worry of performance levels, with each VM add-on.&lt;br /&gt;
&lt;br /&gt;
The paper proposes a better, and effective alternative to SFQ and other older methods and the mClock algorithm efficiently handles multiple VMs in a throughput environment (LUN, PARDA).&lt;br /&gt;
&lt;br /&gt;
The negative aspect of this paper was the writing style used for displaying calculations. In many sections of the essay, the calculations are embedded in a sentence which makes them difficult to read and understand. One example is the following line:  &amp;quot;For a small reference I/O size of 8KB and using typical values for mechanical delay T&amp;lt;sub&amp;gt;m&amp;lt;/sub&amp;gt; = 5ms and peak transfer rate, B&amp;lt;sub&amp;gt;peak&amp;lt;/sub&amp;gt; = 60 MB/s, the numerator = Lat&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;*(1 + 8/300) &amp;amp;asymp; Lat&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;&amp;quot; &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt;.&amp;lt;math&amp;gt;&amp;lt;/math&amp;gt;  The calculations were often about how the algorithm would calculate the resource allocation but it was not really necessary to include them; the essay is understandable without them.&lt;br /&gt;
&lt;br /&gt;
In general, however, the essay is clear and not difficult to understand. As well, the case for this algorithm appears well-presented and valid.&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot1&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; A. Gulati, I. Ahmad, and C. Waldspurger. PARDA: Proportional&lt;br /&gt;
Allocation of Resources in Distributed Storage&lt;br /&gt;
Access. In (FAST ’09) Proceedings of the Seventh Usenix&lt;br /&gt;
Conference on File and Storage Technologies, Feb 2009.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot2&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; W. Jin, J. S. Chase, and J. Kaur. Interposed proportional&lt;br /&gt;
sharing for a storage service utility. In ACM SIGMET-&lt;br /&gt;
RICS, 2004. [http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.72.7012&amp;amp;rep=rep1&amp;amp;type=pdf Interposed proportional sharing for a storage service utility]&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot3&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt;&lt;br /&gt;
P. Goyal, H. M. Vin, and H. Cheng. Start-Time Fair&lt;br /&gt;
Queuing: A scheduling algorithm for integrated services&lt;br /&gt;
packet switching networks. Technical Report CS-TR-96-&lt;br /&gt;
02, UT Austin, January 1996.&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot4&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;4&amp;lt;/sup&amp;gt;&lt;br /&gt;
VMware ESX Server User Manual, December 2007.&lt;br /&gt;
VMware Inc.&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot5&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;5&amp;lt;/sup&amp;gt;&lt;br /&gt;
VMware, Inc. Introduction to VMware Infrastructure.&lt;br /&gt;
2007. http://www.vmware.com/support/pubs/.&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot6&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;6&amp;lt;/sup&amp;gt;&lt;br /&gt;
A. S. Tanenbaum. Modern Operating Systems: Third Edition. Pearson Education, 2008.&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;/div&gt;</summary>
		<author><name>Dagar</name></author>
	</entry>
	<entry>
		<id>https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=6973</id>
		<title>COMP 3000 Essay 2 2010 Question 10</title>
		<link rel="alternate" type="text/html" href="https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=6973"/>
		<updated>2010-12-03T11:34:39Z</updated>

		<summary type="html">&lt;p&gt;Dagar: /* Critique */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;mClock: Handling Throughput Variability for Hypervisor I/O Scheduling&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Paper==&lt;br /&gt;
&lt;br /&gt;
[http://www.usenix.org/events/osdi10/tech/full_papers/Gulati.pdf mClock: Handling Throughput Variability for Hypervisor I/O Scheduling]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Authors&#039;&#039;&#039;: &lt;br /&gt;
&lt;br /&gt;
Ajay Gulati VMware Inc. Palo Alto, CA, 94304 agulati@vmware.com&lt;br /&gt;
&lt;br /&gt;
Arif Merchant HP Labs Palo Alto, CA 94304 arif.merchant@acm.org&lt;br /&gt;
&lt;br /&gt;
Peter J. Varman Rice University Houston, TX, 77005 pjv@rice.edu&lt;br /&gt;
&lt;br /&gt;
==Background Concepts==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Virtual machines&#039;&#039;&#039; (VMs) are becoming increasingly significant as they are used by everyone from university students to large gaming firms. One of the key issues with virtual machines is ensuring that all shared resources on the machine are utilized equitably. In order to do this, and to provide the illusion that the virtual machine is running on its own hardware, a hypervisor is required. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Hypervisors&#039;&#039;&#039; are responsible for multiplexing hardware resources between virtual machines while providing isolation to an extent, using resource management. Three controls used by the hypervisor are:  reservations, where the minimum bounds are set (in absolute units); limits, where the maximum upper bound on the allocation is set (again in absolute units); and shares, which proportionally allocate the resources according to the weight of each VM. These three controls have been supported for CPU and memory resource allocation since 2003. However, the current issue is I/O resource allocation. Currently, when more VMs are added to a host, the contention for input/output (I/O) resources can suddenly lower a VM’s allocation. Also, the available throughput can change with time, and adjustments to allocations must be made dynamically.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Throughput&#039;&#039;&#039; is the average rate of job completion. In general, a system is considered more efficient if it has a higher throughput &amp;lt;sup&amp;gt;[[#Foot6|6]]&amp;lt;/sup&amp;gt;. In this paper, this term is used to discuss the fact that throughput varies, and the number of jobs a system wishes to complete varies as well. Therefore it is necessary to take throughput into account when scheduling IO resources.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;SFQ&#039;&#039;&#039;, or Start-Time Fair Queuing, is the traditional scheduler currently used to allocate resources. It follows a proportional-sharing algorithm which divides up the total throughput between the VMs in proportion to their assigned shares. The issue with this is that it does not consider reservations or limits in its allocation.&lt;br /&gt;
&lt;br /&gt;
==Research problem==&lt;br /&gt;
&lt;br /&gt;
====Problem====&lt;br /&gt;
Today, I/O resource allocation in modern hypervisors is very simple and somewhat primitive. Currently, an algorithm called PARDA (Proportional Allocation of Resources in Distributed storage Access) &amp;lt;sup&amp;gt;[[#Foot1|1]]&amp;lt;/sup&amp;gt; is used to allocate I/O resources to each VM running on a particular storage device. Unfortunately, the I/O resource allocation algorithm of the hosts use a fair-scheduler called SFQ &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt; &amp;lt;sup&amp;gt;[[#Foot3|3]]&amp;lt;/sup&amp;gt;.SFQ(D) (Start-time Fair Queuing) performs fairly well for low-intensity workloads. However, as the workload with VMs multiplies, the constant need for faster performance and efficiency rises. &lt;br /&gt;
&lt;br /&gt;
PARDA allocates I/O resources to VMs proportional to the number of I/O shares on the host, but each host uses a fair scheduler which divides the I/O shares amongst the VMs equally. This leads to the main problem; whenever another VM is added or another background application is run on one of the VMs, all other VMs suffer a huge performance loss; a 40% performance drop. This is completely unacceptable when applications have minimum performance requirements to run effectively. An application with minimum resource requirements can be running fine on any given VM, however as soon as the stress load on the shared storage device increases, the application might fail to run smoothly, or worse, crash.&lt;br /&gt;
&lt;br /&gt;
====Solution====&lt;br /&gt;
Therefore, hypervisors require a better resource-allocation algorithm in order to meet the need for high performance VMs running concurrently. The mClock algorithm is the solution that Gulati, Varman, and Merchant have proposed in this paper.&lt;br /&gt;
&lt;br /&gt;
==Contribution==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This paper addresses the current limitations of I/O resource allocation for hypervisors. It proposes a new, more efficient algorithm for the allocation of I/O resources. Older methods were limited as they only provided proportional shares, such as SFQ. The proposed algorithm, mClock, incorporates proportional shares, as well as a minimum reservation of I/O resources, and a maximum reservation.&lt;br /&gt;
 &lt;br /&gt;
Older methods of I/O resource allocation had a significant performance disadvantage. Whenever the load on the shared storage device was increased, or when another VM was added, the performance of all hosts would drop significantly. Also, these older methods provided unreliable I/O management of hypervisors. Conversely, mClock is able to present VMs with a guaranteed minimum reservation of I/O resources. This means that application performance will never drop below a certain point. This provides much better application stability on each of the VMs, and better overall performance and efficiency level, compared to older methods such as SFQ.&lt;br /&gt;
&lt;br /&gt;
mClock is a resource-allocation algorithm that helps hypervisors manage I/O requests from multiple virtual machines simultaneously. It is a better alternative to SFQ because it supports all controls in a single algorithm, handles variable and unknown capacity, and computes quickly. The algorithm does not weaken the performance level as each VM gets added on, and mClock reservations are met. Essentially, mClock dynamically adjusts the proportions of resources each VM receives based on current activity. While mClock constantly changes the physical resource allocation to each VM, it lets each VM hold onto the illusion that it has full control of all system resources. As a result, performance can be increased for VMs that need it, without letting the others know that “their” resources are being distributed to other machines. What mClock attempts to achieve is combining a constraint-based scheduler and a weight-based scheduler. Making sure the minimum I/O reservation limit is consistently met, yet not over the upper bound limit, would be handled by the constraint-based scheduler. Then, it is the responsibility of the weight-based scheduler to distribute the remaining I/O throughput to the rest of the VMs equally. &lt;br /&gt;
&lt;br /&gt;
The mClock algorithm uses a tag-based scheduler with some modifications; like other tag-based schedulers all I/O requests are assigned tags and scheduled in order of their tag values. The modifications include the ability to use multiple tags based on the three controls (shares, reservations and limits) and to dynamically decide which tag to use for scheduling, while still synchronizing idle VMs &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
mClock was implemented on a modified version of VMware ESX server hypervisor &amp;lt;sup&amp;gt;[[#Foot4|4]]&amp;lt;/sup&amp;gt; &amp;lt;sup&amp;gt;[[#Foot5|5]]&amp;lt;/sup&amp;gt;. This modification only took around 200 lines of C code. This shows that it was not very difficult to implement mClock effectively in a existing product, and to improve performance. The mClock algorithm should be relatively portable and easy to implement in other hypervisors. &lt;br /&gt;
&lt;br /&gt;
Another contribution was the introduction of Distributed mClock or &#039;&#039;&#039;dmClock&#039;&#039;&#039; which basically runs an altered version of mClock at each server. dmClock is mainly used for cluster-based storage system which are rising as an alternative to centralized disk arrays, and are better in terms of cost. The reservation in this modified algorithm gives higher preference to non-idle VMs to attain greater performance. dmClock proved to be effective with a simple, modified mClock algorithm which does not require complex synchronizations between servers.&lt;br /&gt;
&lt;br /&gt;
==Critique==&lt;br /&gt;
&lt;br /&gt;
The article introduces the mClock algorithm which handles I/O resource allocation on multiple VMs in a variable throughput environment. The Quality of Service (QoS) requirements for a VM are expressed as a minimum reservation, a maximum limit, and a proportional share. A positive aspect of this algorithm is that it is able to meet those controls in varying capacity. Also, it is significant that the algorithm was proven to be more efficient than existing methods at allocating I/O resources in clustered architectures while providing greater isolation between VMs. mClock allows users to be comfortable when working with multiple VMs on one host without the constant worry of performance levels, with each VM add-on.&lt;br /&gt;
&lt;br /&gt;
The paper proposes a better, and effective alternative to SFQ and other older methods and the mClock algorithm efficiently handles multiple VMs in a throughput environment (LUN, PARDA).&lt;br /&gt;
&lt;br /&gt;
The negative aspect of this paper was the writing style used for displaying calculations. In many sections of the essay, the calculations are embedded in a sentence which makes it difficult to read and understand them. One example is the following line:  &amp;quot;For a small reference I/O size of 8KB and using typical values for mechanical delay T&amp;lt;sub&amp;gt;m&amp;lt;/sub&amp;gt; = 5ms and peak transfer rate, B&amp;lt;sub&amp;gt;peak&amp;lt;/sub&amp;gt; = 60 MB/s, the numerator = Lat&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;*(1 + 8/300) &amp;amp;asymp; Lat&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;&amp;quot; &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt;.&amp;lt;math&amp;gt;&amp;lt;/math&amp;gt;  The calculations were often about how the algorithm would calculate the resource allocation but it was not really necessary to include them; the essay is understandable without them.&lt;br /&gt;
&lt;br /&gt;
In general, however, the essay is clear and not difficult to understand. As well, the case for this algorithm appears well-presented and valid.&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot1&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; A. Gulati, I. Ahmad, and C. Waldspurger. PARDA: Proportional&lt;br /&gt;
Allocation of Resources in Distributed Storage&lt;br /&gt;
Access. In (FAST ’09) Proceedings of the Seventh Usenix&lt;br /&gt;
Conference on File and Storage Technologies, Feb 2009.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot2&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; W. Jin, J. S. Chase, and J. Kaur. Interposed proportional&lt;br /&gt;
sharing for a storage service utility. In ACM SIGMET-&lt;br /&gt;
RICS, 2004. [http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.72.7012&amp;amp;rep=rep1&amp;amp;type=pdf Interposed proportional sharing for a storage service utility]&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot3&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt;&lt;br /&gt;
P. Goyal, H. M. Vin, and H. Cheng. Start-Time Fair&lt;br /&gt;
Queuing: A scheduling algorithm for integrated services&lt;br /&gt;
packet switching networks. Technical Report CS-TR-96-&lt;br /&gt;
02, UT Austin, January 1996.&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot4&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;4&amp;lt;/sup&amp;gt;&lt;br /&gt;
VMware ESX Server User Manual, December 2007.&lt;br /&gt;
VMware Inc.&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot5&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;5&amp;lt;/sup&amp;gt;&lt;br /&gt;
VMware, Inc. Introduction to VMware Infrastructure.&lt;br /&gt;
2007. http://www.vmware.com/support/pubs/.&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot6&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;6&amp;lt;/sup&amp;gt;&lt;br /&gt;
A. S. Tanenbaum. Modern Operating Systems: Third Edition. Pearson Education, 2008.&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;/div&gt;</summary>
		<author><name>Dagar</name></author>
	</entry>
	<entry>
		<id>https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=6972</id>
		<title>COMP 3000 Essay 2 2010 Question 10</title>
		<link rel="alternate" type="text/html" href="https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=6972"/>
		<updated>2010-12-03T11:32:12Z</updated>

		<summary type="html">&lt;p&gt;Dagar: /* Contribution */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;mClock: Handling Throughput Variability for Hypervisor I/O Scheduling&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Paper==&lt;br /&gt;
&lt;br /&gt;
[http://www.usenix.org/events/osdi10/tech/full_papers/Gulati.pdf mClock: Handling Throughput Variability for Hypervisor I/O Scheduling]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Authors&#039;&#039;&#039;: &lt;br /&gt;
&lt;br /&gt;
Ajay Gulati VMware Inc. Palo Alto, CA, 94304 agulati@vmware.com&lt;br /&gt;
&lt;br /&gt;
Arif Merchant HP Labs Palo Alto, CA 94304 arif.merchant@acm.org&lt;br /&gt;
&lt;br /&gt;
Peter J. Varman Rice University Houston, TX, 77005 pjv@rice.edu&lt;br /&gt;
&lt;br /&gt;
==Background Concepts==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Virtual machines&#039;&#039;&#039; (VMs) are becoming increasingly significant as they are used by everyone from university students to large gaming firms. One of the key issues with virtual machines is ensuring that all shared resources on the machine are utilized equitably. In order to do this, and to provide the illusion that the virtual machine is running on its own hardware, a hypervisor is required. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Hypervisors&#039;&#039;&#039; are responsible for multiplexing hardware resources between virtual machines while providing isolation to an extent, using resource management. Three controls used by the hypervisor are:  reservations, where the minimum bounds are set (in absolute units); limits, where the maximum upper bound on the allocation is set (again in absolute units); and shares, which proportionally allocate the resources according to the weight of each VM. These three controls have been supported for CPU and memory resource allocation since 2003. However, the current issue is I/O resource allocation. Currently, when more VMs are added to a host, the contention for input/output (I/O) resources can suddenly lower a VM’s allocation. Also, the available throughput can change with time, and adjustments to allocations must be made dynamically.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Throughput&#039;&#039;&#039; is the average rate of job completion. In general, a system is considered more efficient if it has a higher throughput &amp;lt;sup&amp;gt;[[#Foot6|6]]&amp;lt;/sup&amp;gt;. In this paper, this term is used to discuss the fact that throughput varies, and the number of jobs a system wishes to complete varies as well. Therefore it is necessary to take throughput into account when scheduling IO resources.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;SFQ&#039;&#039;&#039;, or Start-Time Fair Queuing, is the traditional scheduler currently used to allocate resources. It follows a proportional-sharing algorithm which divides up the total throughput between the VMs in proportion to their assigned shares. The issue with this is that it does not consider reservations or limits in its allocation.&lt;br /&gt;
&lt;br /&gt;
==Research problem==&lt;br /&gt;
&lt;br /&gt;
====Problem====&lt;br /&gt;
Today, I/O resource allocation in modern hypervisors is very simple and somewhat primitive. Currently, an algorithm called PARDA (Proportional Allocation of Resources in Distributed storage Access) &amp;lt;sup&amp;gt;[[#Foot1|1]]&amp;lt;/sup&amp;gt; is used to allocate I/O resources to each VM running on a particular storage device. Unfortunately, the I/O resource allocation algorithm of the hosts use a fair-scheduler called SFQ &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt; &amp;lt;sup&amp;gt;[[#Foot3|3]]&amp;lt;/sup&amp;gt;.SFQ(D) (Start-time Fair Queuing) performs fairly well for low-intensity workloads. However, as the workload with VMs multiplies, the constant need for faster performance and efficiency rises. &lt;br /&gt;
&lt;br /&gt;
PARDA allocates I/O resources to VMs proportional to the number of I/O shares on the host, but each host uses a fair scheduler which divides the I/O shares amongst the VMs equally. This leads to the main problem; whenever another VM is added or another background application is run on one of the VMs, all other VMs suffer a huge performance loss; a 40% performance drop. This is completely unacceptable when applications have minimum performance requirements to run effectively. An application with minimum resource requirements can be running fine on any given VM, however as soon as the stress load on the shared storage device increases, the application might fail to run smoothly, or worse, crash.&lt;br /&gt;
&lt;br /&gt;
====Solution====&lt;br /&gt;
Therefore, hypervisors require a better resource-allocation algorithm in order to meet the need for high performance VMs running concurrently. The mClock algorithm is the solution that Gulati, Varman, and Merchant have proposed in this paper.&lt;br /&gt;
&lt;br /&gt;
==Contribution==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This paper addresses the current limitations of I/O resource allocation for hypervisors. It proposes a new, more efficient algorithm for the allocation of I/O resources. Older methods were limited as they only provided proportional shares, such as SFQ. The proposed algorithm, mClock, incorporates proportional shares, as well as a minimum reservation of I/O resources, and a maximum reservation.&lt;br /&gt;
 &lt;br /&gt;
Older methods of I/O resource allocation had a significant performance disadvantage. Whenever the load on the shared storage device was increased, or when another VM was added, the performance of all hosts would drop significantly. Also, these older methods provided unreliable I/O management of hypervisors. Conversely, mClock is able to present VMs with a guaranteed minimum reservation of I/O resources. This means that application performance will never drop below a certain point. This provides much better application stability on each of the VMs, and better overall performance and efficiency level, compared to older methods such as SFQ.&lt;br /&gt;
&lt;br /&gt;
mClock is a resource-allocation algorithm that helps hypervisors manage I/O requests from multiple virtual machines simultaneously. It is a better alternative to SFQ because it supports all controls in a single algorithm, handles variable and unknown capacity, and computes quickly. The algorithm does not weaken the performance level as each VM gets added on, and mClock reservations are met. Essentially, mClock dynamically adjusts the proportions of resources each VM receives based on current activity. While mClock constantly changes the physical resource allocation to each VM, it lets each VM hold onto the illusion that it has full control of all system resources. As a result, performance can be increased for VMs that need it, without letting the others know that “their” resources are being distributed to other machines. What mClock attempts to achieve is combining a constraint-based scheduler and a weight-based scheduler. Making sure the minimum I/O reservation limit is consistently met, yet not over the upper bound limit, would be handled by the constraint-based scheduler. Then, it is the responsibility of the weight-based scheduler to distribute the remaining I/O throughput to the rest of the VMs equally. &lt;br /&gt;
&lt;br /&gt;
The mClock algorithm uses a tag-based scheduler with some modifications; like other tag-based schedulers all I/O requests are assigned tags and scheduled in order of their tag values. The modifications include the ability to use multiple tags based on the three controls (shares, reservations and limits) and to dynamically decide which tag to use for scheduling, while still synchronizing idle VMs &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
mClock was implemented on a modified version of VMware ESX server hypervisor &amp;lt;sup&amp;gt;[[#Foot4|4]]&amp;lt;/sup&amp;gt; &amp;lt;sup&amp;gt;[[#Foot5|5]]&amp;lt;/sup&amp;gt;. This modification only took around 200 lines of C code. This shows that it was not very difficult to implement mClock effectively in a existing product, and to improve performance. The mClock algorithm should be relatively portable and easy to implement in other hypervisors. &lt;br /&gt;
&lt;br /&gt;
Another contribution was the introduction of Distributed mClock or &#039;&#039;&#039;dmClock&#039;&#039;&#039; which basically runs an altered version of mClock at each server. dmClock is mainly used for cluster-based storage system which are rising as an alternative to centralized disk arrays, and are better in terms of cost. The reservation in this modified algorithm gives higher preference to non-idle VMs to attain greater performance. dmClock proved to be effective with a simple, modified mClock algorithm which does not require complex synchronizations between servers.&lt;br /&gt;
&lt;br /&gt;
==Critique==&lt;br /&gt;
&lt;br /&gt;
The article introduces the mClock algorithm which handles I/O resource allocation on multiple VMs in a variable throughput environment. The Quality of Service (QoS) requirements for a VM are expressed as a minimum reservation, a maximum limit, and a proportional share. A positive aspect of this algorithm is that it is able to meet those controls in varying capacity. Also, it is significant that the algorithm was proven to be more efficient than existing methods at allocating IO resources in clustered architectures while providing greater isolation between VMs. mClock allows users to be comfortable when working with multiple VMs on one host without the constant worry of performance levels, with each VM add-on.&lt;br /&gt;
&lt;br /&gt;
The paper proposes a better, and effective alternative to SFQ and other older methods and the mClock algorithm efficiently handles multiple VMs in a throughput environment (LUN, PARDA).&lt;br /&gt;
&lt;br /&gt;
The negative aspect of this paper was the writing style used for displaying calculations. In many sections of the essay, the calculations are embedded in a sentence which makes it difficult to read and understand them. One example is the following line:  &amp;quot;For a small reference I/O size of 8KB and using typical values for mechanical delay T&amp;lt;sub&amp;gt;m&amp;lt;/sub&amp;gt; = 5ms and peak transfer rate, B&amp;lt;sub&amp;gt;peak&amp;lt;/sub&amp;gt; = 60 MB/s, the numerator = Lat&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;*(1 + 8/300) &amp;amp;asymp; Lat&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;&amp;quot; &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt;.&amp;lt;math&amp;gt;&amp;lt;/math&amp;gt;  The calculations were often about how the algorithm would calculate the resource allocation but it was not really necessary to include them; the essay is understandable without them.&lt;br /&gt;
&lt;br /&gt;
In general, however, the essay is clear and not difficult to understand. As well, the case for this algorithm appears well-presented and valid.&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot1&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; A. Gulati, I. Ahmad, and C. Waldspurger. PARDA: Proportional&lt;br /&gt;
Allocation of Resources in Distributed Storage&lt;br /&gt;
Access. In (FAST ’09) Proceedings of the Seventh Usenix&lt;br /&gt;
Conference on File and Storage Technologies, Feb 2009.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot2&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; W. Jin, J. S. Chase, and J. Kaur. Interposed proportional&lt;br /&gt;
sharing for a storage service utility. In ACM SIGMET-&lt;br /&gt;
RICS, 2004. [http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.72.7012&amp;amp;rep=rep1&amp;amp;type=pdf Interposed proportional sharing for a storage service utility]&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot3&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt;&lt;br /&gt;
P. Goyal, H. M. Vin, and H. Cheng. Start-Time Fair&lt;br /&gt;
Queuing: A scheduling algorithm for integrated services&lt;br /&gt;
packet switching networks. Technical Report CS-TR-96-&lt;br /&gt;
02, UT Austin, January 1996.&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot4&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;4&amp;lt;/sup&amp;gt;&lt;br /&gt;
VMware ESX Server User Manual, December 2007.&lt;br /&gt;
VMware Inc.&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot5&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;5&amp;lt;/sup&amp;gt;&lt;br /&gt;
VMware, Inc. Introduction to VMware Infrastructure.&lt;br /&gt;
2007. http://www.vmware.com/support/pubs/.&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot6&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;6&amp;lt;/sup&amp;gt;&lt;br /&gt;
A. S. Tanenbaum. Modern Operating Systems: Third Edition. Pearson Education, 2008.&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;/div&gt;</summary>
		<author><name>Dagar</name></author>
	</entry>
	<entry>
		<id>https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=6971</id>
		<title>COMP 3000 Essay 2 2010 Question 10</title>
		<link rel="alternate" type="text/html" href="https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=6971"/>
		<updated>2010-12-03T11:28:26Z</updated>

		<summary type="html">&lt;p&gt;Dagar: /* Contribution */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;mClock: Handling Throughput Variability for Hypervisor I/O Scheduling&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Paper==&lt;br /&gt;
&lt;br /&gt;
[http://www.usenix.org/events/osdi10/tech/full_papers/Gulati.pdf mClock: Handling Throughput Variability for Hypervisor I/O Scheduling]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Authors&#039;&#039;&#039;: &lt;br /&gt;
&lt;br /&gt;
Ajay Gulati VMware Inc. Palo Alto, CA, 94304 agulati@vmware.com&lt;br /&gt;
&lt;br /&gt;
Arif Merchant HP Labs Palo Alto, CA 94304 arif.merchant@acm.org&lt;br /&gt;
&lt;br /&gt;
Peter J. Varman Rice University Houston, TX, 77005 pjv@rice.edu&lt;br /&gt;
&lt;br /&gt;
==Background Concepts==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Virtual machines&#039;&#039;&#039; (VMs) are becoming increasingly significant as they are used by everyone from university students to large gaming firms. One of the key issues with virtual machines is ensuring that all shared resources on the machine are utilized equitably. In order to do this, and to provide the illusion that the virtual machine is running on its own hardware, a hypervisor is required. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Hypervisors&#039;&#039;&#039; are responsible for multiplexing hardware resources between virtual machines while providing isolation to an extent, using resource management. Three controls used by the hypervisor are:  reservations, where the minimum bounds are set (in absolute units); limits, where the maximum upper bound on the allocation is set (again in absolute units); and shares, which proportionally allocate the resources according to the weight of each VM. These three controls have been supported for CPU and memory resource allocation since 2003. However, the current issue is I/O resource allocation. Currently, when more VMs are added to a host, the contention for input/output (I/O) resources can suddenly lower a VM’s allocation. Also, the available throughput can change with time, and adjustments to allocations must be made dynamically.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Throughput&#039;&#039;&#039; is the average rate of job completion. In general, a system is considered more efficient if it has a higher throughput &amp;lt;sup&amp;gt;[[#Foot6|6]]&amp;lt;/sup&amp;gt;. In this paper, this term is used to discuss the fact that throughput varies, and the number of jobs a system wishes to complete varies as well. Therefore it is necessary to take throughput into account when scheduling IO resources.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;SFQ&#039;&#039;&#039;, or Start-Time Fair Queuing, is the traditional scheduler currently used to allocate resources. It follows a proportional-sharing algorithm which divides up the total throughput between the VMs in proportion to their assigned shares. The issue with this is that it does not consider reservations or limits in its allocation.&lt;br /&gt;
&lt;br /&gt;
==Research problem==&lt;br /&gt;
&lt;br /&gt;
====Problem====&lt;br /&gt;
Today, I/O resource allocation in modern hypervisors is very simple and somewhat primitive. Currently, an algorithm called PARDA (Proportional Allocation of Resources in Distributed storage Access) &amp;lt;sup&amp;gt;[[#Foot1|1]]&amp;lt;/sup&amp;gt; is used to allocate I/O resources to each VM running on a particular storage device. Unfortunately, the I/O resource allocation algorithm of the hosts use a fair-scheduler called SFQ &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt; &amp;lt;sup&amp;gt;[[#Foot3|3]]&amp;lt;/sup&amp;gt;.SFQ(D) (Start-time Fair Queuing) performs fairly well for low-intensity workloads. However, as the workload with VMs multiplies, the constant need for faster performance and efficiency rises. &lt;br /&gt;
&lt;br /&gt;
PARDA allocates I/O resources to VMs proportional to the number of I/O shares on the host, but each host uses a fair scheduler which divides the I/O shares amongst the VMs equally. This leads to the main problem; whenever another VM is added or another background application is run on one of the VMs, all other VMs suffer a huge performance loss; a 40% performance drop. This is completely unacceptable when applications have minimum performance requirements to run effectively. An application with minimum resource requirements can be running fine on any given VM, however as soon as the stress load on the shared storage device increases, the application might fail to run smoothly, or worse, crash.&lt;br /&gt;
&lt;br /&gt;
====Solution====&lt;br /&gt;
Therefore, hypervisors require a better resource-allocation algorithm in order to meet the need for high performance VMs running concurrently. The mClock algorithm is the solution that Gulati, Varman, and Merchant have proposed in this paper.&lt;br /&gt;
&lt;br /&gt;
==Contribution==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This paper addresses the current limitations of I/O resource allocation for hypervisors. It proposes a new, more efficient algorithm for the allocation of I/O resources. Older methods were limited as they only provided proportional shares, such as SFQ. The proposed algorithm, mClock, incorporates proportional shares, as well as a minimum reservation of I/O resources, and a maximum reservation.&lt;br /&gt;
 &lt;br /&gt;
Older methods of I/O resource allocation had a significant performance disadvantage. Whenever the load on the shared storage device was increased, or when another VM was added, the performance of all hosts would drop significantly. Also, these older methods provided unreliable I/O management of hypervisors. Conversely, mClock is able to present VMs with a guaranteed minimum reservation of I/O resources. This means that application performance will never drop below a certain point. This provides much better application stability on each of the VMs, and better overall performance and efficiency level, compared to older methods such as SFQ.&lt;br /&gt;
&lt;br /&gt;
mClock is a resource-allocation algorithm that helps hypervisors manage I/O requests from multiple virtual machines simultaneously. It is a better alternative to SFQ because it supports all controls in a single algorithm, handles variable and unknown capacity, and computes quickly. The algorithm does not weaken the performance level as each VM gets added on, and mClock reservations are met. Essentially, mClock dynamically adjusts the proportions of resources each VM receives based on current activity. While mClock constantly changes the physical resource allocation to each VM, it lets each VM hold onto the illusion that it has full control of all system resources. As a result, performance can be increased for VMs that need it, without letting the others know that “their” resources are being distributed to other machines. What mClock attempts to achieve is combining a constraint-based scheduler and a weight-based scheduler. Making sure the minimum I/O reservation limit is consistently met, yet not over the upper bound limit, would be handled by the constraint-based scheduler. Then, it is the responsibility of the weight-based scheduler to distribute the remaining I/O throughput to the rest of the VMs equally. &lt;br /&gt;
&lt;br /&gt;
The mClock algorithm uses a tag-based scheduler with some modifications; like other tag-based schedulers all I/O requests are assigned tags and scheduled in order of their tag values. The modifications include the ability to use multiple tags based on the three controls (shares, reservations and limits) and to dynamically decide which tag to use for scheduling, while still synchronizing idle VMs &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
mClock was implemented on a modified version of VMware ESX server hypervisor &amp;lt;sup&amp;gt;[[#Foot4|4]]&amp;lt;/sup&amp;gt; &amp;lt;sup&amp;gt;[[#Foot5|5]]&amp;lt;/sup&amp;gt;. This modification only took around 200 lines of C code. This shows that it was not very difficult to implement mClock effectively in a existing product, and to improve performance. The mClock algorithm should be relatively portable and easy to implement in other hypervisors. &lt;br /&gt;
&lt;br /&gt;
Another contribution was the introduction of Distributed mClock or &#039;&#039;&#039;dmClock&#039;&#039;&#039; which basically runs an altered version of mClock at each server. dmClock is mainly used for cluster-based storage system which are rising as centralized disk arrays, and better than the alternatives in terms of cost. The reservation in this modified algorithm gives higher preference to non-idle VMs to attain high performance. dmClock proved to be effective with a simple, modified mClock algorithm which does not require complex synchronizations between servers.&lt;br /&gt;
&lt;br /&gt;
==Critique==&lt;br /&gt;
&lt;br /&gt;
The article introduces the mClock algorithm which handles I/O resource allocation on multiple VMs in a variable throughput environment. The Quality of Service (QoS) requirements for a VM are expressed as a minimum reservation, a maximum limit, and a proportional share. A positive aspect of this algorithm is that it is able to meet those controls in varying capacity. Also, it is significant that the algorithm was proven to be more efficient than existing methods at allocating IO resources in clustered architectures while providing greater isolation between VMs. mClock allows users to be comfortable when working with multiple VMs on one host without the constant worry of performance levels, with each VM add-on.&lt;br /&gt;
&lt;br /&gt;
The paper proposes a better, and effective alternative to SFQ and other older methods and the mClock algorithm efficiently handles multiple VMs in a throughput environment (LUN, PARDA).&lt;br /&gt;
&lt;br /&gt;
The negative aspect of this paper was the writing style used for displaying calculations. In many sections of the essay, the calculations are embedded in a sentence which makes it difficult to read and understand them. One example is the following line:  &amp;quot;For a small reference I/O size of 8KB and using typical values for mechanical delay T&amp;lt;sub&amp;gt;m&amp;lt;/sub&amp;gt; = 5ms and peak transfer rate, B&amp;lt;sub&amp;gt;peak&amp;lt;/sub&amp;gt; = 60 MB/s, the numerator = Lat&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;*(1 + 8/300) &amp;amp;asymp; Lat&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;&amp;quot; &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt;.&amp;lt;math&amp;gt;&amp;lt;/math&amp;gt;  The calculations were often about how the algorithm would calculate the resource allocation but it was not really necessary to include them; the essay is understandable without them.&lt;br /&gt;
&lt;br /&gt;
In general, however, the essay is clear and not difficult to understand. As well, the case for this algorithm appears well-presented and valid.&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot1&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; A. Gulati, I. Ahmad, and C. Waldspurger. PARDA: Proportional&lt;br /&gt;
Allocation of Resources in Distributed Storage&lt;br /&gt;
Access. In (FAST ’09) Proceedings of the Seventh Usenix&lt;br /&gt;
Conference on File and Storage Technologies, Feb 2009.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot2&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; W. Jin, J. S. Chase, and J. Kaur. Interposed proportional&lt;br /&gt;
sharing for a storage service utility. In ACM SIGMET-&lt;br /&gt;
RICS, 2004. [http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.72.7012&amp;amp;rep=rep1&amp;amp;type=pdf Interposed proportional sharing for a storage service utility]&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot3&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt;&lt;br /&gt;
P. Goyal, H. M. Vin, and H. Cheng. Start-Time Fair&lt;br /&gt;
Queuing: A scheduling algorithm for integrated services&lt;br /&gt;
packet switching networks. Technical Report CS-TR-96-&lt;br /&gt;
02, UT Austin, January 1996.&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot4&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;4&amp;lt;/sup&amp;gt;&lt;br /&gt;
VMware ESX Server User Manual, December 2007.&lt;br /&gt;
VMware Inc.&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot5&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;5&amp;lt;/sup&amp;gt;&lt;br /&gt;
VMware, Inc. Introduction to VMware Infrastructure.&lt;br /&gt;
2007. http://www.vmware.com/support/pubs/.&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot6&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;6&amp;lt;/sup&amp;gt;&lt;br /&gt;
A. S. Tanenbaum. Modern Operating Systems: Third Edition. Pearson Education, 2008.&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;/div&gt;</summary>
		<author><name>Dagar</name></author>
	</entry>
	<entry>
		<id>https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=6970</id>
		<title>COMP 3000 Essay 2 2010 Question 10</title>
		<link rel="alternate" type="text/html" href="https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=6970"/>
		<updated>2010-12-03T11:27:07Z</updated>

		<summary type="html">&lt;p&gt;Dagar: /* Contribution */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;mClock: Handling Throughput Variability for Hypervisor I/O Scheduling&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Paper==&lt;br /&gt;
&lt;br /&gt;
[http://www.usenix.org/events/osdi10/tech/full_papers/Gulati.pdf mClock: Handling Throughput Variability for Hypervisor I/O Scheduling]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Authors&#039;&#039;&#039;: &lt;br /&gt;
&lt;br /&gt;
Ajay Gulati VMware Inc. Palo Alto, CA, 94304 agulati@vmware.com&lt;br /&gt;
&lt;br /&gt;
Arif Merchant HP Labs Palo Alto, CA 94304 arif.merchant@acm.org&lt;br /&gt;
&lt;br /&gt;
Peter J. Varman Rice University Houston, TX, 77005 pjv@rice.edu&lt;br /&gt;
&lt;br /&gt;
==Background Concepts==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Virtual machines&#039;&#039;&#039; (VMs) are becoming increasingly significant as they are used by everyone from university students to large gaming firms. One of the key issues with virtual machines is ensuring that all shared resources on the machine are utilized equitably. In order to do this, and to provide the illusion that the virtual machine is running on its own hardware, a hypervisor is required. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Hypervisors&#039;&#039;&#039; are responsible for multiplexing hardware resources between virtual machines while providing isolation to an extent, using resource management. Three controls used by the hypervisor are:  reservations, where the minimum bounds are set (in absolute units); limits, where the maximum upper bound on the allocation is set (again in absolute units); and shares, which proportionally allocate the resources according to the weight of each VM. These three controls have been supported for CPU and memory resource allocation since 2003. However, the current issue is I/O resource allocation. Currently, when more VMs are added to a host, the contention for input/output (I/O) resources can suddenly lower a VM’s allocation. Also, the available throughput can change with time, and adjustments to allocations must be made dynamically.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Throughput&#039;&#039;&#039; is the average rate of job completion. In general, a system is considered more efficient if it has a higher throughput &amp;lt;sup&amp;gt;[[#Foot6|6]]&amp;lt;/sup&amp;gt;. In this paper, this term is used to discuss the fact that throughput varies, and the number of jobs a system wishes to complete varies as well. Therefore it is necessary to take throughput into account when scheduling IO resources.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;SFQ&#039;&#039;&#039;, or Start-Time Fair Queuing, is the traditional scheduler currently used to allocate resources. It follows a proportional-sharing algorithm which divides up the total throughput between the VMs in proportion to their assigned shares. The issue with this is that it does not consider reservations or limits in its allocation.&lt;br /&gt;
&lt;br /&gt;
==Research problem==&lt;br /&gt;
&lt;br /&gt;
====Problem====&lt;br /&gt;
Today, I/O resource allocation in modern hypervisors is very simple and somewhat primitive. Currently, an algorithm called PARDA (Proportional Allocation of Resources in Distributed storage Access) &amp;lt;sup&amp;gt;[[#Foot1|1]]&amp;lt;/sup&amp;gt; is used to allocate I/O resources to each VM running on a particular storage device. Unfortunately, the I/O resource allocation algorithm of the hosts use a fair-scheduler called SFQ &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt; &amp;lt;sup&amp;gt;[[#Foot3|3]]&amp;lt;/sup&amp;gt;.SFQ(D) (Start-time Fair Queuing) performs fairly well for low-intensity workloads. However, as the workload with VMs multiplies, the constant need for faster performance and efficiency rises. &lt;br /&gt;
&lt;br /&gt;
PARDA allocates I/O resources to VMs proportional to the number of I/O shares on the host, but each host uses a fair scheduler which divides the I/O shares amongst the VMs equally. This leads to the main problem; whenever another VM is added or another background application is run on one of the VMs, all other VMs suffer a huge performance loss; a 40% performance drop. This is completely unacceptable when applications have minimum performance requirements to run effectively. An application with minimum resource requirements can be running fine on any given VM, however as soon as the stress load on the shared storage device increases, the application might fail to run smoothly, or worse, crash.&lt;br /&gt;
&lt;br /&gt;
====Solution====&lt;br /&gt;
Therefore, hypervisors require a better resource-allocation algorithm in order to meet the need for high performance VMs running concurrently. The mClock algorithm is the solution that Gulati, Varman, and Merchant have proposed in this paper.&lt;br /&gt;
&lt;br /&gt;
==Contribution==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This paper addresses the current limitations of I/O resource allocation for hypervisors. It proposes a new, more efficient algorithm for the allocation of I/O resources. Older methods were limited as they only provided proportional shares, such as SFQ. The proposed algorithm, mClock, incorporates proportional shares, as well as a minimum reservation of I/O resources, and a maximum reservation.&lt;br /&gt;
 &lt;br /&gt;
Older methods of I/O resource allocation had a significant performance disadvantage. Whenever the load on the shared storage device was increased, or when another VM was added, the performance of all hosts would drop significantly. Also, these older methods provided unreliable I/O management of hypervisors. Conversely, mClock is able to present VMs with a guaranteed minimum reservation of I/O resources. This means that application performance will never drop below a certain point. This provides much better application stability on each of the VMs, and better overall performance and efficiency level, compared to older methods such as SFQ.&lt;br /&gt;
&lt;br /&gt;
mClock is a resource-allocation algorithm that helps hypervisors manage I/O requests from multiple virtual machines simultaneously. It is a better alternative to SFQ because it supports all controls in a single algorithm, handles variable and unknown capacity, and computes quickly. The algorithm does not weaken the performance level as each VM gets added on, and mClock reservations are met. Essentially, mClock dynamically adjusts the proportions of resources each VM receives based on current activity. While mClock constantly changes the physical resource allocation to each VM, it lets each VM hold onto the illusion that it has full control of all system resources. As a result, performance can be increased for VMs that need it, without letting the others know that “their” resources are being distributed to other machines. What mClock attempts to achieve is combining a constraint-based scheduler and a weight-based scheduler. Making sure the minimum I/O reservation limit is consistently met, yet not over the upper bound limit, would be handled by the constraint-based scheduler. Then, it is the responsibility of the weight-based scheduler to distribute the remaining I/O throughput to the rest of the VMs equally. &lt;br /&gt;
&lt;br /&gt;
The mClock algorithm uses a tag-based scheduler with some modifications; like other tag-based schedulers all I/O requests are assigned tags and scheduled in order of their tag values. The modifications include the ability to use multiple tags based on the three controls (shares, reservations and limits) and to dynamically decide which tag to use for scheduling, while still synchronizing idle VMs &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
mClock was implemented on a modified version of VMware ESX server hypervisor &amp;lt;sup&amp;gt;[[#Foot4|4]]&amp;lt;/sup&amp;gt; &amp;lt;sup&amp;gt;[[#Foot5|5]]&amp;lt;/sup&amp;gt;. This modification only took around 200 lines of C code. This shows that it was not very difficult to implement mClock effectively in a existing product, and to improve performance. The mClock algorithm should be relatively portable and easy to implement in other hypervisors. &lt;br /&gt;
&lt;br /&gt;
Another contribution was the introduction of Distributed mClock or dmClock which basically runs an altered version of mClock at each server. dmClock is mainly used for cluster-based storage system which are rising as centralized disk arrays, and better than the alternates in terms of cost. The reservation in this modified algorithm gives higher preference to non-idle VMs to attain high performance. dmClock proved to be effective with a simple, modified mClock algorithm which does not require complex synchronizations between servers.&lt;br /&gt;
&lt;br /&gt;
==Critique==&lt;br /&gt;
&lt;br /&gt;
The article introduces the mClock algorithm which handles I/O resource allocation on multiple VMs in a variable throughput environment. The Quality of Service (QoS) requirements for a VM are expressed as a minimum reservation, a maximum limit, and a proportional share. A positive aspect of this algorithm is that it is able to meet those controls in varying capacity. Also, it is significant that the algorithm was proven to be more efficient than existing methods at allocating IO resources in clustered architectures while providing greater isolation between VMs. mClock allows users to be comfortable when working with multiple VMs on one host without the constant worry of performance levels, with each VM add-on.&lt;br /&gt;
&lt;br /&gt;
The paper proposes a better, and effective alternative to SFQ and other older methods and the mClock algorithm efficiently handles multiple VMs in a throughput environment (LUN, PARDA).&lt;br /&gt;
&lt;br /&gt;
The negative aspect of this paper was the writing style used for displaying calculations. In many sections of the essay, the calculations are embedded in a sentence which makes it difficult to read and understand them. One example is the following line:  &amp;quot;For a small reference I/O size of 8KB and using typical values for mechanical delay T&amp;lt;sub&amp;gt;m&amp;lt;/sub&amp;gt; = 5ms and peak transfer rate, B&amp;lt;sub&amp;gt;peak&amp;lt;/sub&amp;gt; = 60 MB/s, the numerator = Lat&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;*(1 + 8/300) &amp;amp;asymp; Lat&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;&amp;quot; &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt;.&amp;lt;math&amp;gt;&amp;lt;/math&amp;gt;  The calculations were often about how the algorithm would calculate the resource allocation but it was not really necessary to include them; the essay is understandable without them.&lt;br /&gt;
&lt;br /&gt;
In general, however, the essay is clear and not difficult to understand. As well, the case for this algorithm appears well-presented and valid.&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot1&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; A. Gulati, I. Ahmad, and C. Waldspurger. PARDA: Proportional&lt;br /&gt;
Allocation of Resources in Distributed Storage&lt;br /&gt;
Access. In (FAST ’09) Proceedings of the Seventh Usenix&lt;br /&gt;
Conference on File and Storage Technologies, Feb 2009.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot2&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; W. Jin, J. S. Chase, and J. Kaur. Interposed proportional&lt;br /&gt;
sharing for a storage service utility. In ACM SIGMET-&lt;br /&gt;
RICS, 2004. [http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.72.7012&amp;amp;rep=rep1&amp;amp;type=pdf Interposed proportional sharing for a storage service utility]&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot3&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt;&lt;br /&gt;
P. Goyal, H. M. Vin, and H. Cheng. Start-Time Fair&lt;br /&gt;
Queuing: A scheduling algorithm for integrated services&lt;br /&gt;
packet switching networks. Technical Report CS-TR-96-&lt;br /&gt;
02, UT Austin, January 1996.&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot4&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;4&amp;lt;/sup&amp;gt;&lt;br /&gt;
VMware ESX Server User Manual, December 2007.&lt;br /&gt;
VMware Inc.&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot5&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;5&amp;lt;/sup&amp;gt;&lt;br /&gt;
VMware, Inc. Introduction to VMware Infrastructure.&lt;br /&gt;
2007. http://www.vmware.com/support/pubs/.&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot6&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;6&amp;lt;/sup&amp;gt;&lt;br /&gt;
A. S. Tanenbaum. Modern Operating Systems: Third Edition. Pearson Education, 2008.&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;/div&gt;</summary>
		<author><name>Dagar</name></author>
	</entry>
	<entry>
		<id>https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=6969</id>
		<title>COMP 3000 Essay 2 2010 Question 10</title>
		<link rel="alternate" type="text/html" href="https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=6969"/>
		<updated>2010-12-03T11:23:16Z</updated>

		<summary type="html">&lt;p&gt;Dagar: /* Contribution */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;mClock: Handling Throughput Variability for Hypervisor I/O Scheduling&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Paper==&lt;br /&gt;
&lt;br /&gt;
[http://www.usenix.org/events/osdi10/tech/full_papers/Gulati.pdf mClock: Handling Throughput Variability for Hypervisor I/O Scheduling]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Authors&#039;&#039;&#039;: &lt;br /&gt;
&lt;br /&gt;
Ajay Gulati VMware Inc. Palo Alto, CA, 94304 agulati@vmware.com&lt;br /&gt;
&lt;br /&gt;
Arif Merchant HP Labs Palo Alto, CA 94304 arif.merchant@acm.org&lt;br /&gt;
&lt;br /&gt;
Peter J. Varman Rice University Houston, TX, 77005 pjv@rice.edu&lt;br /&gt;
&lt;br /&gt;
==Background Concepts==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Virtual machines&#039;&#039;&#039; (VMs) are becoming increasingly significant as they are used by everyone from university students to large gaming firms. One of the key issues with virtual machines is ensuring that all shared resources on the machine are utilized equitably. In order to do this, and to provide the illusion that the virtual machine is running on its own hardware, a hypervisor is required. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Hypervisors&#039;&#039;&#039; are responsible for multiplexing hardware resources between virtual machines while providing isolation to an extent, using resource management. Three controls used by the hypervisor are:  reservations, where the minimum bounds are set (in absolute units); limits, where the maximum upper bound on the allocation is set (again in absolute units); and shares, which proportionally allocate the resources according to the weight of each VM. These three controls have been supported for CPU and memory resource allocation since 2003. However, the current issue is I/O resource allocation. Currently, when more VMs are added to a host, the contention for input/output (I/O) resources can suddenly lower a VM’s allocation. Also, the available throughput can change with time, and adjustments to allocations must be made dynamically.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Throughput&#039;&#039;&#039; is the average rate of job completion. In general, a system is considered more efficient if it has a higher throughput &amp;lt;sup&amp;gt;[[#Foot6|6]]&amp;lt;/sup&amp;gt;. In this paper, this term is used to discuss the fact that throughput varies, and the number of jobs a system wishes to complete varies as well. Therefore it is necessary to take throughput into account when scheduling IO resources.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;SFQ&#039;&#039;&#039;, or Start-Time Fair Queuing, is the traditional scheduler currently used to allocate resources. It follows a proportional-sharing algorithm which divides up the total throughput between the VMs in proportion to their assigned shares. The issue with this is that it does not consider reservations or limits in its allocation.&lt;br /&gt;
&lt;br /&gt;
==Research problem==&lt;br /&gt;
&lt;br /&gt;
====Problem====&lt;br /&gt;
Today, I/O resource allocation in modern hypervisors is very simple and somewhat primitive. Currently, an algorithm called PARDA (Proportional Allocation of Resources in Distributed storage Access) &amp;lt;sup&amp;gt;[[#Foot1|1]]&amp;lt;/sup&amp;gt; is used to allocate I/O resources to each VM running on a particular storage device. Unfortunately, the I/O resource allocation algorithm of the hosts use a fair-scheduler called SFQ &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt; &amp;lt;sup&amp;gt;[[#Foot3|3]]&amp;lt;/sup&amp;gt;.SFQ(D) (Start-time Fair Queuing) performs fairly well for low-intensity workloads. However, as the workload with VMs multiplies, the constant need for faster performance and efficiency rises. &lt;br /&gt;
&lt;br /&gt;
PARDA allocates I/O resources to VMs proportional to the number of I/O shares on the host, but each host uses a fair scheduler which divides the I/O shares amongst the VMs equally. This leads to the main problem; whenever another VM is added or another background application is run on one of the VMs, all other VMs suffer a huge performance loss; a 40% performance drop. This is completely unacceptable when applications have minimum performance requirements to run effectively. An application with minimum resource requirements can be running fine on any given VM, however as soon as the stress load on the shared storage device increases, the application might fail to run smoothly, or worse, crash.&lt;br /&gt;
&lt;br /&gt;
====Solution====&lt;br /&gt;
Therefore, hypervisors require a better resource-allocation algorithm in order to meet the need for high performance VMs running concurrently. The mClock algorithm is the solution that Gulati, Varman, and Merchant have proposed in this paper.&lt;br /&gt;
&lt;br /&gt;
==Contribution==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This paper addresses the current limitations of I/O resource allocation for hypervisors. It proposes a new, more efficient algorithm for the allocation of I/O resources. Older methods were limited as they only provided proportional shares, such as SFQ. The proposed algorithm, mClock, incorporates proportional shares, as well as a minimum reservation of I/O resources, and a maximum reservation.&lt;br /&gt;
 &lt;br /&gt;
Older methods of I/O resource allocation had a significant performance disadvantage. Whenever the load on the shared storage device was increased, or when another VM was added, the performance of all hosts would drop significantly. Also, these older methods provided unreliable I/O management of hypervisors. Conversely, mClock is able to present VMs with a guaranteed minimum reservation of I/O resources. This means that application performance will never drop below a certain point. This provides much better application stability on each of the VMs, and better overall performance and efficiency level, compared to older methods such as SFQ.&lt;br /&gt;
&lt;br /&gt;
mClock is a resource-allocation algorithm that helps hypervisors manage I/O requests from multiple virtual machines simultaneously. It is a better alternative to SFQ because it supports all controls in a single algorithm, handles variable and unknown capacity, and computes quickly. The algorithm does not weaken the performance level as each VM gets added on, and mClock reservations are met. Essentially, mClock dynamically adjusts the proportions of resources each VM receives based on current activity. While mClock constantly changes the physical resource allocation to each VM, it lets each VM hold onto the illusion that it has full control of all system resources. As a result, performance can be increased for VMs that need it, without letting the others know that “their” resources are being distributed to other machines. What mClock attempts to achieve is combining a constraint-based scheduler and a weight-based scheduler. Making sure the minimum I/O reservation limit is consistently met, yet not over the upper bound limit, would be handled by the constraint-based scheduler. Then, it is the responsibility of the weight-based scheduler to distribute the remaining I/O throughput to the rest of the VMs equally. &lt;br /&gt;
&lt;br /&gt;
The mClock algorithm uses a tag-based scheduler with some modifications; like the tag-based schedulers all I/O requests are assigned tags and scheduled in order of their tag values, the modifications includes the ability to use multiple tags based on the three controls and to dynamically decide which tag to use for scheduling, while still synchronizing idle VMs &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
mClock was implemented on a modified version of VMware ESX server hypervisor  &amp;lt;sup&amp;gt;[[#Foot4|4]]&amp;lt;/sup&amp;gt;  &amp;lt;sup&amp;gt;[[#Foot5|5]]&amp;lt;/sup&amp;gt;. This modification only took around 200 lines of C code. This shows that it was not very difficult to implement mClock effectively in a existing product, and to improve its performance results. Therefore, mClock would be portable and easy to implement in other hypervisors as well. &lt;br /&gt;
&lt;br /&gt;
Another contribution was the introduction of Distributed mClock or dmClock which basically runs an altered version of mClock at each server. dmClock is mainly used for cluster-based storage system which are rising as centralized disk arrays, and better than the alternates in terms of cost. The reservation in this modified algorithm gives higher preference to non-idle VMs to attain high performance. dmClock proved to be effective with a simple, modified mClock algorithm which does not require complex synchronizations between servers.&lt;br /&gt;
&lt;br /&gt;
==Critique==&lt;br /&gt;
&lt;br /&gt;
The article introduces the mClock algorithm which handles I/O resource allocation on multiple VMs in a variable throughput environment. The Quality of Service (QoS) requirements for a VM are expressed as a minimum reservation, a maximum limit, and a proportional share. A positive aspect of this algorithm is that it is able to meet those controls in varying capacity. Also, it is significant that the algorithm was proven to be more efficient than existing methods at allocating IO resources in clustered architectures while providing greater isolation between VMs. mClock allows users to be comfortable when working with multiple VMs on one host without the constant worry of performance levels, with each VM add-on.&lt;br /&gt;
&lt;br /&gt;
The paper proposes a better, and effective alternative to SFQ and other older methods and the mClock algorithm efficiently handles multiple VMs in a throughput environment (LUN, PARDA).&lt;br /&gt;
&lt;br /&gt;
The negative aspect of this paper was the writing style used for displaying calculations. In many sections of the essay, the calculations are embedded in a sentence which makes it difficult to read and understand them. One example is the following line:  &amp;quot;For a small reference I/O size of 8KB and using typical values for mechanical delay T&amp;lt;sub&amp;gt;m&amp;lt;/sub&amp;gt; = 5ms and peak transfer rate, B&amp;lt;sub&amp;gt;peak&amp;lt;/sub&amp;gt; = 60 MB/s, the numerator = Lat&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;*(1 + 8/300) &amp;amp;asymp; Lat&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;&amp;quot; &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt;.&amp;lt;math&amp;gt;&amp;lt;/math&amp;gt;  The calculations were often about how the algorithm would calculate the resource allocation but it was not really necessary to include them; the essay is understandable without them.&lt;br /&gt;
&lt;br /&gt;
In general, however, the essay is clear and not difficult to understand. As well, the case for this algorithm appears well-presented and valid.&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot1&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; A. Gulati, I. Ahmad, and C. Waldspurger. PARDA: Proportional&lt;br /&gt;
Allocation of Resources in Distributed Storage&lt;br /&gt;
Access. In (FAST ’09) Proceedings of the Seventh Usenix&lt;br /&gt;
Conference on File and Storage Technologies, Feb 2009.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot2&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; W. Jin, J. S. Chase, and J. Kaur. Interposed proportional&lt;br /&gt;
sharing for a storage service utility. In ACM SIGMET-&lt;br /&gt;
RICS, 2004. [http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.72.7012&amp;amp;rep=rep1&amp;amp;type=pdf Interposed proportional sharing for a storage service utility]&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot3&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt;&lt;br /&gt;
P. Goyal, H. M. Vin, and H. Cheng. Start-Time Fair&lt;br /&gt;
Queuing: A scheduling algorithm for integrated services&lt;br /&gt;
packet switching networks. Technical Report CS-TR-96-&lt;br /&gt;
02, UT Austin, January 1996.&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot4&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;4&amp;lt;/sup&amp;gt;&lt;br /&gt;
VMware ESX Server User Manual, December 2007.&lt;br /&gt;
VMware Inc.&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot5&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;5&amp;lt;/sup&amp;gt;&lt;br /&gt;
VMware, Inc. Introduction to VMware Infrastructure.&lt;br /&gt;
2007. http://www.vmware.com/support/pubs/.&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot6&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;6&amp;lt;/sup&amp;gt;&lt;br /&gt;
A. S. Tanenbaum. Modern Operating Systems: Third Edition. Pearson Education, 2008.&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;/div&gt;</summary>
		<author><name>Dagar</name></author>
	</entry>
	<entry>
		<id>https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=6960</id>
		<title>COMP 3000 Essay 2 2010 Question 10</title>
		<link rel="alternate" type="text/html" href="https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=6960"/>
		<updated>2010-12-03T11:14:17Z</updated>

		<summary type="html">&lt;p&gt;Dagar: /* Background Concepts */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;mClock: Handling Throughput Variability for Hypervisor I/O Scheduling&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Paper==&lt;br /&gt;
&lt;br /&gt;
[http://www.usenix.org/events/osdi10/tech/full_papers/Gulati.pdf mClock: Handling Throughput Variability for Hypervisor I/O Scheduling]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Authors&#039;&#039;&#039;: &lt;br /&gt;
&lt;br /&gt;
Ajay Gulati VMware Inc. Palo Alto, CA, 94304 agulati@vmware.com&lt;br /&gt;
&lt;br /&gt;
Arif Merchant HP Labs Palo Alto, CA 94304 arif.merchant@acm.org&lt;br /&gt;
&lt;br /&gt;
Peter J. Varman Rice University Houston, TX, 77005 pjv@rice.edu&lt;br /&gt;
&lt;br /&gt;
==Background Concepts==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Virtual machines&#039;&#039;&#039; (VMs) are becoming increasingly significant as they are used by everyone from university students to large gaming firms. One of the key issues with virtual machines is ensuring that all shared resources on the machine are utilized equitably. In order to do this, and to provide the illusion that the virtual machine is running on its own hardware, a hypervisor is required. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Hypervisors&#039;&#039;&#039; are responsible for multiplexing hardware resources between virtual machines while providing isolation to an extent, using resource management. Three controls used by the hypervisor are:  reservations, where the minimum bounds are set (in absolute units); limits, where the maximum upper bound on the allocation is set (again in absolute units); and shares, which proportionally allocate the resources according to the weight of each VM. These three controls have been supported for CPU and memory resource allocation since 2003. However, the current issue is I/O resource allocation. Currently, when more VMs are added to a host, the contention for input/output (I/O) resources can suddenly lower a VM’s allocation. Also, the available throughput can change with time, and adjustments to allocations must be made dynamically.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Throughput&#039;&#039;&#039; is the average rate of job completion. In general, a system is considered more efficient if it has a higher throughput &amp;lt;sup&amp;gt;[[#Foot6|6]]&amp;lt;/sup&amp;gt;. In this paper, this term is used to discuss the fact that throughput varies, and the number of jobs a system wishes to complete varies as well. Therefore it is necessary to take throughput into account when scheduling IO resources.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;SFQ&#039;&#039;&#039;, or Start-Time Fair Queuing, is the traditional scheduler currently used to allocate resources. It follows a proportional-sharing algorithm which divides up the total throughput between the VMs in proportion to their assigned shares. The issue with this is that it does not consider reservations or limits in its allocation.&lt;br /&gt;
&lt;br /&gt;
SFQ(D) (Start-time Fair Queuing)&amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt; &amp;lt;sup&amp;gt;[[#Foot3|3]]&amp;lt;/sup&amp;gt;  performs fairly well for low-intensity workloads. However, as the workload with VMs multiplies, the constant need for faster performance and efficiency rises. Hypervisors require a better resource-allocation algorithm in order to meet the need for high performance VMs running concurrently; mClock was the answer Gulati, Varman, and Merchant proposed.&lt;br /&gt;
&lt;br /&gt;
==Research problem==&lt;br /&gt;
&lt;br /&gt;
====Problem Facing====&lt;br /&gt;
Today, I/O resource allocation in modern hypervisors is very simple and somewhat primitive. Currently, an algorithm called PARDA (Proportional Allocation of Resources in Distributed storage Access) &amp;lt;sup&amp;gt;[[#Foot1|1]]&amp;lt;/sup&amp;gt; is used to allocate I/O resources to each VM running on a particular storage device. Unfortunately, the I/O resource allocation algorithm of the hosts use a fair-scheduler called SFQ &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt; &amp;lt;sup&amp;gt;[[#Foot3|3]]&amp;lt;/sup&amp;gt;.SFQ(D) (Start-time Fair Queuing) performs fairly well for low-intensity workloads. However, as the workload with VMs multiplies, the constant need for faster performance and efficiency rises. &lt;br /&gt;
&lt;br /&gt;
PARDA allocates I/O resources to VMs proportional to the number of I/O shares on the host, but each host uses a fair scheduler which divides the I/O shares amongst the VMs equally. This leads to the main problem; whenever another VM is added or another background application is run on one of the VMs, all other VMs suffer a huge performance loss; a 40% performance drop. This is completely unacceptable when applications have minimum performance requirements to run effectively. An application with minimum resource requirements can be running fine on any given VM, however as soon as the stress load on the shared storage device increases, the application might fail to run smoothly, or worse, crash.&lt;br /&gt;
&lt;br /&gt;
====Solution====&lt;br /&gt;
We need an algorithm which uses all three controls in order to properly allocate resources for each request. To resolve this issue of resource allocation and performance, mClock is introduced and tested against SFQ&amp;lt;sup&amp;gt;[[#Foot3|3]]&amp;lt;/sup&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==Contribution==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This paper addresses the current limitations of I/O resource allocation for hypervisors. It proposes a new, more efficient algorithm for the allocation of I/O resources. Older methods were limited as they only provided proportional shares, such as SFQ. The proposed algorithm, mClock, incorporates proportional shares, as well as a minimum reservation of I/O resources, and a maximum reservation.&lt;br /&gt;
 &lt;br /&gt;
Older methods of I/O resource allocation had a significant performance disadvantage. Whenever the load on the shared storage device was increased, or when another VM was added, the performance of all hosts would drop significantly. Also, these older methods provided unreliable I/O management of hypervisors. Conversely, mClock is able to present VMs with a guaranteed minimum reservation of I/O resources. This means that application performance will never drop below a certain point. This provides much better application stability on each of the VMs, and better overall performance and efficiency level, compared to older methods such as SFQ.&lt;br /&gt;
&lt;br /&gt;
mClock is a resource-allocation algorithm that helps hypervisors manage I/O requests from multiple virtual machines simultaneously. It is a better alternative to SFQ because it supports all controls in a single algorithm, handles variable and unknown capacity, and computes quickly. The algorithm does not weaken the performance level as each VM gets added on, and mClock reservations are met. Essentially, mClock dynamically adjusts the proportions of resources each VM receives based on how active each VM currently is. While mClock constantly changes the physical resource allocation to each VM, it lets each VM hold onto the illusion that it has full control of all system resources. As a result, performance can be increased for VMs that need it, without letting the others know that “their” resources are being distributed to other machines. What mClock attempts to achieve is combining a constraint-based scheduler and a weight-based scheduler. Making sure the minimum IO reservation limit is consistently met, yet not over the upper bound limit, would be handled by the constraint-based scheduler. Then, it is the responsibility of the weight-based scheduler to distribute the remaining IO throughput to the rest of the VMs equally. &lt;br /&gt;
&lt;br /&gt;
The mClock algorithm uses a tag-based scheduler with some modifications; like the tag-based schedulers all I/O requests are assigned tags  and scheduled in order of their tag values, the modifications includes the ability to use multiple tags based on the three controls and to dynamically decide which tag to use for scheduling, while still synchronizing idle VMs &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
mClock was implemented on a modified version of VMware ESX server hypervisor  &amp;lt;sup&amp;gt;[[#Foot4|4]]&amp;lt;/sup&amp;gt;  &amp;lt;sup&amp;gt;[[#Foot5|5]]&amp;lt;/sup&amp;gt;. This modification only took around 200 lines of C code. This shows that it was not very difficult to implement mClock effectively in a existing product, and to improve its performance results. Therefore, mClock would be portable and easy to implement in other hypervisors as well. &lt;br /&gt;
&lt;br /&gt;
Another contribution was the introduction of Distributed mClock or dmClock which basically runs an altered version of mClock at each server. dmClock is mainly used for cluster-based storage system which are rising as centralized disk arrays, and better than the alternates in terms of cost. The reservation in this modified algorithm gives higher preference to non-idle VMs to attain high performance. dmClock proved to be effective with a simple, modified mClock algorithm which does not require complex synchronizations between servers.&lt;br /&gt;
&lt;br /&gt;
==Critique==&lt;br /&gt;
&lt;br /&gt;
The article introduces the mClock algorithm which handles (I/O resource allocation on) multiple VM in a variable throughput environment. The Quality of Service (QoS) requirements for a VM are expressed as a minimum reservation, a maximum limit, and a proportional share. A positive aspect of this algorithm, mClock, is that it is able to meet those controls in varying capacity. Also, it is significant that the algorithm was proven to be more efficient than existing methods at allocating IO resources in clustered architectures while providing greater isolation between VMs. mClock allows users to be comfortable when working with multiple VMs on one host without the constant worry of performance levels, with each VM add-on.&lt;br /&gt;
&lt;br /&gt;
The paper proposes a better, and effective alternative to SFQ and other older methods and the mClock algorithm efficiently handles multiple VMs in a throughput environment (LUN, PARDA).&lt;br /&gt;
&lt;br /&gt;
The negative aspect of this paper was the writing style used for displaying calculations. In many sections of the essay, the calculations are embedded in a sentence which makes it difficult to read and understand them. One example is the following line:  &amp;quot;For a small reference I/O size of 8KB and using typical values for mechanical delay T&amp;lt;sub&amp;gt;m&amp;lt;/sub&amp;gt; = 5ms and peak transfer rate, B&amp;lt;sub&amp;gt;peak&amp;lt;/sub&amp;gt; = 60 MB/s, the numerator = Lat&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;*(1 + 8/300) &amp;amp;asymp; Lat&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;&amp;quot; &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt;.&amp;lt;math&amp;gt;&amp;lt;/math&amp;gt;  The calculations were often about how the algorithm would calculate the resource allocation but it was not really necessary to include them; the essay is understandable without them.&lt;br /&gt;
&lt;br /&gt;
In general, however, the essay is clear and not difficult to understand. As well, the case for this algorithm appears well-presented and valid.&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot1&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; A. Gulati, I. Ahmad, and C. Waldspurger. PARDA: Proportional&lt;br /&gt;
Allocation of Resources in Distributed Storage&lt;br /&gt;
Access. In (FAST ’09) Proceedings of the Seventh Usenix&lt;br /&gt;
Conference on File and Storage Technologies, Feb 2009.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot2&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; W. Jin, J. S. Chase, and J. Kaur. Interposed proportional&lt;br /&gt;
sharing for a storage service utility. In ACM SIGMET-&lt;br /&gt;
RICS, 2004. [http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.72.7012&amp;amp;rep=rep1&amp;amp;type=pdf Interposed proportional sharing for a storage service utility]&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot3&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt;&lt;br /&gt;
P. Goyal, H. M. Vin, and H. Cheng. Start-Time Fair&lt;br /&gt;
Queuing: A scheduling algorithm for integrated services&lt;br /&gt;
packet switching networks. Technical Report CS-TR-96-&lt;br /&gt;
02, UT Austin, January 1996.&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot4&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;4&amp;lt;/sup&amp;gt;&lt;br /&gt;
VMware ESX Server User Manual, December 2007.&lt;br /&gt;
VMware Inc.&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot5&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;5&amp;lt;/sup&amp;gt;&lt;br /&gt;
VMware, Inc. Introduction to VMware Infrastructure.&lt;br /&gt;
2007. http://www.vmware.com/support/pubs/.&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot6&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;6&amp;lt;/sup&amp;gt;&lt;br /&gt;
A. S. Tanenbaum. Modern Operating Systems: Third Edition. Pearson Education, 2008.&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;/div&gt;</summary>
		<author><name>Dagar</name></author>
	</entry>
	<entry>
		<id>https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=6958</id>
		<title>COMP 3000 Essay 2 2010 Question 10</title>
		<link rel="alternate" type="text/html" href="https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=6958"/>
		<updated>2010-12-03T11:13:40Z</updated>

		<summary type="html">&lt;p&gt;Dagar: /* Background Concepts */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;mClock: Handling Throughput Variability for Hypervisor I/O Scheduling&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Paper==&lt;br /&gt;
&lt;br /&gt;
[http://www.usenix.org/events/osdi10/tech/full_papers/Gulati.pdf mClock: Handling Throughput Variability for Hypervisor I/O Scheduling]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Authors&#039;&#039;&#039;: &lt;br /&gt;
&lt;br /&gt;
Ajay Gulati VMware Inc. Palo Alto, CA, 94304 agulati@vmware.com&lt;br /&gt;
&lt;br /&gt;
Arif Merchant HP Labs Palo Alto, CA 94304 arif.merchant@acm.org&lt;br /&gt;
&lt;br /&gt;
Peter J. Varman Rice University Houston, TX, 77005 pjv@rice.edu&lt;br /&gt;
&lt;br /&gt;
==Background Concepts==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Virtual machines&#039;&#039;&#039; (VMs) are becoming increasingly significant as they are used by everyone from university students to large gaming firms. One of the key issues with virtual machines is ensuring that all shared resources on the machine are utilized equitably. In order to do this, and to provide the illusion that the virtual machine is running on its own hardware, a hypervisor is required. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Hypervisors&#039;&#039;&#039; are responsible for multiplexing hardware resources between virtual machines while providing isolation to an extent, using resource management. Three controls used by the hypervisor are:  reservations, where the minimum bounds are set (in absolute units); limits, where the maximum upper bound on the allocation is set (again in absolute units); and shares, which proportionally allocate the resources according to the weight of each VM. These three controls have been supported for CPU and memory resource allocation since 2003. However, the current issue is I/O resource allocation. Currently, when more VMs are added to a host, the contention for input/output (I/O) resources can suddenly lower a VM’s allocation. Also, the available throughput can change with time, and adjustments to allocations must be made dynamically.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Throughput&#039;&#039;&#039; is the number of jobs per hour that a system completes. In general, a system is considered more efficient if it has a higher throughput &amp;lt;sup&amp;gt;[[#Foot6|6]]&amp;lt;/sup&amp;gt;. In this paper, this term is used to discuss the fact that throughput varies, and the number of jobs a system wishes to complete varies as well. Therefore it is necessary to take throughput into account when scheduling IO resources.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;SFQ&#039;&#039;&#039;, or Start-Time Fair Queuing, is the traditional scheduler currently used to allocate resources. It follows a proportional-sharing algorithm which divides up the total throughput between the VMs in proportion to their assigned shares. The issue with this is that it does not consider reservations or limits in its allocation.&lt;br /&gt;
&lt;br /&gt;
SFQ(D) (Start-time Fair Queuing)&amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt; &amp;lt;sup&amp;gt;[[#Foot3|3]]&amp;lt;/sup&amp;gt;  performs fairly well for low-intensity workloads. However, as the workload with VMs multiplies, the constant need for faster performance and efficiency rises. Hypervisors require a better resource-allocation algorithm in order to meet the need for high performance VMs running concurrently; mClock was the answer Gulati, Varman, and Merchant proposed.&lt;br /&gt;
&lt;br /&gt;
==Research problem==&lt;br /&gt;
&lt;br /&gt;
====Problem Facing====&lt;br /&gt;
Today, I/O resource allocation in modern hypervisors is very simple and somewhat primitive. Currently, an algorithm called PARDA (Proportional Allocation of Resources in Distributed storage Access) &amp;lt;sup&amp;gt;[[#Foot1|1]]&amp;lt;/sup&amp;gt; is used to allocate I/O resources to each VM running on a particular storage device. Unfortunately, the I/O resource allocation algorithm of the hosts use a fair-scheduler called SFQ &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt; &amp;lt;sup&amp;gt;[[#Foot3|3]]&amp;lt;/sup&amp;gt;.SFQ(D) (Start-time Fair Queuing) performs fairly well for low-intensity workloads. However, as the workload with VMs multiplies, the constant need for faster performance and efficiency rises. &lt;br /&gt;
&lt;br /&gt;
PARDA allocates I/O resources to VMs proportional to the number of I/O shares on the host, but each host uses a fair scheduler which divides the I/O shares amongst the VMs equally. This leads to the main problem; whenever another VM is added or another background application is run on one of the VMs, all other VMs suffer a huge performance loss; a 40% performance drop. This is completely unacceptable when applications have minimum performance requirements to run effectively. An application with minimum resource requirements can be running fine on any given VM, however as soon as the stress load on the shared storage device increases, the application might fail to run smoothly, or worse, crash.&lt;br /&gt;
&lt;br /&gt;
====Solution====&lt;br /&gt;
We need an algorithm which uses all three controls in order to properly allocate resources for each request. To resolve this issue of resource allocation and performance, mClock is introduced and tested against SFQ&amp;lt;sup&amp;gt;[[#Foot3|3]]&amp;lt;/sup&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==Contribution==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This paper addresses the current limitations of I/O resource allocation for hypervisors. It has proposed a new and more efficient algorithm to allocate I/O resources. Older methods were limited as they only provided proportional shares, such as SFQ. mClock incorporates proportional shares, as well as a minimum reservation of I/O resources, and a maximum reservation.&lt;br /&gt;
 &lt;br /&gt;
Older methods of I/O resource allocation had a significant performance disadvantage. Whenever the load on the shared storage device was increased, or when another VM was added, the performance of all hosts would drop significantly. Also, these older methods provided unreliable I/O management of hypervisors. Conversely, mClock was able to present VMs with a guaranteed minimum reservation of I/O resources. This means that application performance will never drop below a certain point. This provides much better application stability on each of the VMs, and better overall performance and efficiency level, compared to older methods such as SFQ.&lt;br /&gt;
&lt;br /&gt;
mClock is a resource-allocation algorithm that helps hypervisors manage I/O requests from multiple virtual machines simultaneously. It is a better alternative to SFQ2 3 because it supports all controls in a single algorithm, handles variable and unknown capacity, and is fast to compute. The algorithm does not weaken the performance level as each VM gets added on, and mClock reservations are met. Essentially, mClock dynamically adjusts the proportions of resources each VM receives based on how active each VM currently is. While mClock constantly changes the physical resource allocation to each VM, it lets each VM hold onto the illusion that it has full control of all system resources. As a result, performance can be increased for VMs that need it, without letting the others know that “their” resources are being distributed to other machines. What mClock attempts to achieve is combining a constraint-based scheduler and a weight-based scheduler. Making sure the minimum IO reservation limit is consistently met, yet not over the upper bound limit, would be handled by the constraint-based scheduler. Then, it is the responsibility of the weight-based scheduler to distribute the remaining IO throughput to the rest of the VMs equally. &lt;br /&gt;
&lt;br /&gt;
The mClock algorithm uses a tag-based scheduler with some modifications; like the tag-based schedulers all I/O requests are assigned tags  and scheduled in order of their tag values, the modifications includes the ability to use “multiple tags based on three controls and dynamically decide which tag to use for scheduling, while still synchronizing idle clients”. &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt;&lt;br /&gt;
&lt;br /&gt;
mClock also uses both constraint-based and weight-based schedulers. Constraint-based scheduler makes sure that VMs receive their minimum reserved service and no more than their upper limit in a time interval. Weight-based scheduler allocates the remaining throughput to achieve proportional sharing”. &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt; &lt;br /&gt;
&lt;br /&gt;
mClock was implemented on a modified version of VMware ESX server hypervisor  &amp;lt;sup&amp;gt;[[#Foot4|4]]&amp;lt;/sup&amp;gt;  &amp;lt;sup&amp;gt;[[#Foot5|5]]&amp;lt;/sup&amp;gt;. This modification only took around 200 lines of C code for the scheduling framework to use the mClock algorithm. This shows that it didn&#039;t take much to implement mClock effectively in a existing product, and to improve its performance results. This indicates that mClock could be very portable and easy to implement in other hypervisors as well. &lt;br /&gt;
&lt;br /&gt;
Another contribution was the introduction of Distributed mClock or dmClock which basically runs an altered version of mClock at each server. dmClock is mainly used for cluster-based storage system which are rising as centralized disk arrays, and better than the alternates in terms of cost. The reservation in this modified algorithm gives higher preference to non-idle VMs to attain high performance. dmClock proved to be effective with a simple, modified mClock algorithm which does not require complex synchronizations between servers.&lt;br /&gt;
&lt;br /&gt;
==Critique==&lt;br /&gt;
&lt;br /&gt;
The article introduces the mClock algorithm which handles (I/O resource allocation on) multiple VM in a variable throughput environment. The Quality of Service (QoS) requirements for a VM are expressed as a minimum reservation, a maximum limit, and a proportional share. A positive aspect of this algorithm, mClock, is that it is able to meet those controls in varying capacity. Also, it is significant that the algorithm was proven to be more efficient than existing methods at allocating IO resources in clustered architectures while providing greater isolation between VMs. mClock allows users to be comfortable when working with multiple VMs on one host without the constant worry of performance levels, with each VM add-on.&lt;br /&gt;
&lt;br /&gt;
The paper proposes a better, and effective alternative to SFQ and other older methods and the mClock algorithm efficiently handles multiple VMs in a throughput environment (LUN, PARDA).&lt;br /&gt;
&lt;br /&gt;
The negative aspect of this paper was the writing style used for displaying calculations. In many sections of the essay, the calculations are embedded in a sentence which makes it difficult to read and understand them. One example is the following line:  &amp;quot;For a small reference I/O size of 8KB and using typical values for mechanical delay T&amp;lt;sub&amp;gt;m&amp;lt;/sub&amp;gt; = 5ms and peak transfer rate, B&amp;lt;sub&amp;gt;peak&amp;lt;/sub&amp;gt; = 60 MB/s, the numerator = Lat&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;*(1 + 8/300) &amp;amp;asymp; Lat&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;&amp;quot; &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt;.&amp;lt;math&amp;gt;&amp;lt;/math&amp;gt;  The calculations were often about how the algorithm would calculate the resource allocation but it was not really necessary to include them; the essay is understandable without them.&lt;br /&gt;
&lt;br /&gt;
In general, however, the essay is clear and not difficult to understand. As well, the case for this algorithm appears well-presented and valid.&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot1&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; A. Gulati, I. Ahmad, and C. Waldspurger. PARDA: Proportional&lt;br /&gt;
Allocation of Resources in Distributed Storage&lt;br /&gt;
Access. In (FAST ’09) Proceedings of the Seventh Usenix&lt;br /&gt;
Conference on File and Storage Technologies, Feb 2009.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot2&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; W. Jin, J. S. Chase, and J. Kaur. Interposed proportional&lt;br /&gt;
sharing for a storage service utility. In ACM SIGMET-&lt;br /&gt;
RICS, 2004. [http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.72.7012&amp;amp;rep=rep1&amp;amp;type=pdf Interposed proportional sharing for a storage service utility]&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot3&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt;&lt;br /&gt;
P. Goyal, H. M. Vin, and H. Cheng. Start-Time Fair&lt;br /&gt;
Queuing: A scheduling algorithm for integrated services&lt;br /&gt;
packet switching networks. Technical Report CS-TR-96-&lt;br /&gt;
02, UT Austin, January 1996.&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot4&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;4&amp;lt;/sup&amp;gt;&lt;br /&gt;
VMware ESX Server User Manual, December 2007.&lt;br /&gt;
VMware Inc.&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot5&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;5&amp;lt;/sup&amp;gt;&lt;br /&gt;
VMware, Inc. Introduction to VMware Infrastructure.&lt;br /&gt;
2007. http://www.vmware.com/support/pubs/.&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot6&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;6&amp;lt;/sup&amp;gt;&lt;br /&gt;
A. S. Tanenbaum. Modern Operating Systems: Third Edition. Pearson Education, 2008.&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;/div&gt;</summary>
		<author><name>Dagar</name></author>
	</entry>
	<entry>
		<id>https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=6954</id>
		<title>COMP 3000 Essay 2 2010 Question 10</title>
		<link rel="alternate" type="text/html" href="https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=6954"/>
		<updated>2010-12-03T11:10:49Z</updated>

		<summary type="html">&lt;p&gt;Dagar: /* Background Concepts */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;mClock: Handling Throughput Variability for Hypervisor I/O Scheduling&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Paper==&lt;br /&gt;
&lt;br /&gt;
[http://www.usenix.org/events/osdi10/tech/full_papers/Gulati.pdf mClock: Handling Throughput Variability for Hypervisor I/O Scheduling]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Authors&#039;&#039;&#039;: &lt;br /&gt;
&lt;br /&gt;
Ajay Gulati VMware Inc. Palo Alto, CA, 94304 agulati@vmware.com&lt;br /&gt;
&lt;br /&gt;
Arif Merchant HP Labs Palo Alto, CA 94304 arif.merchant@acm.org&lt;br /&gt;
&lt;br /&gt;
Peter J. Varman Rice University Houston, TX, 77005 pjv@rice.edu&lt;br /&gt;
&lt;br /&gt;
==Background Concepts==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Virtual machines&#039;&#039;&#039; (VMs) are becoming increasingly significant as they are used by everyone from university students to large gaming firms. One of the key issues with virtual machines is ensuring that all shared resources on the machine are utilized equitably. In order to do this, and to provide the illusion that the virtual machine is running on its own hardware, a hypervisor is required. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Hypervisors&#039;&#039;&#039; are responsible for multiplexing hardware resources between virtual machines while providing isolation to an extent, using resource management. The three controls used by the hypervisor are:  reservation, where the minimum bounds are set; limits, where the maximum upper bound on the allocation is set; and shares, which proportionally allocate the resources according to the weight of each VM. These three controls have been supported for CPU and memory resource allocation since 2003. However, the current issue is IO resource allocation. Currently, when more VMs are added to a host, the contention for input/output (I/O) resources can suddenly lower a VM’s allocation. Also, the available throughput can change with time, and adjustments to allocations must be made dynamically.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Throughput&#039;&#039;&#039; is the number of jobs per hour that a system completes. In general, a system is considered more efficient if it has a higher throughput &amp;lt;sup&amp;gt;[[#Foot6|6]]&amp;lt;/sup&amp;gt;. In this paper, this term is used to discuss the fact that throughput varies, and the number of jobs a system wishes to complete varies as well. Therefore it is necessary to take throughput into account when scheduling IO resources.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;SFQ&#039;&#039;&#039;, or Start-Time Fair Queuing, is the traditional scheduler currently used to allocate resources. It follows a proportional-sharing algorithm which divides up the total throughput between the VMs in proportion to their assigned shares. The issue with this is that it does not consider reservations or limits in its allocation.&lt;br /&gt;
&lt;br /&gt;
SFQ(D) (Start-time Fair Queuing)&amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt; &amp;lt;sup&amp;gt;[[#Foot3|3]]&amp;lt;/sup&amp;gt;  performs fairly well for low-intensity workloads. However, as the workload with VMs multiplies, the constant need for faster performance and efficiency rises. Hypervisors require a better resource-allocation algorithm in order to meet the need for high performance VMs running concurrently; mClock was the answer Gulati, Varman, and Merchant proposed.&lt;br /&gt;
&lt;br /&gt;
==Research problem==&lt;br /&gt;
&lt;br /&gt;
====Problem Facing====&lt;br /&gt;
Today, I/O resource allocation in modern hypervisors is very simple and somewhat primitive. Currently, an algorithm called PARDA (Proportional Allocation of Resources in Distributed storage Access) &amp;lt;sup&amp;gt;[[#Foot1|1]]&amp;lt;/sup&amp;gt; is used to allocate I/O resources to each VM running on a particular storage device. Unfortunately, the I/O resource allocation algorithm of the hosts use a fair-scheduler called SFQ &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt; &amp;lt;sup&amp;gt;[[#Foot3|3]]&amp;lt;/sup&amp;gt;.SFQ(D) (Start-time Fair Queuing) performs fairly well for low-intensity workloads. However, as the workload with VMs multiplies, the constant need for faster performance and efficiency rises. &lt;br /&gt;
&lt;br /&gt;
PARDA allocates I/O resources to VMs proportional to the number of I/O shares on the host, but each host uses a fair scheduler which divides the I/O shares amongst the VMs equally. This leads to the main problem; whenever another VM is added or another background application is run on one of the VMs, all other VMs suffer a huge performance loss; a 40% performance drop. This is completely unacceptable when applications have minimum performance requirements to run effectively. An application with minimum resource requirements can be running fine on any given VM, however as soon as the stress load on the shared storage device increases, the application might fail to run smoothly, or worse, crash.&lt;br /&gt;
&lt;br /&gt;
====Solution====&lt;br /&gt;
We need an algorithm which uses all three controls in order to properly allocate resources for each request. To resolve this issue of resource allocation and performance, mClock is introduced and tested against SFQ&amp;lt;sup&amp;gt;[[#Foot3|3]]&amp;lt;/sup&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==Contribution==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This paper addresses the current limitations of I/O resource allocation for hypervisors. It has proposed a new and more efficient algorithm to allocate I/O resources. Older methods were limited as they only provided proportional shares, such as SFQ. mClock incorporates proportional shares, as well as a minimum reservation of I/O resources, and a maximum reservation.&lt;br /&gt;
 &lt;br /&gt;
Older methods of I/O resource allocation had a significant performance disadvantage. Whenever the load on the shared storage device was increased, or when another VM was added, the performance of all hosts would drop significantly. Also, these older methods provided unreliable I/O management of hypervisors. Conversely, mClock was able to present VMs with a guaranteed minimum reservation of I/O resources. This means that application performance will never drop below a certain point. This provides much better application stability on each of the VMs, and better overall performance and efficiency level, compared to older methods such as SFQ.&lt;br /&gt;
&lt;br /&gt;
mClock is a resource-allocation algorithm that helps hypervisors manage I/O requests from multiple virtual machines simultaneously. It is a better alternative to SFQ2 3 because it supports all controls in a single algorithm, handles variable and unknown capacity, and is fast to compute. The algorithm does not weaken the performance level as each VM gets added on, and mClock reservations are met. Essentially, mClock dynamically adjusts the proportions of resources each VM receives based on how active each VM currently is. While mClock constantly changes the physical resource allocation to each VM, it lets each VM hold onto the illusion that it has full control of all system resources. As a result, performance can be increased for VMs that need it, without letting the others know that “their” resources are being distributed to other machines. What mClock attempts to achieve is combining a constraint-based scheduler and a weight-based scheduler. Making sure the minimum IO reservation limit is consistently met, yet not over the upper bound limit, would be handled by the constraint-based scheduler. Then, it is the responsibility of the weight-based scheduler to distribute the remaining IO throughput to the rest of the VMs equally. &lt;br /&gt;
&lt;br /&gt;
The mClock algorithm uses a tag-based scheduler with some modifications; like the tag-based schedulers all I/O requests are assigned tags  and scheduled in order of their tag values, the modifications includes the ability to use “multiple tags based on three controls and dynamically decide which tag to use for scheduling, while still synchronizing idle clients”. &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt;&lt;br /&gt;
&lt;br /&gt;
mClock also uses both constraint-based and weight-based schedulers. Constraint-based scheduler makes sure that VMs receive their minimum reserved service and no more than their upper limit in a time interval. Weight-based scheduler allocates the remaining throughput to achieve proportional sharing”. &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt; &lt;br /&gt;
&lt;br /&gt;
mClock was implemented on a modified version of VMware ESX server hypervisor  &amp;lt;sup&amp;gt;[[#Foot4|4]]&amp;lt;/sup&amp;gt;  &amp;lt;sup&amp;gt;[[#Foot5|5]]&amp;lt;/sup&amp;gt;. This modification only took around 200 lines of C code for the scheduling framework to use the mClock algorithm. This shows that it didn&#039;t take much to implement mClock effectively in a existing product, and to improve its performance results. This indicates that mClock could be very portable and easy to implement in other hypervisors as well. &lt;br /&gt;
&lt;br /&gt;
Another contribution was the introduction of Distributed mClock or dmClock which basically runs an altered version of mClock at each server. dmClock is mainly used for cluster-based storage system which are rising as centralized disk arrays, and better than the alternates in terms of cost. The reservation in this modified algorithm gives higher preference to non-idle VMs to attain high performance. dmClock proved to be effective with a simple, modified mClock algorithm which does not require complex synchronizations between servers.&lt;br /&gt;
&lt;br /&gt;
==Critique==&lt;br /&gt;
&lt;br /&gt;
The article introduces the mClock algorithm which handles (I/O resource allocation on) multiple VM in a variable throughput environment. The Quality of Service (QoS) requirements for a VM are expressed as a minimum reservation, a maximum limit, and a proportional share. A positive aspect of this algorithm, mClock, is that it is able to meet those controls in varying capacity. Also, it is significant that the algorithm was proven to be more efficient than existing methods at allocating IO resources in clustered architectures while providing greater isolation between VMs. mClock allows users to be comfortable when working with multiple VMs on one host without the constant worry of performance levels, with each VM add-on.&lt;br /&gt;
&lt;br /&gt;
The paper proposes a better, and effective alternative to SFQ and other older methods and the mClock algorithm efficiently handles multiple VMs in a throughput environment (LUN, PARDA).&lt;br /&gt;
&lt;br /&gt;
The negative aspect of this paper was the writing style used for displaying calculations. In many sections of the essay, the calculations are embedded in a sentence which makes it difficult to read and understand them. One example is the following line:  &amp;quot;For a small reference I/O size of 8KB and using typical values for mechanical delay T&amp;lt;sub&amp;gt;m&amp;lt;/sub&amp;gt; = 5ms and peak transfer rate, B&amp;lt;sub&amp;gt;peak&amp;lt;/sub&amp;gt; = 60 MB/s, the numerator = Lat&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;*(1 + 8/300) &amp;amp;asymp; Lat&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;&amp;quot; &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt;.&amp;lt;math&amp;gt;&amp;lt;/math&amp;gt;  The calculations were often about how the algorithm would calculate the resource allocation but it was not really necessary to include them; the essay is understandable without them.&lt;br /&gt;
&lt;br /&gt;
In general, however, the essay is clear and not difficult to understand. As well, the case for this algorithm appears well-presented and valid.&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot1&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; A. Gulati, I. Ahmad, and C. Waldspurger. PARDA: Proportional&lt;br /&gt;
Allocation of Resources in Distributed Storage&lt;br /&gt;
Access. In (FAST ’09) Proceedings of the Seventh Usenix&lt;br /&gt;
Conference on File and Storage Technologies, Feb 2009.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot2&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; W. Jin, J. S. Chase, and J. Kaur. Interposed proportional&lt;br /&gt;
sharing for a storage service utility. In ACM SIGMET-&lt;br /&gt;
RICS, 2004. [http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.72.7012&amp;amp;rep=rep1&amp;amp;type=pdf Interposed proportional sharing for a storage service utility]&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot3&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt;&lt;br /&gt;
P. Goyal, H. M. Vin, and H. Cheng. Start-Time Fair&lt;br /&gt;
Queuing: A scheduling algorithm for integrated services&lt;br /&gt;
packet switching networks. Technical Report CS-TR-96-&lt;br /&gt;
02, UT Austin, January 1996.&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot4&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;4&amp;lt;/sup&amp;gt;&lt;br /&gt;
VMware ESX Server User Manual, December 2007.&lt;br /&gt;
VMware Inc.&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot5&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;5&amp;lt;/sup&amp;gt;&lt;br /&gt;
VMware, Inc. Introduction to VMware Infrastructure.&lt;br /&gt;
2007. http://www.vmware.com/support/pubs/.&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot6&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;6&amp;lt;/sup&amp;gt;&lt;br /&gt;
A. S. Tanenbaum. Modern Operating Systems: Third Edition. Pearson Education, 2008.&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;/div&gt;</summary>
		<author><name>Dagar</name></author>
	</entry>
	<entry>
		<id>https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=6913</id>
		<title>COMP 3000 Essay 2 2010 Question 10</title>
		<link rel="alternate" type="text/html" href="https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=6913"/>
		<updated>2010-12-03T10:06:01Z</updated>

		<summary type="html">&lt;p&gt;Dagar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;mClock: Handling Throughput Variability for Hypervisor I/O Scheduling&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Paper==&lt;br /&gt;
&lt;br /&gt;
[http://www.usenix.org/events/osdi10/tech/full_papers/Gulati.pdf mClock: Handling Throughput Variability for Hypervisor I/O Scheduling]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Authors&#039;&#039;&#039;: &lt;br /&gt;
&lt;br /&gt;
Ajay Gulati VMware Inc. Palo Alto, CA, 94304 agulati@vmware.com&lt;br /&gt;
&lt;br /&gt;
Arif Merchant HP Labs Palo Alto, CA 94304 arif.merchant@acm.org&lt;br /&gt;
&lt;br /&gt;
Peter J. Varman Rice University Houston, TX, 77005 pjv@rice.edu&lt;br /&gt;
&lt;br /&gt;
==Background Concepts==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Virtual machines&#039;&#039;&#039; (VMs) are becoming increasing significant as they are used by everyone from university students to large gaming firms. One of the key issues with virtual machines is ensuring that all shared resources on the machine are utilized equitably. In order to do this, and to provide the illusion that the virtual machine is running on its own hardware, a hypervisor is required. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Hypervisors&#039;&#039;&#039; are responsible for multiplexing hardware resources between virtual machines while providing isolation to an extent, using resource management. The three controls used by the hypervisor are:  reservation, where the minimum bounds are set; limits, where the maximum upper bound on the allocation is set; and shares, which proportionally allocate the resources according to the weight of each VM. These three controls have been supported for CPU and memory resource allocation since 2003. However, the current issue is IO resource allocation. Currently, when more VMs are added to a host, the contention for input/output (I/O) resources can suddenly lower a VM’s allocation. Also, the available throughput can change with time, and adjustments to allocations must be made dynamically.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;IOPS&#039;&#039;&#039;, which stands for Input/ Output per second, is the unit used in this paper to represent how much IO resources a particular VM is allocated.It gives an idea of how quickly a storage request can be fulfilled by the storage system. Typically the lower the IOPS the longer the requesting VM has to wait.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;SFQ&#039;&#039;&#039;, or Start-Time Fair Queuing, is the traditional scheduler currently used to allocate resources. It follows a proportional-sharing algorithm which divides up the total throughput between the VMs in proportion to their assigned shares. The issue with this is that it does not consider reservations or limits in its allocation.&lt;br /&gt;
&lt;br /&gt;
SFQ(D) (Start-time Fair Queuing)&amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt; &amp;lt;sup&amp;gt;[[#Foot3|3]]&amp;lt;/sup&amp;gt;  performed fairly well for low-intensity workloads. However, as the workload with VMs multiplied, the constant need for faster performance and efficiency rose. Hypervisors required a better resource-allocation algorithm in order to meet the need for high performance VMs running concurrently; mClock was the answer Gulati, Varman, and Merchant proposed, to aid hypervisors. &lt;br /&gt;
&lt;br /&gt;
mClock is a resource-allocation algorithm that helps hypervisors manage I/O requests from multiple virtual machines simultaneously. Evidently, it is the better alternate to SFQ&amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt; &amp;lt;sup&amp;gt;[[#Foot3|3]]&amp;lt;/sup&amp;gt; because it supports all controls in a single algorithm, handles variable and unknown capacity, and is fast to compute. The algorithm does not weaken the performance level as each VM gets added on, and mClock reservations are met. Essentially, mClock dynamically adjusts the proportions of resources each VM receives based on how active each VM currently is. While mClock constantly changes the physical resource allocation to each VM, it lets each VM hold onto the illusion that it has full control of all system resources. As a result, performance can be increased for VMs that need it, without letting the others know that “their” resources are being distributed to other machines.&lt;br /&gt;
&lt;br /&gt;
What mClock is basically trying to achieve is to combine a constraint-based scheduler and a weight-based scheduler. Making sure the minimum IO reservation limit is consistently met, yet not over the upper bound limit, would be handled by the constraint-based scheduler. All thats left is that the weight-based scheduler distribute the remaining IO throughput to the rest of the VMs equally.&lt;br /&gt;
&lt;br /&gt;
==Research problem==&lt;br /&gt;
&lt;br /&gt;
====Problem Facing====&lt;br /&gt;
Today, we use a very primitive kind of I/O resource allocation in modern hypervisors. Currently an algorithm called PARDA (Proportional Allocation of Resources in Distributed storage Access) &amp;lt;sup&amp;gt;[[#Foot1|1]]&amp;lt;/sup&amp;gt; is being used to allocate I/O resources to each VM running on a particular storage device. Unfortunately, the I/O resource allocation algorithm of the hosts use a fair-scheduler called SFQ &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt; &amp;lt;sup&amp;gt;[[#Foot3|3]]&amp;lt;/sup&amp;gt;. What this means is that PARDA allocates I/O resources to VMs proportional to the number of I/O shares on the host, but each host uses a fair scheduler which divides the I/O shares amongst the VMs equally. This leads to the main problem; whenever another VM is added or another background application is run on one of the VMs, all other VMs suffer a huge performance loss; a 40% performance drop. This is completely unacceptable when applications have minimum performance requirements to run effectively. An application with minimum resource requirements can be running fine on any given VM, however as soon as the stress load on the shared storage device increases, the application might fail to run smoothly, or worse, crash.&lt;br /&gt;
&lt;br /&gt;
====Solution====&lt;br /&gt;
We need an algorithm which can handle all kinds of controls and properly allocate resources for each request. To resolve this issue of resource allocation and performance, mClock is introduced and tested against SFQ&amp;lt;sup&amp;gt;[[#Foot3|3]]&amp;lt;/sup&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==Contribution==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This paper addresses the current limitations of I/O resource allocation for hypervisors. It has proposed a new and more efficient algorithm to allocate I/O resources. Older methods were limited solely by providing proportional shares, such as SFQ. mClock incorporates proportional shares, as well as a minimum reservation of I/O resources, and a maximum reservation.&lt;br /&gt;
 &lt;br /&gt;
Older methods of I/O resource allocation had a terrible performance loss. Whenever the load on the shared storage device was increased, or when another VM was added, the performance of all hosts would drop significantly. Also, these older methods provided unreliable I/O management of hypervisors. Conversely, mClock was able to present VMs with a guaranteed minimum reservation of I/O resources. This means that application performance will never drop below a certain point. This provides much better application stability on each of the VMs, and better overall performance and efficiency level, compared to older methods; for instance, SFQ. &lt;br /&gt;
&lt;br /&gt;
The mClock algorithm uses a tag-based scheduler with some modifications; like the tag-based schedulers all I/O requests are assigned tags  and scheduled in order of their tag values, the modifications includes the ability to use “multiple tags based on three controls and dynamically decide which tag to use for scheduling, while still synchronizing idle clients”. &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt;&lt;br /&gt;
&lt;br /&gt;
mClock also uses both constraint-based and weight-based schedulers. Constraint-based scheduler makes sure that “VMs receive their minimum reserved service and no more than their upper limit in a time interval. Weight-based scheduler allocates the remaining throughput to achieve proportional sharing”. &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt; &lt;br /&gt;
&lt;br /&gt;
mClock was implemented on a modified version of VMware ESX server hypervisor  &amp;lt;sup&amp;gt;[[#Foot4|4]]&amp;lt;/sup&amp;gt;  &amp;lt;sup&amp;gt;[[#Foot5|5]]&amp;lt;/sup&amp;gt;. This modification only took around 200 of C code for the scheduling framework to use mClocks algorithms. This shows that it didn&#039;t take much to implement mClock effectively in a existing product, and improving its performance results. This seems like mClock can be very portable and easy to implement in other hypervisors as well. &lt;br /&gt;
&lt;br /&gt;
Another contribution was the introduction of Distributed mClock or dmClock which basically runs an altered version of mClock at each server. dmClock is mainly used for cluster-based storage system which are rising as centralized disk arrays, and better than the alternates in terms of cost. The reservation in this modified algorithm gives higher preference to non-idle VMs to attain high performance. dmClock proved to be effective with a simple, modified mClock algorithm which does not require complex synchronizations between servers.&lt;br /&gt;
&lt;br /&gt;
==Critique==&lt;br /&gt;
&lt;br /&gt;
The article introduces the mClock algorithm which handles (I/O resource allocation on) multiple VM in a variable throughput environment. The Quality of Service (QoS) requirements for a VM are expressed as a minimum reservation, a maximum limit, and a proportional share. This algorithm, mClock, is able to meet those controls in varying capacity. The good thing about this is that the algorithm proves to be (more efficient compare to existing methods) efficient in clustered architectures due to better resource allocation while providing greater isolation between VMs. mClock allows users to be comfortable when working with multiple VMs on one HOST without the constant worry of performance levels, with each VM add-on.&lt;br /&gt;
&lt;br /&gt;
The paper proposes a better, and effective alternative to SFQ and other older methods; the mClock algorithm which efficiently handles multiple VMs in a throughput environment (LUN, PARDA).&lt;br /&gt;
&lt;br /&gt;
One aspect of the writing style , &amp;quot;For a small reference I/O size of 8KB and using typical values for mechanical delay T&amp;lt;sub&amp;gt;m&amp;lt;/sub&amp;gt; = 5ms and peak transfer rate, B&amp;lt;sub&amp;gt;peak&amp;lt;/sub&amp;gt; = 60 MB/s, the numerator = Lat&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;*(1 + 8/300) &amp;amp;asymp; Lat&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;&amp;quot; &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt;. The style of displaying these calculations depicts a messy, unorganized styled.&amp;lt;math&amp;gt;&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot1&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; A. Gulati, I. Ahmad, and C. Waldspurger. PARDA: Proportional&lt;br /&gt;
Allocation of Resources in Distributed Storage&lt;br /&gt;
Access. In (FAST ’09) Proceedings of the Seventh Usenix&lt;br /&gt;
Conference on File and Storage Technologies, Feb 2009.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot2&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; W. Jin, J. S. Chase, and J. Kaur. Interposed proportional&lt;br /&gt;
sharing for a storage service utility. In ACM SIGMET-&lt;br /&gt;
RICS, 2004. [http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.72.7012&amp;amp;rep=rep1&amp;amp;type=pdf Interposed proportional sharing for a storage service utility]&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot3&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt;&lt;br /&gt;
P. Goyal, H. M. Vin, and H. Cheng. Start-Time Fair&lt;br /&gt;
Queuing: A scheduling algorithm for integrated services&lt;br /&gt;
packet switching networks. Technical Report CS-TR-96-&lt;br /&gt;
02, UT Austin, January 1996.&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot4&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;4&amp;lt;/sup&amp;gt;&lt;br /&gt;
VMware ESX Server User Manual, December 2007.&lt;br /&gt;
VMware Inc.&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot5&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;5&amp;lt;/sup&amp;gt;&lt;br /&gt;
VMware, Inc. Introduction to VMware Infrastructure.&lt;br /&gt;
2007. http://www.vmware.com/support/pubs/.&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;/div&gt;</summary>
		<author><name>Dagar</name></author>
	</entry>
	<entry>
		<id>https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=6525</id>
		<title>COMP 3000 Essay 2 2010 Question 10</title>
		<link rel="alternate" type="text/html" href="https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=6525"/>
		<updated>2010-12-02T21:46:06Z</updated>

		<summary type="html">&lt;p&gt;Dagar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;mClock: Handling Throughput Variability for Hypervisor I/O Scheduling&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Paper==&lt;br /&gt;
&lt;br /&gt;
[http://www.usenix.org/events/osdi10/tech/full_papers/Gulati.pdf mClock: Handling Throughput Variability for Hypervisor I/O Scheduling]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Authors&#039;&#039;&#039;: &lt;br /&gt;
&lt;br /&gt;
Ajay Gulati VMware Inc. Palo Alto, CA, 94304 agulati@vmware.com&lt;br /&gt;
&lt;br /&gt;
Arif Merchant HP Labs Palo Alto, CA 94304 arif.merchant@acm.org&lt;br /&gt;
&lt;br /&gt;
Peter J. Varman Rice University Houston, TX, 77005 pjv@rice.edu&lt;br /&gt;
&lt;br /&gt;
==Background Concepts==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Virtual machine (VM) usage is increasing significantly on a daily basis – whether by large gaming firms or university students. SFQ(D) (Start-time Fair Queuing)  performed fairly for low-intensity workloads. However, as the workload with VMs multiplied, the constant need for faster performance and efficiency rose. Hypervisors required a better resource-allocation algorithm in order to meet the need for high performance VMs running concurrently; mClock was the answer Gulati, Varman, and Merchant proposed, to aid hypervisors.&lt;br /&gt;
&lt;br /&gt;
Hypervisors are responsible for multiplexing hardware resources between virtual machines while providing isolation to an extent, using resource management. The three controls used are reservation where the minimum bounds are set, the limit where the maximum upper bound on the allocation is set, and shares which proportionally allocate the resources according to the certain weight each VM has, and also depending on the reservation and upper bound limits. However the contention for input/output (I/O) resources can suddenly lower a VM’s allocation; the available throughput can change with time, and adjustments to allocations must be made dynamically. &lt;br /&gt;
&lt;br /&gt;
mClock is a resource-allocation algorithm that helps hypervisors manage I/O requests from multiple virtual machines simultaneously. Evidently, it is the better alternate to SFQ because it supports all controls in a single algorithm, handles variable and unknown capacity, and is fast to compute. The algorithm does not weaken the performance level as each VM gets added on, and mClock reservations are met. Essentially, mClock dynamically adjusts the proportions of resources each VM receives based on how active each VM currently is. While mClock constantly changes the physical resource allocation to each VM, it lets each VM hold onto the illusion that it has full control of all system resources. As a result, performance can be increased for VMs that need it, without letting the others know that “their” resources are being distributed to other machines.&lt;br /&gt;
&lt;br /&gt;
==Research problem==&lt;br /&gt;
&lt;br /&gt;
====Problem Facing====&lt;br /&gt;
Today, we use a very primitive kind of I/O resource allocation in modern hypervisors. Currently an algorithm called PARDA (Proportional Allocation of Resources in Distributed storage Access) &amp;lt;sup&amp;gt;[[#Foot1|1]]&amp;lt;/sup&amp;gt; is being used to allocate I/O resources to each VM running on a particular storage device. Unfortunately, the I/O resource allocation algorithm of the hosts use a fair-scheduler called SFQ &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt;. What this means is that PARDA allocates I/O resources to VMs proportional to the number of I/O shares on the host, but each host uses a fair scheduler which divides the I/O shares amongst the VMs equally. This leads to the main problem; whenever another VM is added or another background application is run on one of the VMs, all other VMs suffer a huge performance loss; a 40% performance drop. This is completely unacceptable when applications have minimum performance requirements to run effectively. An application with minimum resource requirements can be running fine on any given VM, however as soon as the stress load on the shared storage device increases, the application might fail to run smoothly, or worse, crash.&lt;br /&gt;
&lt;br /&gt;
====Solution====&lt;br /&gt;
We need an algorithm which can handle all kinds of controls and properly allocate resources for each request. To resolve this issue of resource allocation and performance, mClock is introduced and tested against SFQ.&lt;br /&gt;
&lt;br /&gt;
==Contribution==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This paper addresses the current limitations of I/O resource allocation for hypervisors. It has proposed a new and more efficient algorithm to allocate I/O resources. Older methods were limited solely by providing proportional shares, such as SFQ. mClock incorporates proportional shares, as well as a minimum reservation of I/O resources, and a maximum reservation.&lt;br /&gt;
 &lt;br /&gt;
Older methods of I/O resource allocation had a terrible performance loss. Whenever the load on the shared storage device was increased, or when another VM was added, the performance of all hosts would drop significantly. Also, these older methods provided unreliable I/O management of hypervisors. Conversely, mClock was able to present VMs with a guaranteed minimum reservation of I/O resources. This means that application performance will never drop below a certain point. This provides much better application stability on each of the VMs, and better overall performance and efficiency level, compared to older methods; for instance, SFQ. &lt;br /&gt;
&lt;br /&gt;
The mClock algorithm uses a tag-based scheduler with some modifications; like the tag-based schedulers all I/O requests are assigned tags  and scheduled in order of their tag values, the modifications includes the ability to use “multiple tags based on three controls and dynamically decide which tag to use for scheduling, while still synchronizing idle clients”. &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt;&lt;br /&gt;
&lt;br /&gt;
mClock also uses both constraint-based and weight-based schedulers. Constraint-based scheduler makes sure that “VMs receive their minimum reserved service and no more than their upper limit in a time interval. Weight-based scheduler allocates the remaining throughput to achieve proportional sharing”. &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Another contribution was the introduction of Distributed mClock or dmClock which basically runs an altered version of mClock at each server. dmClock is mainly used for cluster-based storage system which are rising as centralized disk arrays, and better than the alternates in terms of cost. The reservation in this modified algorithm gives higher preference to non-idle VMs to attain high performance. dmClock proved to be effective with a simple, modified mClock algorithm which does not require complex synchronizations between servers.&lt;br /&gt;
&lt;br /&gt;
==Critique==&lt;br /&gt;
&lt;br /&gt;
The article introduces the mClock algorithm which handles (I/O resource allocation on) multiple VM in a variable throughput environment. The Quality of Service (QoS) requirements for a VM are expressed as a minimum reservation, a maximum limit, and a proportional share. This algorithm, mClock, is able to meet those controls in varying capacity. The good thing about this is that the algorithm proves to be (more efficient compare to existing methods) efficient in clustered architectures due to better resource allocation while providing greater isolation between VMs. mClock allows users to be comfortable when working with multiple VMs on one HOST without the constant worry of performance levels, with each VM add-on.&lt;br /&gt;
&lt;br /&gt;
The paper proposes a better, and effective alternative to SFQ and other older methods; the mClock algorithm which efficiently handles multiple VMs in a throughput environment (LUN, PARDA).&lt;br /&gt;
&lt;br /&gt;
One aspect of the writing style , &amp;quot;For a small reference I/O size of 8KB and using typical values for mechanical delay T&amp;lt;sub&amp;gt;m&amp;lt;/sub&amp;gt; = 5ms and peak transfer rate, B&amp;lt;sub&amp;gt;peak&amp;lt;/sub&amp;gt; = 60 MB/s, the numerator = Lat&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;*(1 + 8/300) &amp;amp;asymp; Lat&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;&amp;quot; &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt;. The style of displaying these calculations depicts a messy, unorganized styled.&amp;lt;math&amp;gt;&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot1&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; A. Gulati, I. Ahmad, and C. Waldspurger. PARDA: Proportional&lt;br /&gt;
Allocation of Resources in Distributed Storage&lt;br /&gt;
Access. In (FAST ’09) Proceedings of the Seventh Usenix&lt;br /&gt;
Conference on File and Storage Technologies, Feb 2009.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot2&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; W. Jin, J. S. Chase, and J. Kaur. Interposed proportional&lt;br /&gt;
sharing for a storage service utility. In ACM SIGMET-&lt;br /&gt;
RICS, 2004. [http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.72.7012&amp;amp;rep=rep1&amp;amp;type=pdf Interposed proportional sharing for a storage service utility]&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;/div&gt;</summary>
		<author><name>Dagar</name></author>
	</entry>
	<entry>
		<id>https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=6523</id>
		<title>COMP 3000 Essay 2 2010 Question 10</title>
		<link rel="alternate" type="text/html" href="https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=6523"/>
		<updated>2010-12-02T21:45:13Z</updated>

		<summary type="html">&lt;p&gt;Dagar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;mClock: Handling Throughput Variability for Hypervisor I/O Scheduling&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Paper==&lt;br /&gt;
&lt;br /&gt;
[http://www.usenix.org/events/osdi10/tech/full_papers/Gulati.pdf mClock: Handling Throughput Variability for Hypervisor I/O Scheduling]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Authors&#039;&#039;&#039;: &lt;br /&gt;
&lt;br /&gt;
Ajay Gulati VMware Inc. Palo Alto, CA, 94304 agulati@vmware.com&lt;br /&gt;
&lt;br /&gt;
Arif Merchant HP Labs Palo Alto, CA 94304 arif.merchant@acm.org&lt;br /&gt;
&lt;br /&gt;
Peter J. Varman Rice University Houston, TX, 77005 pjv@rice.edu&lt;br /&gt;
&lt;br /&gt;
==Background Concepts==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Virtual machine (VM) usage is increasing significantly on a daily basis – whether by large gaming firms or university students. SFQ(D) (Start-time Fair Queuing)  performed fairly for low-intensity workloads. However, as the workload with VMs multiplied, the constant need for faster performance and efficiency rose. Hypervisors required a better resource-allocation algorithm in order to meet the need for high performance VMs running concurrently; mClock was the answer Gulati, Varman, and Merchant proposed, to aid hypervisors.&lt;br /&gt;
&lt;br /&gt;
Hypervisors are responsible for multiplexing hardware resources between virtual machines while providing isolation to an extent, using resource management. The three controls used are reservation where the minimum bounds are set, the limit where the maximum upper bound on the allocation is set, and shares which proportionally allocate the resources according to the certain weight each VM has, and also depending on the reservation and upper bound limits. However the contention for I/O resources can suddenly lower a VM’s allocation; the available throughput can change with time, and adjustments to allocations must be made dynamically. &lt;br /&gt;
&lt;br /&gt;
mClock is a resource-allocation algorithm that helps hypervisors manage I/O requests from multiple virtual machines simultaneously. Evidently, it is the better alternate to SFQ because it supports all controls in a single algorithm, handles variable and unknown capacity, and is fast to compute. The algorithm does not weaken the performance level as each VM gets added on, and mClock reservations are met. Essentially, mClock dynamically adjusts the proportions of resources each VM receives based on how active each VM currently is. While mClock constantly changes the physical resource allocation to each VM, it lets each VM hold onto the illusion that it has full control of all system resources. As a result, performance can be increased for VMs that need it, without letting the others know that “their” resources are being distributed to other machines.&lt;br /&gt;
&lt;br /&gt;
==Research problem==&lt;br /&gt;
&lt;br /&gt;
====Problem Facing====&lt;br /&gt;
Today, we use a very primitive kind of I/O resource allocation in modern hypervisors. Currently an algorithm called PARDA (Proportional Allocation of Resources in Distributed storage Access) &amp;lt;sup&amp;gt;[[#Foot1|1]]&amp;lt;/sup&amp;gt; is being used to allocate I/O resources to each VM running on a particular storage device. Unfortunately, the I/O resource allocation algorithm of the hosts use a fair-scheduler called SFQ &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt;. What this means is that PARDA allocates I/O resources to VMs proportional to the number of I/O shares on the host, but each host uses a fair scheduler which divides the I/O shares amongst the VMs equally. This leads to the main problem; whenever another VM is added or another background application is run on one of the VMs, all other VMs suffer a huge performance loss; a 40% performance drop. This is completely unacceptable when applications have minimum performance requirements to run effectively. An application with minimum resource requirements can be running fine on any given VM, however as soon as the stress load on the shared storage device increases, the application might fail to run smoothly, or worse, crash.&lt;br /&gt;
&lt;br /&gt;
====Solution====&lt;br /&gt;
We need an algorithm which can handle all kinds of controls and properly allocate resources for each request. To resolve this issue of resource allocation and performance, mClock is introduced and tested against SFQ.&lt;br /&gt;
&lt;br /&gt;
==Contribution==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This paper addresses the current limitations of I/O resource allocation for hypervisors. It has proposed a new and more efficient algorithm to allocate I/O resources. Older methods were limited solely by providing proportional shares, such as SFQ. mClock incorporates proportional shares, as well as a minimum reservation of I/O resources, and a maximum reservation.&lt;br /&gt;
 &lt;br /&gt;
Older methods of I/O resource allocation had a terrible performance loss. Whenever the load on the shared storage device was increased, or when another VM was added, the performance of all hosts would drop significantly. Also, these older methods provided unreliable I/O management of hypervisors. Conversely, mClock was able to present VMs with a guaranteed minimum reservation of I/O resources. This means that application performance will never drop below a certain point. This provides much better application stability on each of the VMs, and better overall performance and efficiency level, compared to older methods; for instance, SFQ. &lt;br /&gt;
&lt;br /&gt;
The mClock algorithm uses a tag-based scheduler with some modifications; like the tag-based schedulers all I/O requests are assigned tags  and scheduled in order of their tag values, the modifications includes the ability to use “multiple tags based on three controls and dynamically decide which tag to use for scheduling, while still synchronizing idle clients”. &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt;&lt;br /&gt;
&lt;br /&gt;
mClock also uses both constraint-based and weight-based schedulers. Constraint-based scheduler makes sure that “VMs receive their minimum reserved service and no more than their upper limit in a time interval. Weight-based scheduler allocates the remaining throughput to achieve proportional sharing”. &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Another contribution was the introduction of Distributed mClock or dmClock which basically runs an altered version of mClock at each server. dmClock is mainly used for cluster-based storage system which are rising as centralized disk arrays, and better than the alternates in terms of cost. The reservation in this modified algorithm gives higher preference to non-idle VMs to attain high performance. dmClock proved to be effective with a simple, modified mClock algorithm which does not require complex synchronizations between servers.&lt;br /&gt;
&lt;br /&gt;
==Critique==&lt;br /&gt;
&lt;br /&gt;
The article introduces the mClock algorithm which handles (I/O resource allocation on) multiple VM in a variable throughput environment. The Quality of Service (QoS) requirements for a VM are expressed as a minimum reservation, a maximum limit, and a proportional share. This algorithm, mClock, is able to meet those controls in varying capacity. The good thing about this is that the algorithm proves to be (more efficient compare to existing methods) efficient in clustered architectures due to better resource allocation while providing greater isolation between VMs. mClock allows users to be comfortable when working with multiple VMs on one HOST without the constant worry of performance levels, with each VM add-on.&lt;br /&gt;
&lt;br /&gt;
The paper proposes a better, and effective alternative to SFQ and other older methods; the mClock algorithm which efficiently handles multiple VMs in a throughput environment (LUN, PARDA).&lt;br /&gt;
&lt;br /&gt;
One aspect of the writing style , &amp;quot;For a small reference I/O size of 8KB and using typical values for mechanical delay T&amp;lt;sub&amp;gt;m&amp;lt;/sub&amp;gt; = 5ms and peak transfer rate, B&amp;lt;sub&amp;gt;peak&amp;lt;/sub&amp;gt; = 60 MB/s, the numerator = Lat&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;*(1 + 8/300) &amp;amp;asymp; Lat&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;&amp;quot; &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt;. The style of displaying these calculations depicts a messy, unorganized styled.&amp;lt;math&amp;gt;&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot1&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; A. Gulati, I. Ahmad, and C. Waldspurger. PARDA: Proportional&lt;br /&gt;
Allocation of Resources in Distributed Storage&lt;br /&gt;
Access. In (FAST ’09) Proceedings of the Seventh Usenix&lt;br /&gt;
Conference on File and Storage Technologies, Feb 2009.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot2&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; W. Jin, J. S. Chase, and J. Kaur. Interposed proportional&lt;br /&gt;
sharing for a storage service utility. In ACM SIGMET-&lt;br /&gt;
RICS, 2004. [http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.72.7012&amp;amp;rep=rep1&amp;amp;type=pdf Interposed proportional sharing for a storage service utility]&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;/div&gt;</summary>
		<author><name>Dagar</name></author>
	</entry>
	<entry>
		<id>https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=6522</id>
		<title>COMP 3000 Essay 2 2010 Question 10</title>
		<link rel="alternate" type="text/html" href="https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=6522"/>
		<updated>2010-12-02T21:43:50Z</updated>

		<summary type="html">&lt;p&gt;Dagar: /* Paper */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;mClock: Handling Throughput Variability for Hypervisor IO Scheduling&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Paper==&lt;br /&gt;
&lt;br /&gt;
[http://www.usenix.org/events/osdi10/tech/full_papers/Gulati.pdf mClock: Handling Throughput Variability for Hypervisor IO Scheduling]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Authors&#039;&#039;&#039;: &lt;br /&gt;
&lt;br /&gt;
Ajay Gulati VMware Inc. Palo Alto, CA, 94304 agulati@vmware.com&lt;br /&gt;
&lt;br /&gt;
Arif Merchant HP Labs Palo Alto, CA 94304 arif.merchant@acm.org&lt;br /&gt;
&lt;br /&gt;
Peter J. Varman Rice University Houston, TX, 77005 pjv@rice.edu&lt;br /&gt;
&lt;br /&gt;
==Background Concepts==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Virtual machine (VM) usage is increasing significantly on a daily basis – whether by large gaming firms or university students. SFQ(D) (Start-time Fair Queuing)  performed fairly for low-intensity workloads. However, as the workload with VMs multiplied, the constant need for faster performance and efficiency rose. Hypervisors required a better resource-allocation algorithm in order to meet the need for high performance VMs running concurrently; mClock was the answer Gulati, Varman, and Merchant proposed, to aid hypervisors.&lt;br /&gt;
&lt;br /&gt;
Hypervisors are responsible for multiplexing hardware resources between virtual machines while providing isolation to an extent, using resource management. The three controls used are reservation where the minimum bounds are set, the limit where the maximum upper bound on the allocation is set, and shares which proportionally allocate the resources according to the certain weight each VM has, and also depending on the reservation and upper bound limits. However the contention for I/O resources can suddenly lower a VM’s allocation; the available throughput can change with time, and adjustments to allocations must be made dynamically. &lt;br /&gt;
&lt;br /&gt;
mClock is a resource-allocation algorithm that helps hypervisors manage I/O requests from multiple virtual machines simultaneously. Evidently, it is the better alternate to SFQ because it supports all controls in a single algorithm, handles variable and unknown capacity, and is fast to compute. The algorithm does not weaken the performance level as each VM gets added on, and mClock reservations are met. Essentially, mClock dynamically adjusts the proportions of resources each VM receives based on how active each VM currently is. While mClock constantly changes the physical resource allocation to each VM, it lets each VM hold onto the illusion that it has full control of all system resources. As a result, performance can be increased for VMs that need it, without letting the others know that “their” resources are being distributed to other machines.&lt;br /&gt;
&lt;br /&gt;
==Research problem==&lt;br /&gt;
&lt;br /&gt;
====Problem Facing====&lt;br /&gt;
Today, we use a very primitive kind of I/O resource allocation in modern hypervisors. Currently an algorithm called PARDA (Proportional Allocation of Resources in Distributed storage Access) &amp;lt;sup&amp;gt;[[#Foot1|1]]&amp;lt;/sup&amp;gt; is being used to allocate IO resources to each VM running on a particular storage device. Unfortunately, the IO resource allocation algorithm of the hosts use a fair-scheduler called SFQ &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt;. What this means is that PARDA allocates IO resources to VMs proportional to the number of IO shares on the host, but each host uses a fair scheduler which divides the IO shares amongst the VMs equally. This leads to the main problem; whenever another VM is added or another background application is run on one of the VMs, all other VMs suffer a huge performance loss; a 40% performance drop. This is completely unacceptable when applications have minimum performance requirements to run effectively. An application with minimum resource requirements can be running fine on any given VM, however as soon as the stress load on the shared storage device increases, the application might fail to run smoothly, or worse, crash.&lt;br /&gt;
&lt;br /&gt;
====Solution====&lt;br /&gt;
We need an algorithm which can handle all kinds of controls and properly allocate resources for each request. To resolve this issue of resource allocation and performance, mClock is introduced and tested against SFQ.&lt;br /&gt;
&lt;br /&gt;
==Contribution==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This paper addresses the current limitations of IO resource allocation for hypervisors. It has proposed a new and more efficient algorithm to allocate IO resources. Older methods were limited solely by providing proportional shares, such as SFQ. mClock incorporates proportional shares, as well as a minimum reservation of IO resources, and a maximum reservation.&lt;br /&gt;
 &lt;br /&gt;
Older methods of IO resource allocation had a terrible performance loss. Whenever the load on the shared storage device was increased, or when another VM was added, the performance of all hosts would drop significantly. Also, these older methods provided unreliable IO management of hypervisors. Conversely, mClock was able to present VMs with a guaranteed minimum reservation of IO resources. This means that application performance will never drop below a certain point. This provides much better application stability on each of the VMs, and better overall performance and efficiency level, compared to older methods; for instance, SFQ. &lt;br /&gt;
&lt;br /&gt;
The mClock algorithm uses a tag-based scheduler with some modifications; like the tag-based schedulers all IO requests are assigned tags  and scheduled in order of their tag values, the modifications includes the ability to use “multiple tags based on three controls and dynamically decide which tag to use for scheduling, while still synchronizing idle clients”. &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt;&lt;br /&gt;
&lt;br /&gt;
mClock also uses both constraint-based and weight-based schedulers. Constraint-based scheduler makes sure that “VMs receive their minimum reserved service and no more than their upper limit in a time interval. Weight-based scheduler allocates the remaining throughput to achieve proportional sharing”. &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Another contribution was the introduction of Distributed mClock or dmClock which basically runs an altered version of mClock at each server. dmClock is mainly used for cluster-based storage system which are rising as centralized disk arrays, and better than the alternates in terms of cost. The reservation in this modified algorithm gives higher preference to non-idle VMs to attain high performance. dmClock proved to be effective with a simple, modified mClock algorithm which does not require complex synchronizations between servers.&lt;br /&gt;
&lt;br /&gt;
==Critique==&lt;br /&gt;
&lt;br /&gt;
The article introduces the mClock algorithm which handles (I/O resource allocation on) multiple VM in a variable throughput environment. The Quality of Service (QoS) requirements for a VM are expressed as a minimum reservation, a maximum limit, and a proportional share. This algorithm, mClock, is able to meet those controls in varying capacity. The good thing about this is that the algorithm proves to be (more efficient compare to existing methods) efficient in clustered architectures due to better resource allocation while providing greater isolation between VMs. mClock allows users to be comfortable when working with multiple VMs on one HOST without the constant worry of performance levels, with each VM add-on.&lt;br /&gt;
&lt;br /&gt;
The paper proposes a better, and effective alternative to SFQ and other older methods; the mClock algorithm which efficiently handles multiple VMs in a throughput environment (LUN, PARDA).&lt;br /&gt;
&lt;br /&gt;
One aspect of the writing style , &amp;quot;For a small reference IO size of 8KB and using typical values for mechanical delay T&amp;lt;sub&amp;gt;m&amp;lt;/sub&amp;gt; = 5ms and peak transfer rate, B&amp;lt;sub&amp;gt;peak&amp;lt;/sub&amp;gt; = 60 MB/s, the numerator = Lat&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;*(1 + 8/300) &amp;amp;asymp; Lat&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;&amp;quot; &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt;. The style of displaying these calculations depicts a messy, unorganized styled.&amp;lt;math&amp;gt;&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot1&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; A. Gulati, I. Ahmad, and C. Waldspurger. PARDA: Proportional&lt;br /&gt;
Allocation of Resources in Distributed Storage&lt;br /&gt;
Access. In (FAST ’09) Proceedings of the Seventh Usenix&lt;br /&gt;
Conference on File and Storage Technologies, Feb 2009.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot2&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; W. Jin, J. S. Chase, and J. Kaur. Interposed proportional&lt;br /&gt;
sharing for a storage service utility. In ACM SIGMET-&lt;br /&gt;
RICS, 2004. [http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.72.7012&amp;amp;rep=rep1&amp;amp;type=pdf Interposed proportional sharing for a storage service utility]&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;/div&gt;</summary>
		<author><name>Dagar</name></author>
	</entry>
	<entry>
		<id>https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=6521</id>
		<title>COMP 3000 Essay 2 2010 Question 10</title>
		<link rel="alternate" type="text/html" href="https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=6521"/>
		<updated>2010-12-02T21:43:39Z</updated>

		<summary type="html">&lt;p&gt;Dagar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;mClock: Handling Throughput Variability for Hypervisor IO Scheduling&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Paper==&lt;br /&gt;
&lt;br /&gt;
[http://www.usenix.org/events/osdi10/tech/full_papers/Gulati.pdf mClock: Handling Throughput Variability for Hypervisor IO Scheduling]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Authors&#039;&#039;&#039;: &lt;br /&gt;
&lt;br /&gt;
: Ajay Gulati VMware Inc. Palo Alto, CA, 94304 agulati@vmware.com&lt;br /&gt;
&lt;br /&gt;
: Arif Merchant HP Labs Palo Alto, CA 94304 arif.merchant@acm.org&lt;br /&gt;
&lt;br /&gt;
: Peter J. Varman Rice University Houston, TX, 77005 pjv@rice.edu&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Background Concepts==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Virtual machine (VM) usage is increasing significantly on a daily basis – whether by large gaming firms or university students. SFQ(D) (Start-time Fair Queuing)  performed fairly for low-intensity workloads. However, as the workload with VMs multiplied, the constant need for faster performance and efficiency rose. Hypervisors required a better resource-allocation algorithm in order to meet the need for high performance VMs running concurrently; mClock was the answer Gulati, Varman, and Merchant proposed, to aid hypervisors.&lt;br /&gt;
&lt;br /&gt;
Hypervisors are responsible for multiplexing hardware resources between virtual machines while providing isolation to an extent, using resource management. The three controls used are reservation where the minimum bounds are set, the limit where the maximum upper bound on the allocation is set, and shares which proportionally allocate the resources according to the certain weight each VM has, and also depending on the reservation and upper bound limits. However the contention for I/O resources can suddenly lower a VM’s allocation; the available throughput can change with time, and adjustments to allocations must be made dynamically. &lt;br /&gt;
&lt;br /&gt;
mClock is a resource-allocation algorithm that helps hypervisors manage I/O requests from multiple virtual machines simultaneously. Evidently, it is the better alternate to SFQ because it supports all controls in a single algorithm, handles variable and unknown capacity, and is fast to compute. The algorithm does not weaken the performance level as each VM gets added on, and mClock reservations are met. Essentially, mClock dynamically adjusts the proportions of resources each VM receives based on how active each VM currently is. While mClock constantly changes the physical resource allocation to each VM, it lets each VM hold onto the illusion that it has full control of all system resources. As a result, performance can be increased for VMs that need it, without letting the others know that “their” resources are being distributed to other machines.&lt;br /&gt;
&lt;br /&gt;
==Research problem==&lt;br /&gt;
&lt;br /&gt;
====Problem Facing====&lt;br /&gt;
Today, we use a very primitive kind of I/O resource allocation in modern hypervisors. Currently an algorithm called PARDA (Proportional Allocation of Resources in Distributed storage Access) &amp;lt;sup&amp;gt;[[#Foot1|1]]&amp;lt;/sup&amp;gt; is being used to allocate IO resources to each VM running on a particular storage device. Unfortunately, the IO resource allocation algorithm of the hosts use a fair-scheduler called SFQ &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt;. What this means is that PARDA allocates IO resources to VMs proportional to the number of IO shares on the host, but each host uses a fair scheduler which divides the IO shares amongst the VMs equally. This leads to the main problem; whenever another VM is added or another background application is run on one of the VMs, all other VMs suffer a huge performance loss; a 40% performance drop. This is completely unacceptable when applications have minimum performance requirements to run effectively. An application with minimum resource requirements can be running fine on any given VM, however as soon as the stress load on the shared storage device increases, the application might fail to run smoothly, or worse, crash.&lt;br /&gt;
&lt;br /&gt;
====Solution====&lt;br /&gt;
We need an algorithm which can handle all kinds of controls and properly allocate resources for each request. To resolve this issue of resource allocation and performance, mClock is introduced and tested against SFQ.&lt;br /&gt;
&lt;br /&gt;
==Contribution==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This paper addresses the current limitations of IO resource allocation for hypervisors. It has proposed a new and more efficient algorithm to allocate IO resources. Older methods were limited solely by providing proportional shares, such as SFQ. mClock incorporates proportional shares, as well as a minimum reservation of IO resources, and a maximum reservation.&lt;br /&gt;
 &lt;br /&gt;
Older methods of IO resource allocation had a terrible performance loss. Whenever the load on the shared storage device was increased, or when another VM was added, the performance of all hosts would drop significantly. Also, these older methods provided unreliable IO management of hypervisors. Conversely, mClock was able to present VMs with a guaranteed minimum reservation of IO resources. This means that application performance will never drop below a certain point. This provides much better application stability on each of the VMs, and better overall performance and efficiency level, compared to older methods; for instance, SFQ. &lt;br /&gt;
&lt;br /&gt;
The mClock algorithm uses a tag-based scheduler with some modifications; like the tag-based schedulers all IO requests are assigned tags  and scheduled in order of their tag values, the modifications includes the ability to use “multiple tags based on three controls and dynamically decide which tag to use for scheduling, while still synchronizing idle clients”. &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt;&lt;br /&gt;
&lt;br /&gt;
mClock also uses both constraint-based and weight-based schedulers. Constraint-based scheduler makes sure that “VMs receive their minimum reserved service and no more than their upper limit in a time interval. Weight-based scheduler allocates the remaining throughput to achieve proportional sharing”. &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Another contribution was the introduction of Distributed mClock or dmClock which basically runs an altered version of mClock at each server. dmClock is mainly used for cluster-based storage system which are rising as centralized disk arrays, and better than the alternates in terms of cost. The reservation in this modified algorithm gives higher preference to non-idle VMs to attain high performance. dmClock proved to be effective with a simple, modified mClock algorithm which does not require complex synchronizations between servers.&lt;br /&gt;
&lt;br /&gt;
==Critique==&lt;br /&gt;
&lt;br /&gt;
The article introduces the mClock algorithm which handles (I/O resource allocation on) multiple VM in a variable throughput environment. The Quality of Service (QoS) requirements for a VM are expressed as a minimum reservation, a maximum limit, and a proportional share. This algorithm, mClock, is able to meet those controls in varying capacity. The good thing about this is that the algorithm proves to be (more efficient compare to existing methods) efficient in clustered architectures due to better resource allocation while providing greater isolation between VMs. mClock allows users to be comfortable when working with multiple VMs on one HOST without the constant worry of performance levels, with each VM add-on.&lt;br /&gt;
&lt;br /&gt;
The paper proposes a better, and effective alternative to SFQ and other older methods; the mClock algorithm which efficiently handles multiple VMs in a throughput environment (LUN, PARDA).&lt;br /&gt;
&lt;br /&gt;
One aspect of the writing style , &amp;quot;For a small reference IO size of 8KB and using typical values for mechanical delay T&amp;lt;sub&amp;gt;m&amp;lt;/sub&amp;gt; = 5ms and peak transfer rate, B&amp;lt;sub&amp;gt;peak&amp;lt;/sub&amp;gt; = 60 MB/s, the numerator = Lat&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;*(1 + 8/300) &amp;amp;asymp; Lat&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;&amp;quot; &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt;. The style of displaying these calculations depicts a messy, unorganized styled.&amp;lt;math&amp;gt;&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot1&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; A. Gulati, I. Ahmad, and C. Waldspurger. PARDA: Proportional&lt;br /&gt;
Allocation of Resources in Distributed Storage&lt;br /&gt;
Access. In (FAST ’09) Proceedings of the Seventh Usenix&lt;br /&gt;
Conference on File and Storage Technologies, Feb 2009.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot2&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; W. Jin, J. S. Chase, and J. Kaur. Interposed proportional&lt;br /&gt;
sharing for a storage service utility. In ACM SIGMET-&lt;br /&gt;
RICS, 2004. [http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.72.7012&amp;amp;rep=rep1&amp;amp;type=pdf Interposed proportional sharing for a storage service utility]&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;/div&gt;</summary>
		<author><name>Dagar</name></author>
	</entry>
	<entry>
		<id>https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=6520</id>
		<title>COMP 3000 Essay 2 2010 Question 10</title>
		<link rel="alternate" type="text/html" href="https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=6520"/>
		<updated>2010-12-02T21:42:58Z</updated>

		<summary type="html">&lt;p&gt;Dagar: /* Background Concepts */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;mClock: Handling Throughput Variability for Hypervisor IO Scheduling&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Paper==&lt;br /&gt;
&lt;br /&gt;
[http://www.usenix.org/events/osdi10/tech/full_papers/Gulati.pdf mClock: Handling Throughput Variability for Hypervisor IO Scheduling]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Authors&#039;&#039;&#039;: &lt;br /&gt;
&lt;br /&gt;
: Ajay Gulati VMware Inc. Palo Alto, CA, 94304 agulati@vmware.com&lt;br /&gt;
&lt;br /&gt;
: Arif Merchant HP Labs Palo Alto, CA 94304 arif.merchant@acm.org&lt;br /&gt;
&lt;br /&gt;
: Peter J. Varman Rice University Houston, TX, 77005 pjv@rice.edu&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Background Concepts==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Virtual machine (VM) usage is increasing significantly on a daily basis – whether by large gaming firms or university students. SFQ(D) (Start-time Fair Queuing)  performed fairly for low-intensity workloads. However, as the workload with VMs multiplied, the constant need for faster performance and efficiency rose. Hypervisors required a better resource-allocation algorithm in order to meet the need for high performance VMs running concurrently; mClock was the answer Gulati, Varman, and Merchant proposed, to aid hypervisors.&lt;br /&gt;
&lt;br /&gt;
Hypervisors are responsible for multiplexing hardware resources between virtual machines while providing isolation to an extent, using resource management. The three controls used are reservation where the minimum bounds are set, the limit where the maximum upper bound on the allocation is set, and shares which proportionally allocate the resources according to the certain weight each VM has, and also depending on the reservation and upper bound limits. However the contention for I/O resources can suddenly lower a VM’s allocation; the available throughput can change with time, and adjustments to allocations must be made dynamically. &lt;br /&gt;
&lt;br /&gt;
mClock is a resource-allocation algorithm that helps hypervisors manage I/O requests from multiple virtual machines simultaneously. Evidently, it is the better alternate to SFQ because it supports all controls in a single algorithm, handles variable and unknown capacity, and is fast to compute. The algorithm does not weaken the performance level as each VM gets added on, and mClock reservations are met. Essentially, mClock dynamically adjusts the proportions of resources each VM receives based on how active each VM currently is. While mClock constantly changes the physical resource allocation to each VM, it lets each VM hold onto the illusion that it has full control of all system resources. As a result, performance can be increased for VMs that need it, without letting the others know that “their” resources are being distributed to other machines.&lt;br /&gt;
&lt;br /&gt;
==Research problem==&lt;br /&gt;
&lt;br /&gt;
====Problem Facing====&lt;br /&gt;
Today, we use a very primitive kind of I/O resource allocation in modern hypervisors. Currently an algorithm called PARDA (Proportional Allocation of Resources in Distributed storage Access) &amp;lt;sup&amp;gt;[[#Foot1|1]]&amp;lt;/sup&amp;gt; is being used to allocate IO resources to each VM running on a particular storage device. Unfortunately, the IO resource allocation algorithm of the hosts use a fair-scheduler called SFQ &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt;. What this means is that PARDA allocates IO resources to VMs proportional to the number of IO shares on the host, but each host uses a fair scheduler which divides the IO shares amongst the VMs equally. This leads to the main problem; whenever another VM is added or another background application is run on one of the VMs, all other VMs suffer a huge performance loss; a 40% performance drop. This is completely unacceptable when applications have minimum performance requirements to run effectively. An application with minimum resource requirements can be running fine on any given VM, however as soon as the stress load on the shared storage device increases, the application might fail to run smoothly, or worse, crash.&lt;br /&gt;
&lt;br /&gt;
====Solution====&lt;br /&gt;
: We need an algorithm which can handle all kinds of controls and properly allocate resources for each request. To resolve this issue of resource allocation and performance, mClock is introduced and tested against SFQ.&lt;br /&gt;
&lt;br /&gt;
==Contribution==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
: This paper addresses the current limitations of IO resource allocation for hypervisors. It has proposed a new and more efficient algorithm to allocate IO resources. Older methods were limited solely by providing proportional shares, such as SFQ. mClock incorporates proportional shares, as well as a minimum reservation of IO resources, and a maximum reservation.&lt;br /&gt;
 &lt;br /&gt;
: Older methods of IO resource allocation had a terrible performance loss. Whenever the load on the shared storage device was increased, or when another VM was added, the performance of all hosts would drop significantly. Also, these older methods provided unreliable IO management of hypervisors. Conversely, mClock was able to present VMs with a guaranteed minimum reservation of IO resources. This means that application performance will never drop below a certain point. This provides much better application stability on each of the VMs, and better overall performance and efficiency level, compared to older methods; for instance, SFQ. &lt;br /&gt;
&lt;br /&gt;
: The mClock algorithm uses a tag-based scheduler with some modifications; like the tag-based schedulers all IO requests are assigned tags  and scheduled in order of their tag values, the modifications includes the ability to use “multiple tags based on three controls and dynamically decide which tag to use for scheduling, while still synchronizing idle clients”. &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: mClock also uses both constraint-based and weight-based schedulers. Constraint-based scheduler makes sure that “VMs receive their minimum reserved service and no more than their upper limit in a time interval. Weight-based scheduler allocates the remaining throughput to achieve proportional sharing”. &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt; &lt;br /&gt;
&lt;br /&gt;
: Another contribution was the introduction of Distributed mClock or dmClock which basically runs an altered version of mClock at each server. dmClock is mainly used for cluster-based storage system which are rising as centralized disk arrays, and better than the alternates in terms of cost. The reservation in this modified algorithm gives higher preference to non-idle VMs to attain high performance. dmClock proved to be effective with a simple, modified mClock algorithm which does not require complex synchronizations between servers.&lt;br /&gt;
&lt;br /&gt;
==Critique==&lt;br /&gt;
&lt;br /&gt;
: The article introduces the mClock algorithm which handles (I/O resource allocation on) multiple VM in a variable throughput environment. The Quality of Service (QoS) requirements for a VM are expressed as a minimum reservation, a maximum limit, and a proportional share. This algorithm, mClock, is able to meet those controls in varying capacity. The good thing about this is that the algorithm proves to be (more efficient compare to existing methods) efficient in clustered architectures due to better resource allocation while providing greater isolation between VMs. mClock allows users to be comfortable when working with multiple VMs on one HOST without the constant worry of performance levels, with each VM add-on.&lt;br /&gt;
&lt;br /&gt;
: The paper proposes a better, and effective alternative to SFQ and other older methods; the mClock algorithm which efficiently handles multiple VMs in a throughput environment (LUN, PARDA).&lt;br /&gt;
: One aspect of the writing style , &amp;quot;For a small reference IO size of 8KB and using typical values for mechanical delay T&amp;lt;sub&amp;gt;m&amp;lt;/sub&amp;gt; = 5ms and peak transfer rate, B&amp;lt;sub&amp;gt;peak&amp;lt;/sub&amp;gt; = 60 MB/s, the numerator = Lat&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;*(1 + 8/300) &amp;amp;asymp; Lat&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;&amp;quot; &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt;. The style of displaying these calculations depicts a messy, unorganized styled.&amp;lt;math&amp;gt;&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;span id=&amp;quot;Foot1&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; A. Gulati, I. Ahmad, and C. Waldspurger. PARDA: Proportional&lt;br /&gt;
Allocation of Resources in Distributed Storage&lt;br /&gt;
Access. In (FAST ’09) Proceedings of the Seventh Usenix&lt;br /&gt;
Conference on File and Storage Technologies, Feb 2009.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;span id=&amp;quot;Foot2&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; W. Jin, J. S. Chase, and J. Kaur. Interposed proportional&lt;br /&gt;
sharing for a storage service utility. In ACM SIGMET-&lt;br /&gt;
RICS, 2004. [http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.72.7012&amp;amp;rep=rep1&amp;amp;type=pdf Interposed proportional sharing for a storage service utility]&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;/div&gt;</summary>
		<author><name>Dagar</name></author>
	</entry>
	<entry>
		<id>https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=6519</id>
		<title>COMP 3000 Essay 2 2010 Question 10</title>
		<link rel="alternate" type="text/html" href="https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=6519"/>
		<updated>2010-12-02T21:42:45Z</updated>

		<summary type="html">&lt;p&gt;Dagar: /* Problem Facing */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;mClock: Handling Throughput Variability for Hypervisor IO Scheduling&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Paper==&lt;br /&gt;
&lt;br /&gt;
[http://www.usenix.org/events/osdi10/tech/full_papers/Gulati.pdf mClock: Handling Throughput Variability for Hypervisor IO Scheduling]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Authors&#039;&#039;&#039;: &lt;br /&gt;
&lt;br /&gt;
: Ajay Gulati VMware Inc. Palo Alto, CA, 94304 agulati@vmware.com&lt;br /&gt;
&lt;br /&gt;
: Arif Merchant HP Labs Palo Alto, CA 94304 arif.merchant@acm.org&lt;br /&gt;
&lt;br /&gt;
: Peter J. Varman Rice University Houston, TX, 77005 pjv@rice.edu&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Background Concepts==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Virtual machine (VM) usage is increasing significantly on a daily basis – whether by large gaming firms or university students. SFQ(D) performed fairly for low-intensity workloads. However, as the workload with VMs multiplied, the constant need for faster performance and efficiency rose. Hypervisors required a better resource-allocation algorithm in order to meet the need for high performance VMs running concurrently; mClock was the answer Gulati, Varman, and Merchant proposed, to aid hypervisors.&lt;br /&gt;
&lt;br /&gt;
Hypervisors are responsible for multiplexing hardware resources between virtual machines while providing isolation to an extent, using resource management. The three controls used are reservation where the minimum bounds are set, the limit where the maximum upper bound on the allocation is set, and shares which proportionally allocate the resources according to the certain weight each VM has, and also depending on the reservation and upper bound limits. However the contention for I/O resources can suddenly lower a VM’s allocation; the available throughput can change with time, and adjustments to allocations must be made dynamically. &lt;br /&gt;
&lt;br /&gt;
mClock is a resource-allocation algorithm that helps hypervisors manage I/O requests from multiple virtual machines simultaneously. Evidently, it is the better alternate to SFQ because it supports all controls in a single algorithm, handles variable and unknown capacity, and is fast to compute. The algorithm does not weaken the performance level as each VM gets added on, and mClock reservations are met. Essentially, mClock dynamically adjusts the proportions of resources each VM receives based on how active each VM currently is. While mClock constantly changes the physical resource allocation to each VM, it lets each VM hold onto the illusion that it has full control of all system resources. As a result, performance can be increased for VMs that need it, without letting the others know that “their” resources are being distributed to other machines.&lt;br /&gt;
&lt;br /&gt;
==Research problem==&lt;br /&gt;
&lt;br /&gt;
====Problem Facing====&lt;br /&gt;
Today, we use a very primitive kind of I/O resource allocation in modern hypervisors. Currently an algorithm called PARDA (Proportional Allocation of Resources in Distributed storage Access) &amp;lt;sup&amp;gt;[[#Foot1|1]]&amp;lt;/sup&amp;gt; is being used to allocate IO resources to each VM running on a particular storage device. Unfortunately, the IO resource allocation algorithm of the hosts use a fair-scheduler called SFQ &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt;. What this means is that PARDA allocates IO resources to VMs proportional to the number of IO shares on the host, but each host uses a fair scheduler which divides the IO shares amongst the VMs equally. This leads to the main problem; whenever another VM is added or another background application is run on one of the VMs, all other VMs suffer a huge performance loss; a 40% performance drop. This is completely unacceptable when applications have minimum performance requirements to run effectively. An application with minimum resource requirements can be running fine on any given VM, however as soon as the stress load on the shared storage device increases, the application might fail to run smoothly, or worse, crash.&lt;br /&gt;
&lt;br /&gt;
====Solution====&lt;br /&gt;
: We need an algorithm which can handle all kinds of controls and properly allocate resources for each request. To resolve this issue of resource allocation and performance, mClock is introduced and tested against SFQ.&lt;br /&gt;
&lt;br /&gt;
==Contribution==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
: This paper addresses the current limitations of IO resource allocation for hypervisors. It has proposed a new and more efficient algorithm to allocate IO resources. Older methods were limited solely by providing proportional shares, such as SFQ. mClock incorporates proportional shares, as well as a minimum reservation of IO resources, and a maximum reservation.&lt;br /&gt;
 &lt;br /&gt;
: Older methods of IO resource allocation had a terrible performance loss. Whenever the load on the shared storage device was increased, or when another VM was added, the performance of all hosts would drop significantly. Also, these older methods provided unreliable IO management of hypervisors. Conversely, mClock was able to present VMs with a guaranteed minimum reservation of IO resources. This means that application performance will never drop below a certain point. This provides much better application stability on each of the VMs, and better overall performance and efficiency level, compared to older methods; for instance, SFQ. &lt;br /&gt;
&lt;br /&gt;
: The mClock algorithm uses a tag-based scheduler with some modifications; like the tag-based schedulers all IO requests are assigned tags  and scheduled in order of their tag values, the modifications includes the ability to use “multiple tags based on three controls and dynamically decide which tag to use for scheduling, while still synchronizing idle clients”. &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: mClock also uses both constraint-based and weight-based schedulers. Constraint-based scheduler makes sure that “VMs receive their minimum reserved service and no more than their upper limit in a time interval. Weight-based scheduler allocates the remaining throughput to achieve proportional sharing”. &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt; &lt;br /&gt;
&lt;br /&gt;
: Another contribution was the introduction of Distributed mClock or dmClock which basically runs an altered version of mClock at each server. dmClock is mainly used for cluster-based storage system which are rising as centralized disk arrays, and better than the alternates in terms of cost. The reservation in this modified algorithm gives higher preference to non-idle VMs to attain high performance. dmClock proved to be effective with a simple, modified mClock algorithm which does not require complex synchronizations between servers.&lt;br /&gt;
&lt;br /&gt;
==Critique==&lt;br /&gt;
&lt;br /&gt;
: The article introduces the mClock algorithm which handles (I/O resource allocation on) multiple VM in a variable throughput environment. The Quality of Service (QoS) requirements for a VM are expressed as a minimum reservation, a maximum limit, and a proportional share. This algorithm, mClock, is able to meet those controls in varying capacity. The good thing about this is that the algorithm proves to be (more efficient compare to existing methods) efficient in clustered architectures due to better resource allocation while providing greater isolation between VMs. mClock allows users to be comfortable when working with multiple VMs on one HOST without the constant worry of performance levels, with each VM add-on.&lt;br /&gt;
&lt;br /&gt;
: The paper proposes a better, and effective alternative to SFQ and other older methods; the mClock algorithm which efficiently handles multiple VMs in a throughput environment (LUN, PARDA).&lt;br /&gt;
: One aspect of the writing style , &amp;quot;For a small reference IO size of 8KB and using typical values for mechanical delay T&amp;lt;sub&amp;gt;m&amp;lt;/sub&amp;gt; = 5ms and peak transfer rate, B&amp;lt;sub&amp;gt;peak&amp;lt;/sub&amp;gt; = 60 MB/s, the numerator = Lat&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;*(1 + 8/300) &amp;amp;asymp; Lat&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;&amp;quot; &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt;. The style of displaying these calculations depicts a messy, unorganized styled.&amp;lt;math&amp;gt;&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;span id=&amp;quot;Foot1&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; A. Gulati, I. Ahmad, and C. Waldspurger. PARDA: Proportional&lt;br /&gt;
Allocation of Resources in Distributed Storage&lt;br /&gt;
Access. In (FAST ’09) Proceedings of the Seventh Usenix&lt;br /&gt;
Conference on File and Storage Technologies, Feb 2009.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;span id=&amp;quot;Foot2&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; W. Jin, J. S. Chase, and J. Kaur. Interposed proportional&lt;br /&gt;
sharing for a storage service utility. In ACM SIGMET-&lt;br /&gt;
RICS, 2004. [http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.72.7012&amp;amp;rep=rep1&amp;amp;type=pdf Interposed proportional sharing for a storage service utility]&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;/div&gt;</summary>
		<author><name>Dagar</name></author>
	</entry>
	<entry>
		<id>https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=6518</id>
		<title>COMP 3000 Essay 2 2010 Question 10</title>
		<link rel="alternate" type="text/html" href="https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=6518"/>
		<updated>2010-12-02T21:39:18Z</updated>

		<summary type="html">&lt;p&gt;Dagar: /* Background Concepts */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;mClock: Handling Throughput Variability for Hypervisor IO Scheduling&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Paper==&lt;br /&gt;
&lt;br /&gt;
[http://www.usenix.org/events/osdi10/tech/full_papers/Gulati.pdf mClock: Handling Throughput Variability for Hypervisor IO Scheduling]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Authors&#039;&#039;&#039;: &lt;br /&gt;
&lt;br /&gt;
: Ajay Gulati VMware Inc. Palo Alto, CA, 94304 agulati@vmware.com&lt;br /&gt;
&lt;br /&gt;
: Arif Merchant HP Labs Palo Alto, CA 94304 arif.merchant@acm.org&lt;br /&gt;
&lt;br /&gt;
: Peter J. Varman Rice University Houston, TX, 77005 pjv@rice.edu&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Background Concepts==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Virtual machine (VM) usage is increasing significantly on a daily basis – whether by large gaming firms or university students. SFQ(D) performed fairly for low-intensity workloads. However, as the workload with VMs multiplied, the constant need for faster performance and efficiency rose. Hypervisors required a better resource-allocation algorithm in order to meet the need for high performance VMs running concurrently; mClock was the answer Gulati, Varman, and Merchant proposed, to aid hypervisors.&lt;br /&gt;
&lt;br /&gt;
Hypervisors are responsible for multiplexing hardware resources between virtual machines while providing isolation to an extent, using resource management. The three controls used are reservation where the minimum bounds are set, the limit where the maximum upper bound on the allocation is set, and shares which proportionally allocate the resources according to the certain weight each VM has, and also depending on the reservation and upper bound limits. However the contention for I/O resources can suddenly lower a VM’s allocation; the available throughput can change with time, and adjustments to allocations must be made dynamically. &lt;br /&gt;
&lt;br /&gt;
mClock is a resource-allocation algorithm that helps hypervisors manage I/O requests from multiple virtual machines simultaneously. Evidently, it is the better alternate to SFQ because it supports all controls in a single algorithm, handles variable and unknown capacity, and is fast to compute. The algorithm does not weaken the performance level as each VM gets added on, and mClock reservations are met. Essentially, mClock dynamically adjusts the proportions of resources each VM receives based on how active each VM currently is. While mClock constantly changes the physical resource allocation to each VM, it lets each VM hold onto the illusion that it has full control of all system resources. As a result, performance can be increased for VMs that need it, without letting the others know that “their” resources are being distributed to other machines.&lt;br /&gt;
&lt;br /&gt;
==Research problem==&lt;br /&gt;
&lt;br /&gt;
====Problem Facing====&lt;br /&gt;
: Today, we use a very primitive kind of IO resource allocation in modern hypervisors. Currently an algorithm called PARDA (Proportional Allocation of Resources in Distributed storage Access) &amp;lt;sup&amp;gt;[[#Foot1|1]]&amp;lt;/sup&amp;gt; is being used to allocate IO resources to each VM running on a particular storage device. Unfortunately, the IO resource allocation algorithm of the hosts use a fair-scheduler called SFQ (Start-time Fair Queuing) &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt;. What this means is that PARDA allocates IO resources to VMs proportional to the number of IO shares on the host, but each host uses a fair scheduler which divides the IO shares amongst the VMs equally. This leads to the main problem; whenever another VM is added or another background application is run on one of the VMs, all other VMs suffer a huge performance loss; a 40% performance drop. This is completely unacceptable when applications have minimum performance requirements to run effectively. An application with minimum resource requirements can be running fine on any given VM, however as soon as the stress load on the shared storage device increases, the application might fail to run smoothly, or worse, crash. &lt;br /&gt;
&lt;br /&gt;
====Solution====&lt;br /&gt;
: We need an algorithm which can handle all kinds of controls and properly allocate resources for each request. To resolve this issue of resource allocation and performance, mClock is introduced and tested against SFQ.&lt;br /&gt;
&lt;br /&gt;
==Contribution==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
: This paper addresses the current limitations of IO resource allocation for hypervisors. It has proposed a new and more efficient algorithm to allocate IO resources. Older methods were limited solely by providing proportional shares, such as SFQ. mClock incorporates proportional shares, as well as a minimum reservation of IO resources, and a maximum reservation.&lt;br /&gt;
 &lt;br /&gt;
: Older methods of IO resource allocation had a terrible performance loss. Whenever the load on the shared storage device was increased, or when another VM was added, the performance of all hosts would drop significantly. Also, these older methods provided unreliable IO management of hypervisors. Conversely, mClock was able to present VMs with a guaranteed minimum reservation of IO resources. This means that application performance will never drop below a certain point. This provides much better application stability on each of the VMs, and better overall performance and efficiency level, compared to older methods; for instance, SFQ. &lt;br /&gt;
&lt;br /&gt;
: The mClock algorithm uses a tag-based scheduler with some modifications; like the tag-based schedulers all IO requests are assigned tags  and scheduled in order of their tag values, the modifications includes the ability to use “multiple tags based on three controls and dynamically decide which tag to use for scheduling, while still synchronizing idle clients”. &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: mClock also uses both constraint-based and weight-based schedulers. Constraint-based scheduler makes sure that “VMs receive their minimum reserved service and no more than their upper limit in a time interval. Weight-based scheduler allocates the remaining throughput to achieve proportional sharing”. &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt; &lt;br /&gt;
&lt;br /&gt;
: Another contribution was the introduction of Distributed mClock or dmClock which basically runs an altered version of mClock at each server. dmClock is mainly used for cluster-based storage system which are rising as centralized disk arrays, and better than the alternates in terms of cost. The reservation in this modified algorithm gives higher preference to non-idle VMs to attain high performance. dmClock proved to be effective with a simple, modified mClock algorithm which does not require complex synchronizations between servers.&lt;br /&gt;
&lt;br /&gt;
==Critique==&lt;br /&gt;
&lt;br /&gt;
: The article introduces the mClock algorithm which handles (I/O resource allocation on) multiple VM in a variable throughput environment. The Quality of Service (QoS) requirements for a VM are expressed as a minimum reservation, a maximum limit, and a proportional share. This algorithm, mClock, is able to meet those controls in varying capacity. The good thing about this is that the algorithm proves to be (more efficient compare to existing methods) efficient in clustered architectures due to better resource allocation while providing greater isolation between VMs. mClock allows users to be comfortable when working with multiple VMs on one HOST without the constant worry of performance levels, with each VM add-on.&lt;br /&gt;
&lt;br /&gt;
: The paper proposes a better, and effective alternative to SFQ and other older methods; the mClock algorithm which efficiently handles multiple VMs in a throughput environment (LUN, PARDA).&lt;br /&gt;
: One aspect of the writing style , &amp;quot;For a small reference IO size of 8KB and using typical values for mechanical delay T&amp;lt;sub&amp;gt;m&amp;lt;/sub&amp;gt; = 5ms and peak transfer rate, B&amp;lt;sub&amp;gt;peak&amp;lt;/sub&amp;gt; = 60 MB/s, the numerator = Lat&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;*(1 + 8/300) &amp;amp;asymp; Lat&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;&amp;quot; &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt;. The style of displaying these calculations depicts a messy, unorganized styled.&amp;lt;math&amp;gt;&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;span id=&amp;quot;Foot1&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; A. Gulati, I. Ahmad, and C. Waldspurger. PARDA: Proportional&lt;br /&gt;
Allocation of Resources in Distributed Storage&lt;br /&gt;
Access. In (FAST ’09) Proceedings of the Seventh Usenix&lt;br /&gt;
Conference on File and Storage Technologies, Feb 2009.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;span id=&amp;quot;Foot2&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; W. Jin, J. S. Chase, and J. Kaur. Interposed proportional&lt;br /&gt;
sharing for a storage service utility. In ACM SIGMET-&lt;br /&gt;
RICS, 2004. [http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.72.7012&amp;amp;rep=rep1&amp;amp;type=pdf Interposed proportional sharing for a storage service utility]&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;/div&gt;</summary>
		<author><name>Dagar</name></author>
	</entry>
	<entry>
		<id>https://homeostasis.scs.carleton.ca/wiki/index.php?title=Talk:COMP_3000_Essay_2_2010_Question_10&amp;diff=5856</id>
		<title>Talk:COMP 3000 Essay 2 2010 Question 10</title>
		<link rel="alternate" type="text/html" href="https://homeostasis.scs.carleton.ca/wiki/index.php?title=Talk:COMP_3000_Essay_2_2010_Question_10&amp;diff=5856"/>
		<updated>2010-11-30T23:01:40Z</updated>

		<summary type="html">&lt;p&gt;Dagar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;mClock: Handling Throughput Variability for Hypervisor IO Scheduling&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=Notes to Group=&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;We might as well work directly on the main page&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I think I&#039;ve moved all the existing text to the main page, as things were being edited in 2 places. Hope that&#039;s okay. --[[User:Dagar|Dagar]] 23:01, 30 November 2010 (UTC)&lt;br /&gt;
&lt;br /&gt;
=Group Members=&lt;br /&gt;
Please leave your name and email address if you are in the group&lt;br /&gt;
&lt;br /&gt;
*[[User:Dagar|Daniel Agar]] - dagar@scs.carleton.ca&lt;br /&gt;
*[[User:xchen6|Xi Chen]] - xintai1985@gmail.com&lt;br /&gt;
*[[User:npatel1|Niravkumar Patel]] - npatel1@connect.carleton.ca&lt;br /&gt;
*[[User:tpham3|Tuan Pham]] - tpham3@connect.carleton.ca&lt;br /&gt;
*[[User:aellebla|Aaron Leblanc]] - aellebla@connect.carleton.ca&lt;br /&gt;
*[[User:naseido|Nisrin Abou-Seido]] - naseido@connect.carleton.ca&lt;br /&gt;
&lt;br /&gt;
=Layout=&lt;br /&gt;
==Paper==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Authors&#039;&#039;&#039;: &lt;br /&gt;
&lt;br /&gt;
: Ajay Gulati VMware Inc. Palo Alto, CA, 94304 agulati@vmware.com&lt;br /&gt;
&lt;br /&gt;
: Arif Merchant HP Labs Palo Alto, CA 94304 arif.merchant@acm.org&lt;br /&gt;
&lt;br /&gt;
: Peter J. Varman Rice University Houston, TX, 77005 pjv@rice.edu&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Link to the paper&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
[http://www.usenix.org/events/osdi10/tech/full_papers/Gulati.pdf mClock: Handling Throughput Variability for Hypervisor IO Scheduling]&lt;br /&gt;
&lt;br /&gt;
==Background Concepts==&lt;br /&gt;
: Explain briefly the background concepts and ideas that your fellow classmates will need to know first in order to understand your assigned paper.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Research problem==&lt;br /&gt;
:  What is the research problem being addressed by the paper?  How does this problem relate to past related work?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Contribution==&lt;br /&gt;
: What are the research contribution(s) of this work?  Specifically, what are the key research results, and what do they mean?  (What was implemented?  Why is it any better than what came before?)&lt;br /&gt;
&lt;br /&gt;
==Critique==&lt;br /&gt;
: What is good and not-so-good about this paper?  You may discuss both the style and content; be sure to ground your discussion with specific references.  Simple assertions that something is good or bad is not enough - you must explain why.&lt;br /&gt;
&lt;br /&gt;
: Tuan,i think the term PARDA was explained in the article. It stands for Proportional Allocation of Resources in Distributed storage Access. It was basically a priority queue for the storage devices and VMs.--[[User:Aellebla|Aaron Leblanc]] 22:47, 30 November 2010 (UTC)&lt;/div&gt;</summary>
		<author><name>Dagar</name></author>
	</entry>
	<entry>
		<id>https://homeostasis.scs.carleton.ca/wiki/index.php?title=Talk:COMP_3000_Essay_2_2010_Question_10&amp;diff=5855</id>
		<title>Talk:COMP 3000 Essay 2 2010 Question 10</title>
		<link rel="alternate" type="text/html" href="https://homeostasis.scs.carleton.ca/wiki/index.php?title=Talk:COMP_3000_Essay_2_2010_Question_10&amp;diff=5855"/>
		<updated>2010-11-30T23:01:33Z</updated>

		<summary type="html">&lt;p&gt;Dagar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;mClock: Handling Throughput Variability for Hypervisor IO Scheduling&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=Notes to Group=&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;We might as well work directly on the main page&#039;&#039;&#039;&lt;br /&gt;
I think I&#039;ve moved all the existing text to the main page, as things were being edited in 2 places. Hope that&#039;s okay. --[[User:Dagar|Dagar]] 23:01, 30 November 2010 (UTC)&lt;br /&gt;
&lt;br /&gt;
=Group Members=&lt;br /&gt;
Please leave your name and email address if you are in the group&lt;br /&gt;
&lt;br /&gt;
*[[User:Dagar|Daniel Agar]] - dagar@scs.carleton.ca&lt;br /&gt;
*[[User:xchen6|Xi Chen]] - xintai1985@gmail.com&lt;br /&gt;
*[[User:npatel1|Niravkumar Patel]] - npatel1@connect.carleton.ca&lt;br /&gt;
*[[User:tpham3|Tuan Pham]] - tpham3@connect.carleton.ca&lt;br /&gt;
*[[User:aellebla|Aaron Leblanc]] - aellebla@connect.carleton.ca&lt;br /&gt;
*[[User:naseido|Nisrin Abou-Seido]] - naseido@connect.carleton.ca&lt;br /&gt;
&lt;br /&gt;
=Layout=&lt;br /&gt;
==Paper==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Authors&#039;&#039;&#039;: &lt;br /&gt;
&lt;br /&gt;
: Ajay Gulati VMware Inc. Palo Alto, CA, 94304 agulati@vmware.com&lt;br /&gt;
&lt;br /&gt;
: Arif Merchant HP Labs Palo Alto, CA 94304 arif.merchant@acm.org&lt;br /&gt;
&lt;br /&gt;
: Peter J. Varman Rice University Houston, TX, 77005 pjv@rice.edu&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Link to the paper&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
[http://www.usenix.org/events/osdi10/tech/full_papers/Gulati.pdf mClock: Handling Throughput Variability for Hypervisor IO Scheduling]&lt;br /&gt;
&lt;br /&gt;
==Background Concepts==&lt;br /&gt;
: Explain briefly the background concepts and ideas that your fellow classmates will need to know first in order to understand your assigned paper.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Research problem==&lt;br /&gt;
:  What is the research problem being addressed by the paper?  How does this problem relate to past related work?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Contribution==&lt;br /&gt;
: What are the research contribution(s) of this work?  Specifically, what are the key research results, and what do they mean?  (What was implemented?  Why is it any better than what came before?)&lt;br /&gt;
&lt;br /&gt;
==Critique==&lt;br /&gt;
: What is good and not-so-good about this paper?  You may discuss both the style and content; be sure to ground your discussion with specific references.  Simple assertions that something is good or bad is not enough - you must explain why.&lt;br /&gt;
&lt;br /&gt;
: Tuan,i think the term PARDA was explained in the article. It stands for Proportional Allocation of Resources in Distributed storage Access. It was basically a priority queue for the storage devices and VMs.--[[User:Aellebla|Aaron Leblanc]] 22:47, 30 November 2010 (UTC)&lt;/div&gt;</summary>
		<author><name>Dagar</name></author>
	</entry>
	<entry>
		<id>https://homeostasis.scs.carleton.ca/wiki/index.php?title=Talk:COMP_3000_Essay_2_2010_Question_10&amp;diff=5854</id>
		<title>Talk:COMP 3000 Essay 2 2010 Question 10</title>
		<link rel="alternate" type="text/html" href="https://homeostasis.scs.carleton.ca/wiki/index.php?title=Talk:COMP_3000_Essay_2_2010_Question_10&amp;diff=5854"/>
		<updated>2010-11-30T23:00:23Z</updated>

		<summary type="html">&lt;p&gt;Dagar: Move everything to main page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;mClock: Handling Throughput Variability for Hypervisor IO Scheduling&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=Notes to Group=&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;We might as well work directly on the main page&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=Group Members=&lt;br /&gt;
Please leave your name and email address if you are in the group&lt;br /&gt;
&lt;br /&gt;
*[[User:Dagar|Daniel Agar]] - dagar@scs.carleton.ca&lt;br /&gt;
*[[User:xchen6|Xi Chen]] - xintai1985@gmail.com&lt;br /&gt;
*[[User:npatel1|Niravkumar Patel]] - npatel1@connect.carleton.ca&lt;br /&gt;
*[[User:tpham3|Tuan Pham]] - tpham3@connect.carleton.ca&lt;br /&gt;
*[[User:aellebla|Aaron Leblanc]] - aellebla@connect.carleton.ca&lt;br /&gt;
*[[User:naseido|Nisrin Abou-Seido]] - naseido@connect.carleton.ca&lt;br /&gt;
&lt;br /&gt;
=Layout=&lt;br /&gt;
==Paper==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Authors&#039;&#039;&#039;: &lt;br /&gt;
&lt;br /&gt;
: Ajay Gulati VMware Inc. Palo Alto, CA, 94304 agulati@vmware.com&lt;br /&gt;
&lt;br /&gt;
: Arif Merchant HP Labs Palo Alto, CA 94304 arif.merchant@acm.org&lt;br /&gt;
&lt;br /&gt;
: Peter J. Varman Rice University Houston, TX, 77005 pjv@rice.edu&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Link to the paper&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
[http://www.usenix.org/events/osdi10/tech/full_papers/Gulati.pdf mClock: Handling Throughput Variability for Hypervisor IO Scheduling]&lt;br /&gt;
&lt;br /&gt;
==Background Concepts==&lt;br /&gt;
: Explain briefly the background concepts and ideas that your fellow classmates will need to know first in order to understand your assigned paper.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Research problem==&lt;br /&gt;
:  What is the research problem being addressed by the paper?  How does this problem relate to past related work?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Contribution==&lt;br /&gt;
: What are the research contribution(s) of this work?  Specifically, what are the key research results, and what do they mean?  (What was implemented?  Why is it any better than what came before?)&lt;br /&gt;
&lt;br /&gt;
==Critique==&lt;br /&gt;
: What is good and not-so-good about this paper?  You may discuss both the style and content; be sure to ground your discussion with specific references.  Simple assertions that something is good or bad is not enough - you must explain why.&lt;br /&gt;
&lt;br /&gt;
: Tuan,i think the term PARDA was explained in the article. It stands for Proportional Allocation of Resources in Distributed storage Access. It was basically a priority queue for the storage devices and VMs.--[[User:Aellebla|Aaron Leblanc]] 22:47, 30 November 2010 (UTC)&lt;/div&gt;</summary>
		<author><name>Dagar</name></author>
	</entry>
	<entry>
		<id>https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=5853</id>
		<title>COMP 3000 Essay 2 2010 Question 10</title>
		<link rel="alternate" type="text/html" href="https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=5853"/>
		<updated>2010-11-30T22:59:29Z</updated>

		<summary type="html">&lt;p&gt;Dagar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;mClock: Handling Throughput Variability for Hypervisor IO Scheduling&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Paper==&lt;br /&gt;
&lt;br /&gt;
[http://www.usenix.org/events/osdi10/tech/full_papers/Gulati.pdf mClock: Handling Throughput Variability for Hypervisor IO Scheduling]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Authors&#039;&#039;&#039;: &lt;br /&gt;
&lt;br /&gt;
: Ajay Gulati VMware Inc. Palo Alto, CA, 94304 agulati@vmware.com&lt;br /&gt;
&lt;br /&gt;
: Arif Merchant HP Labs Palo Alto, CA 94304 arif.merchant@acm.org&lt;br /&gt;
&lt;br /&gt;
: Peter J. Varman Rice University Houston, TX, 77005 pjv@rice.edu&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Background Concepts==&lt;br /&gt;
Hypervisors are responsible for multiplexing hardware resources between virtual machines while providing isolation to an extent, using resource management. The three controls used are reservation where the minimum bounds are set, the limit where the maximum upper bound on the allocation is set, and shares which proportionally allocate the resources according to the certain weight each VM has, and also depending on the reservation and upper bound limits. This is interesting because virtualization has been very successful; people are comfortable with putting multiple VM on one HOST without worrying about the performance of each VM on another. However the contention for I/O resources can suddenly lower a VM’s allocation; the available throughput can change with time, and adjustments to allocations must be made dynamically. mClock is a better alternate because it supports all controls in a single algorithm, handles variable and unknown capacity, and fast to compute. This is interesting because there is a limit control on VM allocation, it does not weaken as each VM gets added on, and mClock reservations are met.&lt;br /&gt;
&lt;br /&gt;
: more about mclock here&lt;br /&gt;
&lt;br /&gt;
mClock is a resource-allocation algorithm that helps hypervisors manage I/O requests from multiple virtual machines simultaneously. Essentially, mClock dynamically adjusts the proportions of resources each VM receives based on how active each VM currently is. While mClock constantly changes the physical resource allocation to each VM, it lets each VM hold onto the illusion that it has full control of all system resources. As a result, performance can be increased for VMs that need it, without letting the others know that “their” resources are being distributed to other machines.&lt;br /&gt;
&lt;br /&gt;
==Research problem==&lt;br /&gt;
We use today, a very primitive kind of IO resource allocation in modern hypervisors.   Currently an algorithm called PARDA (Proportional Allocation of Resources in Distributed storage Access) &amp;lt;sup&amp;gt;[[#Foot1|1]]&amp;lt;/sup&amp;gt; is used to allocate IO resources to each VM running on a particular storage device. Unfortunately, the IO resource allocation algorithm of the hosts use a fair-scheduler called SFQ (Start-time Fair Queuing) &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt;. What this means is that PARDA allocates IO resources to VMs proportional to the number of IO shares on the host, but each host uses a fair scheduler which divides the IO shares amongst the VMs equally. This leads to the problem that whenever another VM is added or another background application is run on one of the VMs, all the other VMs suffer a huge performance lose.  In the case of adding another VM, there is a 40% performance drop. This is completely unacceptable when applications have minimum performance requirements to run effectively. An application with minimum resource requirements can be running fine on any given VM, but as soon as the load on the shared storage device increases, the application would run poorly, or could potentially crash.&lt;br /&gt;
&lt;br /&gt;
==Contribution==&lt;br /&gt;
This paper addresses the current limitations of IO resource allocation for hypervisors. The paper has proposed a new and more efficient algorithm to allocate IO resources. Older methods were limited solely by providing proportional shares. mClock incorporates proportional shares, as well as a minimum reservation of IO resources, and a maximum reservation.&lt;br /&gt;
&lt;br /&gt;
Older methods of IO resource allocation had a terrible performance lose. Whenever the load on the shared storage device was increased, or when another VM was added, the performance of all hosts would drop considerably. Older methods provided unreliable IO management of hypervisors&lt;br /&gt;
&lt;br /&gt;
mClock was able to present VMs with a guaranteed minimum reservation of IO resources. This means that application performance will never drop below a certain point. This provides much better application stability on each of the VMs, and better overall performance.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;dmClock (used for cluster-based storage systems) runs a modified version of mClock at each server. There is only one modification to the algorithm to account for the distributed model in the Tag-Assignment component.&amp;quot; - from the paper&lt;br /&gt;
&lt;br /&gt;
==Critique==&lt;br /&gt;
The article introduces a mClock algorithm which handles multiple VM in a variable throughput environment. The Quality of Service (QoS) requirements for a VM are expressed as a minimum reservation, a maximum limit, and a proportional share. mClock is able to meet those controls in varying capacity. the good thing about this is that the algorithms proves efficient in clustered architectures. Moreover, mClock provides greater isolation between VMs.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In this paper there were many terms that were used but never explained, such as orders (used in the graphs), LUN, PARDA, etc. Also i did not like the way the calcualtions were written in sentences, &amp;quot;For a small reference IO size of 8KB and using typical values for mechanical delay T&amp;lt;sub&amp;gt;m&amp;lt;/sub&amp;gt; = 5ms and peak transfer rate, B&amp;lt;sub&amp;gt;peak&amp;lt;/sub&amp;gt; = 60 MB/s, the numerator = Lat&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;*(1 + 8/300) &amp;amp;asymp; Lat&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;&amp;quot;. To me this was very messy and made me skip through the calculations part of the sentence.&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot1&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; A. Gulati, I. Ahmad, and C. Waldspurger. PARDA: Proportional&lt;br /&gt;
Allocation of Resources in Distributed Storage&lt;br /&gt;
Access. In (FAST ’09) Proceedings of the Seventh Usenix&lt;br /&gt;
Conference on File and Storage Technologies, Feb 2009.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot2&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; W. Jin, J. S. Chase, and J. Kaur. Interposed proportional&lt;br /&gt;
sharing for a storage service utility. In ACM SIGMET-&lt;br /&gt;
RICS, 2004. [http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.72.7012&amp;amp;rep=rep1&amp;amp;type=pdf Interposed proportional sharing for a storage service utility]&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;/div&gt;</summary>
		<author><name>Dagar</name></author>
	</entry>
	<entry>
		<id>https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=5852</id>
		<title>COMP 3000 Essay 2 2010 Question 10</title>
		<link rel="alternate" type="text/html" href="https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=5852"/>
		<updated>2010-11-30T22:56:10Z</updated>

		<summary type="html">&lt;p&gt;Dagar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;mClock: Handling Throughput Variability for Hypervisor IO Scheduling&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Paper==&lt;br /&gt;
&lt;br /&gt;
[http://www.usenix.org/events/osdi10/tech/full_papers/Gulati.pdf mClock: Handling Throughput Variability for Hypervisor IO Scheduling]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Authors&#039;&#039;&#039;: &lt;br /&gt;
&lt;br /&gt;
: Ajay Gulati VMware Inc. Palo Alto, CA, 94304 agulati@vmware.com&lt;br /&gt;
&lt;br /&gt;
: Arif Merchant HP Labs Palo Alto, CA 94304 arif.merchant@acm.org&lt;br /&gt;
&lt;br /&gt;
: Peter J. Varman Rice University Houston, TX, 77005 pjv@rice.edu&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Background Concepts==&lt;br /&gt;
Hypervisors are responsible for multiplexing hardware resources between virtual machines while providing isolation to an extent, using resource management. The three controls used are reservation where the minimum bounds are set, the limit where the maximum upper bound on the allocation is set, and shares which proportionally allocate the resources according to the certain weight each VM has, and also depending on the reservation and upper bound limits. This is interesting because virtualization has been very successful; people are comfortable with putting multiple VM on one HOST without worrying about the performance of each VM on another. However the contention for I/O resources can suddenly lower a VM’s allocation; the available throughput can change with time, and adjustments to allocations must be made dynamically. mClock is a better alternate because it supports all controls in a single algorithm, handles variable and unknown capacity, and fast to compute. This is interesting because there is a limit control on VM allocation, it does not weaken as each VM gets added on, and mClock reservations are met.&lt;br /&gt;
&lt;br /&gt;
: more about mclock here&lt;br /&gt;
&lt;br /&gt;
mClock is a resource-allocation algorithm that helps hypervisors manage I/O requests from multiple virtual machines simultaneously. Essentially, mClock dynamically adjusts the proportions of resources each VM receives based on how active each VM currently is. While mClock constantly changes the physical resource allocation to each VM, it lets each VM hold onto the illusion that it has full control of all system resources. As a result, performance can be increased for VMs that need it, without letting the others know that “their” resources are being distributed to other machines.&lt;br /&gt;
&lt;br /&gt;
==Research problem==&lt;br /&gt;
We use today, a very primitive kind of IO resource allocation in modern hypervisors.   Currently an algorithm called PARDA (Proportional Allocation of Resources in Distributed storage Access) &amp;lt;sup&amp;gt;[[#Foot1|1]]&amp;lt;/sup&amp;gt; is used to allocate IO resources to each VM running on a particular storage device. Unfortunately, the IO resource allocation algorithm of the hosts use a fair-scheduler called SFQ (Start-time Fair Queuing) &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt;. What this means is that PARDA allocates IO resources to VMs proportional to the number of IO shares on the host, but each host uses a fair scheduler which divides the IO shares amongst the VMs equally. This leads to the problem that whenever another VM is added or another background application is run on one of the VMs, all the other VMs suffer a huge performance lose.  In the case of adding another VM, there is a 40% performance drop. This is completely unacceptable when applications have minimum performance requirements to run effectively. An application with minimum resource requirements can be running fine on any given VM, but as soon as the load on the shared storage device increases, the application would run poorly, or could potentially crash.&lt;br /&gt;
&lt;br /&gt;
==Contribution==&lt;br /&gt;
This paper addresses the current limitations of IO resource allocation for hypervisors. The paper has proposed a new and more efficient algorithm to allocate IO resources. Older methods were limited solely by providing proportional shares. mClock incorporates proportional shares, as well as a minimum reservation of IO resources, and a maximum reservation.&lt;br /&gt;
&lt;br /&gt;
Older methods of IO resource allocation had a terrible performance lose. Whenever the load on the shared storage device was increased, or when another VM was added, the performance of all hosts would drop considerably. Older methods provided unreliable IO management of hypervisors&lt;br /&gt;
&lt;br /&gt;
mClock was able to present VMs with a guaranteed minimum reservation of IO resources. This means that application performance will never drop below a certain point. This provides much better application stability on each of the VMs, and better overall performance.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;dmClock (used for cluster-based storage systems) runs a modified version of mClock at each server. There is only one modification to the algorithm to account for the distributed model in the Tag-Assignment component.&amp;quot; - from the paper&lt;br /&gt;
&lt;br /&gt;
==Critique==&lt;br /&gt;
The article introduces a mClock algorithm which handles multiple VM in a variable throughput environment. The Quality of Service (QoS) requirements for a VM are expressed as a minimum reservation, a maximum limit, and a proportional share. mClock is able to meet those controls in varying capacity. the good thing about this is that the algorithms proves efficient in clustered architectures. Moreover, mClock provides greater isolation between VMs.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In this paper there were many terms that were used but never explained, such as orders (used in the graphs), LUN, PARDA, etc. Also i did not like the way the calcualtions were written in sentences, &amp;quot;For a small reference IO size of 8KB and using typical values for mechanical delay T&amp;lt;sub&amp;gt;m&amp;lt;/sub&amp;gt; = 5ms and peak transfer rate, B&amp;lt;sub&amp;gt;peak&amp;lt;/sub&amp;gt; = 60 MB/s, the numerator = Lat&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;*(1 + 8/300) &amp;amp;asymp; Lat&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;&amp;quot;. To me this was very messy and made me skip through the calculations part of the sentence.&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot1&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; A. Gulati, I. Ahmad, and C. Waldspurger. PARDA: Proportional&lt;br /&gt;
Allocation of Resources in Distributed Storage&lt;br /&gt;
Access. In (FAST ’09) Proceedings of the Seventh Usenix&lt;br /&gt;
Conference on File and Storage Technologies, Feb 2009.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot2&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; W. Jin, J. S. Chase, and J. Kaur. Interposed proportional&lt;br /&gt;
sharing for a storage service utility. In ACM SIGMET-&lt;br /&gt;
RICS, 2004.&amp;lt;/span&amp;gt;&lt;/div&gt;</summary>
		<author><name>Dagar</name></author>
	</entry>
	<entry>
		<id>https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=5848</id>
		<title>COMP 3000 Essay 2 2010 Question 10</title>
		<link rel="alternate" type="text/html" href="https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=5848"/>
		<updated>2010-11-30T22:51:49Z</updated>

		<summary type="html">&lt;p&gt;Dagar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;mClock: Handling Throughput Variability for Hypervisor IO Scheduling&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Paper==&lt;br /&gt;
&lt;br /&gt;
[http://www.usenix.org/events/osdi10/tech/full_papers/Gulati.pdf mClock: Handling Throughput Variability for Hypervisor IO Scheduling]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Authors&#039;&#039;&#039;: &lt;br /&gt;
&lt;br /&gt;
: Ajay Gulati VMware Inc. Palo Alto, CA, 94304 agulati@vmware.com&lt;br /&gt;
&lt;br /&gt;
: Arif Merchant HP Labs Palo Alto, CA 94304 arif.merchant@acm.org&lt;br /&gt;
&lt;br /&gt;
: Peter J. Varman Rice University Houston, TX, 77005 pjv@rice.edu&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Background Concepts==&lt;br /&gt;
Hypervisors are responsible for multiplexing hardware resources between virtual machines while providing isolation to an extent, using resource management. The three controls used are reservation where the minimum bounds are set, the limit where the maximum upper bound on the allocation is set, and shares which proportionally allocate the resources according to the certain weight each VM has, and also depending on the reservation and upper bound limits. This is interesting because virtualization has been very successful; people are comfortable with putting multiple VM on one HOST without worrying about the performance of each VM on another. However the contention for I/O resources can suddenly lower a VM’s allocation; the available throughput can change with time, and adjustments to allocations must be made dynamically. mClock is a better alternate because it supports all controls in a single algorithm, handles variable and unknown capacity, and fast to compute. This is interesting because there is a limit control on VM allocation, it does not weaken as each VM gets added on, and mClock reservations are met.&lt;br /&gt;
&lt;br /&gt;
: more about mclock here&lt;br /&gt;
&lt;br /&gt;
mClock is a resource-allocation algorithm that helps hypervisors manage I/O requests from multiple virtual machines simultaneously. Essentially, mClock dynamically adjusts the proportions of resources each VM receives based on how active each VM currently is. While mClock constantly changes the physical resource allocation to each VM, it lets each VM hold onto the illusion that it has full control of all system resources. As a result, performance can be increased for VMs that need it, without letting the others know that “their” resources are being distributed to other machines.&lt;br /&gt;
&lt;br /&gt;
==Research problem==&lt;br /&gt;
We use today, a very primitive kind of IO resource allocation in modern hypervisors.   Currently an algorithm called PARDA (Proportional Allocation of Resources in Distributed storage Access) &amp;lt;sup&amp;gt;[[#Foot1|1]]&amp;lt;/sup&amp;gt; is used to allocate IO resources to each VM running on a particular storage device. Unfortunately, the IO resource allocation algorithm of the hosts use a fair-scheduler called SFQ &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt;. What this means is that PARDA allocates IO resources to VMs proportional to the number of IO shares on the host, but each host uses a fair scheduler which divides the IO shares amongst the VMs equally. This leads to the problem that whenever another VM is added or another background application is run on one of the VMs, all the other VMs suffer a huge performance lose.  In the case of adding another VM, there is a 40% performance drop. This is completely unacceptable when applications have minimum performance requirements to run effectively. An application with minimum resource requirements can be running fine on any given VM, but as soon as the load on the shared storage device increases, the application would run poorly, or could potentially crash.&lt;br /&gt;
&lt;br /&gt;
==Contribution==&lt;br /&gt;
This paper addresses the current limitations of IO resource allocation for hypervisors. The paper has proposed a new and more efficient algorithm to allocate IO resources. Older methods were limited solely by providing proportional shares. mClock incorporates proportional shares, as well as a minimum reservation of IO resources, and a maximum reservation.&lt;br /&gt;
&lt;br /&gt;
Older methods of IO resource allocation had a terrible performance lose. Whenever the load on the shared storage device was increased, or when another VM was added, the performance of all hosts would drop considerably. Older methods provided unreliable IO management of hypervisors&lt;br /&gt;
&lt;br /&gt;
mClock was able to present VMs with a guaranteed minimum reservation of IO resources. This means that application performance will never drop below a certain point. This provides much better application stability on each of the VMs, and better overall performance.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;dmClock (used for cluster-based storage systems) runs a modified version of mClock at each server. There is only one modification to the algorithm to account for the distributed model in the Tag-Assignment component.&amp;quot; - from the paper&lt;br /&gt;
&lt;br /&gt;
==Critique==&lt;br /&gt;
The article introduces a mClock algorithm which handles multiple VM in a variable throughput environment. The Quality of Service (QoS) requirements for a VM are expressed as a minimum reservation, a maximum limit, and a proportional share. mClock is able to meet those controls in varying capacity. the good thing about this is that the algorithms proves efficient in clustered architectures. Moreover, mClock provides greater isolation between VMs.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In this paper there were many terms that were used but never explained, such as orders (used in the graphs), LUN, PARDA, etc. Also i did not like the way the calcualtions were written in sentences, &amp;quot;For a small reference IO size of 8KB and using typical values for mechanical delay T&amp;lt;sub&amp;gt;m&amp;lt;/sub&amp;gt; = 5ms and peak transfer rate, B&amp;lt;sub&amp;gt;peak&amp;lt;/sub&amp;gt; = 60 MB/s, the numerator = Lat&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;*(1 + 8/300) &amp;amp;asymp; Lat&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;&amp;quot;. To me this was very messy and made me skip through the calculations part of the sentence.&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot1&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; A. Gulati, I. Ahmad, and C. Waldspurger. PARDA: Proportional&lt;br /&gt;
Allocation of Resources in Distributed Storage&lt;br /&gt;
Access. In (FAST ’09) Proceedings of the Seventh Usenix&lt;br /&gt;
Conference on File and Storage Technologies, Feb 2009.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot2&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; W. Jin, J. S. Chase, and J. Kaur. Interposed proportional&lt;br /&gt;
sharing for a storage service utility. In ACM SIGMET-&lt;br /&gt;
RICS, 2004.&amp;lt;/span&amp;gt;&lt;/div&gt;</summary>
		<author><name>Dagar</name></author>
	</entry>
	<entry>
		<id>https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=5846</id>
		<title>COMP 3000 Essay 2 2010 Question 10</title>
		<link rel="alternate" type="text/html" href="https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=5846"/>
		<updated>2010-11-30T22:49:36Z</updated>

		<summary type="html">&lt;p&gt;Dagar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;mClock: Handling Throughput Variability for Hypervisor IO Scheduling&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Paper==&lt;br /&gt;
&lt;br /&gt;
[http://www.usenix.org/events/osdi10/tech/full_papers/Gulati.pdf mClock: Handling Throughput Variability for Hypervisor IO Scheduling]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Authors&#039;&#039;&#039;: &lt;br /&gt;
&lt;br /&gt;
: Ajay Gulati VMware Inc. Palo Alto, CA, 94304 agulati@vmware.com&lt;br /&gt;
&lt;br /&gt;
: Arif Merchant HP Labs Palo Alto, CA 94304 arif.merchant@acm.org&lt;br /&gt;
&lt;br /&gt;
: Peter J. Varman Rice University Houston, TX, 77005 pjv@rice.edu&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Background Concepts==&lt;br /&gt;
Hypervisors are responsible for multiplexing hardware resources between virtual machines while providing isolation to an extent, using resource management. The three controls used are reservation where the minimum bounds are set, the limit where the maximum upper bound on the allocation is set, and shares which proportionally allocate the resources according to the certain weight each VM has, and also depending on the reservation and upper bound limits. This is interesting because virtualization has been very successful; people are comfortable with putting multiple VM on one HOST without worrying about the performance of each VM on another. However the contention for I/O resources can suddenly lower a VM’s allocation; the available throughput can change with time, and adjustments to allocations must be made dynamically. mClock is a better alternate because it supports all controls in a single algorithm, handles variable and unknown capacity, and fast to compute. This is interesting because there is a limit control on VM allocation, it does not weaken as each VM gets added on, and mClock reservations are met.&lt;br /&gt;
&lt;br /&gt;
: more about mclock here&lt;br /&gt;
&lt;br /&gt;
mClock is a resource-allocation algorithm that helps hypervisors manage I/O requests from multiple virtual machines simultaneously. Essentially, mClock dynamically adjusts the proportions of resources each VM receives based on how active each VM currently is. While mClock constantly changes the physical resource allocation to each VM, it lets each VM hold onto the illusion that it has full control of all system resources. As a result, performance can be increased for VMs that need it, without letting the others know that “their” resources are being distributed to other machines.&lt;br /&gt;
&lt;br /&gt;
==Research problem==&lt;br /&gt;
We use today, a very primitive kind of IO resource allocation in modern hypervisors.   Currently an algorithm called PARDA &amp;lt;sup&amp;gt;[[#Foot1|1]]&amp;lt;/sup&amp;gt; is used to allocate IO resources to each VM running on a particular storage device. Unfortunately, the IO resource allocation algorithm of the hosts use a fair-scheduler called SFQ &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt;. What this means is that PARDA allocates IO resources to VMs proportional to the number of IO shares on the host, but each host uses a fair scheduler which divides the IO shares amongst the VMs equally. This leads to the problem that whenever another VM is added or another background application is run on one of the VMs, all the other VMs suffer a huge performance lose.  In the case of adding another VM, there is a 40% performance drop. This is completely unacceptable when applications have minimum performance requirements to run effectively. An application with minimum resource requirements can be running fine on any given VM, but as soon as the load on the shared storage device increases, the application would run poorly, or could potentially crash.&lt;br /&gt;
&lt;br /&gt;
==Contribution==&lt;br /&gt;
This paper addresses the current limitations of IO resource allocation for hypervisors. The paper has proposed a new and more efficient algorithm to allocate IO resources. Older methods were limited solely by providing proportional shares. mClock incorporates proportional shares, as well as a minimum reservation of IO resources, and a maximum reservation.&lt;br /&gt;
&lt;br /&gt;
Older methods of IO resource allocation had a terrible performance lose. Whenever the load on the shared storage device was increased, or when another VM was added, the performance of all hosts would drop considerably. Older methods provided unreliable IO management of hypervisors.&lt;br /&gt;
&lt;br /&gt;
mClock was able to present VMs with a guaranteed minimum reservation of IO resources. This means that application performance will never drop below a certain point. This provides much better application stability on each of the VMs, and better overall performance.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;dmClock (used for cluster-based storage systems) runs a modified version of mClock at each server. There is only one modification to the algorithm to account for the distributed model in the Tag-Assignment component.&amp;quot; - from the paper&lt;br /&gt;
&lt;br /&gt;
==Critique==&lt;br /&gt;
The article introduces a mClock algorithm which handles multiple VM in a variable throughput environment. The Quality of Service (QoS) requirements for a VM are expressed as a minimum reservation, a maximum limit, and a proportional share. mClock is able to meet those controls in varying capacity. the good thing about this is that the algorithms proves efficient in clustered architectures. Moreover, mClock provides greater isolation between VMs.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In this paper there were many terms that were used but never explained, such as orders (used in the graphs), LUN, PARDA, etc. Also i did not like the way the calcualtions were written in sentences, &amp;quot;For a small reference IO size of 8KB and using typical values for mechanical delay T&amp;lt;sub&amp;gt;m&amp;lt;/sub&amp;gt; = 5ms and peak transfer rate, B&amp;lt;sub&amp;gt;peak&amp;lt;/sub&amp;gt; = 60 MB/s, the numerator = Lat&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;*(1 + 8/300) &amp;amp;asymp; Lat&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;&amp;quot;. To me this was very messy and made me skip through the calculations part of the sentence.&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot1&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; A. Gulati, I. Ahmad, and C. Waldspurger. PARDA: Proportional&lt;br /&gt;
Allocation of Resources in Distributed Storage&lt;br /&gt;
Access. In (FAST ’09) Proceedings of the Seventh Usenix&lt;br /&gt;
Conference on File and Storage Technologies, Feb 2009.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot2&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; W. Jin, J. S. Chase, and J. Kaur. Interposed proportional&lt;br /&gt;
sharing for a storage service utility. In ACM SIGMET-&lt;br /&gt;
RICS, 2004.&amp;lt;/span&amp;gt;&lt;/div&gt;</summary>
		<author><name>Dagar</name></author>
	</entry>
	<entry>
		<id>https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=5844</id>
		<title>COMP 3000 Essay 2 2010 Question 10</title>
		<link rel="alternate" type="text/html" href="https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=5844"/>
		<updated>2010-11-30T22:47:58Z</updated>

		<summary type="html">&lt;p&gt;Dagar: references with footnotes&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Paper==&lt;br /&gt;
&lt;br /&gt;
[http://www.usenix.org/events/osdi10/tech/full_papers/Gulati.pdf mClock: Handling Throughput Variability for Hypervisor IO Scheduling]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Authors&#039;&#039;&#039;: &lt;br /&gt;
&lt;br /&gt;
: Ajay Gulati VMware Inc. Palo Alto, CA, 94304 agulati@vmware.com&lt;br /&gt;
&lt;br /&gt;
: Arif Merchant HP Labs Palo Alto, CA 94304 arif.merchant@acm.org&lt;br /&gt;
&lt;br /&gt;
: Peter J. Varman Rice University Houston, TX, 77005 pjv@rice.edu&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Background Concepts==&lt;br /&gt;
Hypervisors are responsible for multiplexing hardware resources between virtual machines while providing isolation to an extent, using resource management. The three controls used are reservation where the minimum bounds are set, the limit where the maximum upper bound on the allocation is set, and shares which proportionally allocate the resources according to the certain weight each VM has, and also depending on the reservation and upper bound limits. This is interesting because virtualization has been very successful; people are comfortable with putting multiple VM on one HOST without worrying about the performance of each VM on another. However the contention for I/O resources can suddenly lower a VM’s allocation; the available throughput can change with time, and adjustments to allocations must be made dynamically. mClock is a better alternate because it supports all controls in a single algorithm, handles variable and unknown capacity, and fast to compute. This is interesting because there is a limit control on VM allocation, it does not weaken as each VM gets added on, and mClock reservations are met.&lt;br /&gt;
&lt;br /&gt;
: more about mclock here&lt;br /&gt;
&lt;br /&gt;
mClock is a resource-allocation algorithm that helps hypervisors manage I/O requests from multiple virtual machines simultaneously. Essentially, mClock dynamically adjusts the proportions of resources each VM receives based on how active each VM currently is. While mClock constantly changes the physical resource allocation to each VM, it lets each VM hold onto the illusion that it has full control of all system resources. As a result, performance can be increased for VMs that need it, without letting the others know that “their” resources are being distributed to other machines.&lt;br /&gt;
&lt;br /&gt;
==Research problem==&lt;br /&gt;
We use today, a very primitive kind of IO resource allocation in modern hypervisors.   Currently an algorithm called PARDA &amp;lt;sup&amp;gt;[[#Foot1|1]]&amp;lt;/sup&amp;gt; is used to allocate IO resources to each VM running on a particular storage device. Unfortunately, the IO resource allocation algorithm of the hosts use a fair-scheduler called SFQ &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt;. What this means is that PARDA allocates IO resources to VMs proportional to the number of IO shares on the host, but each host uses a fair scheduler which divides the IO shares amongst the VMs equally. This leads to the problem that whenever another VM is added or another background application is run on one of the VMs, all the other VMs suffer a huge performance lose.  In the case of adding another VM, there is a 40% performance drop. This is completely unacceptable when applications have minimum performance requirements to run effectively. An application with minimum resource requirements can be running fine on any given VM, but as soon as the load on the shared storage device increases, the application would run poorly, or could potentially crash.&lt;br /&gt;
&lt;br /&gt;
==Contribution==&lt;br /&gt;
This paper addresses the current limitations of IO resource allocation for hypervisors. The paper has proposed a new and more efficient algorithm to allocate IO resources. Older methods were limited solely by providing proportional shares. mClock incorporates proportional shares, as well as a minimum reservation of IO resources, and a maximum reservation.&lt;br /&gt;
&lt;br /&gt;
Older methods of IO resource allocation had a terrible performance lose. Whenever the load on the shared storage device was increased, or when another VM was added, the performance of all hosts would drop considerably. Older methods provided unreliable IO management of hypervisors.&lt;br /&gt;
&lt;br /&gt;
mClock was able to present VMs with a guaranteed minimum reservation of IO resources. This means that application performance will never drop below a certain point. This provides much better application stability on each of the VMs, and better overall performance.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;dmClock (used for cluster-based storage systems) runs a modified version of mClock at each server. There is only one modification to the algorithm to account for the distributed model in the Tag-Assignment component.&amp;quot; - from the paper&lt;br /&gt;
&lt;br /&gt;
==Critique==&lt;br /&gt;
The article introduces a mClock algorithm which handles multiple VM in a variable throughput environment. The Quality of Service (QoS) requirements for a VM are expressed as a minimum reservation, a maximum limit, and a proportional share. mClock is able to meet those controls in varying capacity. the good thing about this is that the algorithms proves efficient in clustered architectures. Moreover, mClock provides greater isolation between VMs.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In this paper there were many terms that were used but never explained, such as orders (used in the graphs), LUN, PARDA, etc. Also i did not like the way the calcualtions were written in sentences, &amp;quot;For a small reference IO size of 8KB and using typical values for mechanical delay T&amp;lt;sub&amp;gt;m&amp;lt;/sub&amp;gt; = 5ms and peak transfer rate, B&amp;lt;sub&amp;gt;peak&amp;lt;/sub&amp;gt; = 60 MB/s, the numerator = Lat&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;*(1 + 8/300) &amp;amp;asymp; Lat&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;&amp;quot;. To me this was very messy and made me skip through the calculations part of the sentence.&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot1&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; A. Gulati, I. Ahmad, and C. Waldspurger. PARDA: Proportional&lt;br /&gt;
Allocation of Resources in Distributed Storage&lt;br /&gt;
Access. In (FAST ’09) Proceedings of the Seventh Usenix&lt;br /&gt;
Conference on File and Storage Technologies, Feb 2009.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot2&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; W. Jin, J. S. Chase, and J. Kaur. Interposed proportional&lt;br /&gt;
sharing for a storage service utility. In ACM SIGMET-&lt;br /&gt;
RICS, 2004.&amp;lt;/span&amp;gt;&lt;/div&gt;</summary>
		<author><name>Dagar</name></author>
	</entry>
	<entry>
		<id>https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=5841</id>
		<title>COMP 3000 Essay 2 2010 Question 10</title>
		<link rel="alternate" type="text/html" href="https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=5841"/>
		<updated>2010-11-30T22:45:34Z</updated>

		<summary type="html">&lt;p&gt;Dagar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Paper==&lt;br /&gt;
&lt;br /&gt;
[http://www.usenix.org/events/osdi10/tech/full_papers/Gulati.pdf mClock: Handling Throughput Variability for Hypervisor IO Scheduling]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Authors&#039;&#039;&#039;: &lt;br /&gt;
&lt;br /&gt;
: Ajay Gulati VMware Inc. Palo Alto, CA, 94304 agulati@vmware.com&lt;br /&gt;
&lt;br /&gt;
: Arif Merchant HP Labs Palo Alto, CA 94304 arif.merchant@acm.org&lt;br /&gt;
&lt;br /&gt;
: Peter J. Varman Rice University Houston, TX, 77005 pjv@rice.edu&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Background Concepts==&lt;br /&gt;
Hypervisors are responsible for multiplexing hardware resources between virtual machines while providing isolation to an extent, using resource management. The three controls used are reservation where the minimum bounds are set, the limit where the maximum upper bound on the allocation is set, and shares which proportionally allocate the resources according to the certain weight each VM has, and also depending on the reservation and upper bound limits. This is interesting because virtualization has been very successful; people are comfortable with putting multiple VM on one HOST without worrying about the performance of each VM on another. However the contention for I/O resources can suddenly lower a VM’s allocation; the available throughput can change with time, and adjustments to allocations must be made dynamically. mClock is a better alternate because it supports all controls in a single algorithm, handles variable and unknown capacity, and fast to compute. This is interesting because there is a limit control on VM allocation, it does not weaken as each VM gets added on, and mClock reservations are met.&lt;br /&gt;
&lt;br /&gt;
: more about mclock here&lt;br /&gt;
&lt;br /&gt;
mClock is a resource-allocation algorithm that helps hypervisors manage I/O requests from multiple virtual machines simultaneously. Essentially, mClock dynamically adjusts the proportions of resources each VM receives based on how active each VM currently is. While mClock constantly changes the physical resource allocation to each VM, it lets each VM hold onto the illusion that it has full control of all system resources. As a result, performance can be increased for VMs that need it, without letting the others know that “their” resources are being distributed to other machines.&lt;br /&gt;
&lt;br /&gt;
==Research problem==&lt;br /&gt;
We use today, a very primitive kind of IO resource allocation in modern hypervisors.   Currently an algorithm called PARDA [1] is used to allocate IO resources to each VM running on a particular storage device. Unfortunately, the IO resource allocation algorithm of the hosts use a fair-scheduler called SFQ [2]. What this means is that PARDA allocates IO resources to VMs proportional to the number of IO shares on the host, but each host uses a fair scheduler which divides the IO shares amongst the VMs equally. This leads to the problem that whenever another VM is added or another background application is run on one of the VMs, all the other VMs suffer a huge performance lose.  In the case of adding another VM, there is a 40% performance drop. This is completely unacceptable when applications have minimum performance requirements to run effectively. An application with minimum resource requirements can be running fine on any given VM, but as soon as the load on the shared storage device increases, the application would run poorly, or could potentially crash.&lt;br /&gt;
&lt;br /&gt;
==Contribution==&lt;br /&gt;
This paper addresses the current limitations of IO resource allocation for hypervisors. The paper has proposed a new and more efficient algorithm to allocate IO resources. Older methods were limited solely by providing proportional shares. mClock incorporates proportional shares, as well as a minimum reservation of IO resources, and a maximum reservation.&lt;br /&gt;
&lt;br /&gt;
Older methods of IO resource allocation had a terrible performance lose. Whenever the load on the shared storage device was increased, or when another VM was added, the performance of all hosts would drop considerably. Older methods provided unreliable IO management of hypervisors.&lt;br /&gt;
&lt;br /&gt;
mClock was able to present VMs with a guaranteed minimum reservation of IO resources. This means that application performance will never drop below a certain point. This provides much better application stability on each of the VMs, and better overall performance.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;dmClock (used for cluster-based storage systems) runs a modified version of mClock at each server. There is only one modification to the algorithm to account for the distributed model in the Tag-Assignment component.&amp;quot; - from the paper&lt;br /&gt;
&lt;br /&gt;
==Critique==&lt;br /&gt;
The article introduces a mClock algorithm which handles multiple VM in a variable throughput environment. The Quality of Service (QoS) requirements for a VM are expressed as a minimum reservation, a maximum limit, and a proportional share. mClock is able to meet those controls in varying capacity. the good thing about this is that the algorithms proves efficient in clustered architectures. Moreover, mClock provides greater isolation between VMs.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In this paper there were many terms that were used but never explained, such as orders (used in the graphs), LUN, PARDA, etc. Also i did not like the way the calcualtions were written in sentences, &amp;quot;For a small reference IO size of 8KB and using typical values for mechanical delay T&amp;lt;sub&amp;gt;m&amp;lt;/sub&amp;gt; = 5ms and peak transfer rate, B&amp;lt;sub&amp;gt;peak&amp;lt;/sub&amp;gt; = 60 MB/s, the numerator = Lat&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;*(1 + 8/300) &amp;amp;asymp; Lat&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;&amp;quot;. To me this was very messy and made me skip through the calculations part of the sentence.&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot1&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; A. Gulati, I. Ahmad, and C. Waldspurger. PARDA: Proportional&lt;br /&gt;
Allocation of Resources in Distributed Storage&lt;br /&gt;
Access. In (FAST ’09) Proceedings of the Seventh Usenix&lt;br /&gt;
Conference on File and Storage Technologies, Feb 2009.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot2&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; W. Jin, J. S. Chase, and J. Kaur. Interposed proportional&lt;br /&gt;
sharing for a storage service utility. In ACM SIGMET-&lt;br /&gt;
RICS, 2004.&amp;lt;/span&amp;gt;&lt;/div&gt;</summary>
		<author><name>Dagar</name></author>
	</entry>
	<entry>
		<id>https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=5840</id>
		<title>COMP 3000 Essay 2 2010 Question 10</title>
		<link rel="alternate" type="text/html" href="https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=5840"/>
		<updated>2010-11-30T22:43:05Z</updated>

		<summary type="html">&lt;p&gt;Dagar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Paper==&lt;br /&gt;
&lt;br /&gt;
[http://www.usenix.org/events/osdi10/tech/full_papers/Gulati.pdf mClock: Handling Throughput Variability for Hypervisor IO Scheduling]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Authors&#039;&#039;&#039;: &lt;br /&gt;
&lt;br /&gt;
: Ajay Gulati VMware Inc. Palo Alto, CA, 94304 agulati@vmware.com&lt;br /&gt;
&lt;br /&gt;
: Arif Merchant HP Labs Palo Alto, CA 94304 arif.merchant@acm.org&lt;br /&gt;
&lt;br /&gt;
: Peter J. Varman Rice University Houston, TX, 77005 pjv@rice.edu&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Background Concepts==&lt;br /&gt;
Hypervisors are responsible for multiplexing hardware resources between virtual machines while providing isolation to an extent, using resource management. The three controls used are reservation where the minimum bounds are set, the limit where the maximum upper bound on the allocation is set, and shares which proportionally allocate the resources according to the certain weight each VM has, and also depending on the reservation and upper bound limits. This is interesting because virtualization has been very successful; people are comfortable with putting multiple VM on one HOST without worrying about the performance of each VM on another. However the contention for I/O resources can suddenly lower a VM’s allocation; the available throughput can change with time, and adjustments to allocations must be made dynamically. mClock is a better alternate because it supports all controls in a single algorithm, handles variable and unknown capacity, and fast to compute. This is interesting because there is a limit control on VM allocation, it does not weaken as each VM gets added on, and mClock reservations are met.&lt;br /&gt;
&lt;br /&gt;
: more about mclock here&lt;br /&gt;
&lt;br /&gt;
mClock is a resource-allocation algorithm that helps hypervisors manage I/O requests from multiple virtual machines simultaneously. Essentially, mClock dynamically adjusts the proportions of resources each VM receives based on how active each VM currently is. While mClock constantly changes the physical resource allocation to each VM, it lets each VM hold onto the illusion that it has full control of all system resources. As a result, performance can be increased for VMs that need it, without letting the others know that “their” resources are being distributed to other machines.&lt;br /&gt;
&lt;br /&gt;
==Research problem==&lt;br /&gt;
We use today, a very primitive kind of IO resource allocation in modern hypervisors.   Currently an algorithm called PARDA [1] is used to allocate IO resources to each VM running on a particular storage device. Unfortunately, the IO resource allocation algorithm of the hosts use a fair-scheduler called SFQ [2]. What this means is that PARDA allocates IO resources to VMs proportional to the number of IO shares on the host, but each host uses a fair scheduler which divides the IO shares amongst the VMs equally. This leads to the problem that whenever another VM is added or another background application is run on one of the VMs, all the other VMs suffer a huge performance lose.  In the case of adding another VM, there is a 40% performance drop. This is completely unacceptable when applications have minimum performance requirements to run effectively. An application with minimum resource requirements can be running fine on any given VM, but as soon as the load on the shared storage device increases, the application would run poorly, or could potentially crash.&lt;br /&gt;
&lt;br /&gt;
==Contribution==&lt;br /&gt;
This paper addresses the current limitations of IO resource allocation for hypervisors. The paper has proposed a new and more efficient algorithm to allocate IO resources. Older methods were limited solely by providing proportional shares. mClock incorporates proportional shares, as well as a minimum reservation of IO resources, and a maximum reservation.&lt;br /&gt;
&lt;br /&gt;
Older methods of IO resource allocation had a terrible performance lose. Whenever the load on the shared storage device was increased, or when another VM was added, the performance of all hosts would drop considerably. Older methods provided unreliable IO management of hypervisors.&lt;br /&gt;
&lt;br /&gt;
mClock was able to present VMs with a guaranteed minimum reservation of IO resources. This means that application performance will never drop below a certain point. This provides much better application stability on each of the VMs, and better overall performance.&lt;br /&gt;
&lt;br /&gt;
: - &amp;quot;dmClock (used for cluster-based storage systems) runs a modified version of mClock at each server. There is only one modification to the algorithm to account for the distributed model in the Tag-Assignment component.&amp;quot; - from the paper&lt;br /&gt;
&lt;br /&gt;
==Critique==&lt;br /&gt;
The article introduces a mClock algorithm which handles multiple VM in a variable throughput environment. The Quality of Service (QoS) requirements for a VM are expressed as a minimum reservation, a maximum limit, and a proportional share. mClock is able to meet those controls in varying capacity. the good thing about this is that the algorithms proves efficient in clustered architectures. Moreover, mClock provides greater isolation between VMs.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In this paper there were many terms that were used but never explained, such as orders (used in the graphs), LUN, PARDA, etc. Also i did not like the way the calcualtions were written in sentences, &amp;quot;For a small reference IO size of 8KB and using typical values for mechanical delay T&amp;lt;sub&amp;gt;m&amp;lt;/sub&amp;gt; = 5ms and peak transfer rate, B&amp;lt;sub&amp;gt;peak&amp;lt;/sub&amp;gt; = 60 MB/s, the numerator = Lat&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;*(1 + 8/300) &amp;amp;asymp; Lat&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;&amp;quot;. To me this was very messy and made me skip through the calculations part of the sentence.&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot1&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; A. Gulati, I. Ahmad, and C. Waldspurger. PARDA: Proportional&lt;br /&gt;
Allocation of Resources in Distributed Storage&lt;br /&gt;
Access. In (FAST ’09) Proceedings of the Seventh Usenix&lt;br /&gt;
Conference on File and Storage Technologies, Feb 2009.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot2&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; W. Jin, J. S. Chase, and J. Kaur. Interposed proportional&lt;br /&gt;
sharing for a storage service utility. In ACM SIGMET-&lt;br /&gt;
RICS, 2004.&amp;lt;/span&amp;gt;&lt;/div&gt;</summary>
		<author><name>Dagar</name></author>
	</entry>
	<entry>
		<id>https://homeostasis.scs.carleton.ca/wiki/index.php?title=Talk:COMP_3000_Essay_2_2010_Question_10&amp;diff=5836</id>
		<title>Talk:COMP 3000 Essay 2 2010 Question 10</title>
		<link rel="alternate" type="text/html" href="https://homeostasis.scs.carleton.ca/wiki/index.php?title=Talk:COMP_3000_Essay_2_2010_Question_10&amp;diff=5836"/>
		<updated>2010-11-30T22:37:48Z</updated>

		<summary type="html">&lt;p&gt;Dagar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;mClock: Handling Throughput Variability for Hypervisor IO Scheduling&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=Notes to Group=&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;We might as well work directly on the main page&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=Group Members=&lt;br /&gt;
Please leave your name and email address if you are in the group&lt;br /&gt;
&lt;br /&gt;
*[[User:Dagar|Daniel Agar]] - dagar@scs.carleton.ca&lt;br /&gt;
*[[User:xchen6|Xi Chen]] - xintai1985@gmail.com&lt;br /&gt;
*[[User:npatel1|Niravkumar Patel]] - npatel1@connect.carleton.ca&lt;br /&gt;
*[[User:tpham3|Tuan Pham]] - tpham3@connect.carleton.ca&lt;br /&gt;
*[[User:aellebla|Aaron Leblanc]] - aellebla@connect.carleton.ca&lt;br /&gt;
*[[User:naseido|Nisrin Abou-Seido]] - naseido@connect.carleton.ca&lt;br /&gt;
&lt;br /&gt;
=Layout=&lt;br /&gt;
==Paper==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Authors&#039;&#039;&#039;: &lt;br /&gt;
&lt;br /&gt;
: Ajay Gulati VMware Inc. Palo Alto, CA, 94304 agulati@vmware.com&lt;br /&gt;
&lt;br /&gt;
: Arif Merchant HP Labs Palo Alto, CA 94304 arif.merchant@acm.org&lt;br /&gt;
&lt;br /&gt;
: Peter J. Varman Rice University Houston, TX, 77005 pjv@rice.edu&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Link to the paper&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
[http://www.usenix.org/events/osdi10/tech/full_papers/Gulati.pdf mClock: Handling Throughput Variability for Hypervisor IO Scheduling]&lt;br /&gt;
&lt;br /&gt;
==Background Concepts==&lt;br /&gt;
: Explain briefly the background concepts and ideas that your fellow classmates will need to know first in order to understand your assigned paper.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
: Hypervisors are responsible for multiplexing hardware resources between virtual machines while providing isolation to an extent, using resource management. The three controls used are reservation where the minimum bounds are set, the limit where the maximum upper bound on the allocation is set, and shares which proportionally allocate the resources according to the certain weight each VM has, and also depending on the reservation and upper bound limits. This is interesting because virtualization has been very successful; people are comfortable with putting multiple VM on one HOST without worrying about the performance of each VM on another. However the contention for I/O resources can suddenly lower a VM’s allocation; the available throughput can change with time, and adjustments to allocations must be made dynamically. mClock is a better alternate because it supports all controls in a single algorithm, handles variable and unknown capacity, and fast to compute. This is interesting because there is a limit control on VM allocation, it does not weaken as each VM gets added on, and mClock reservations are met. [[User:npatel1|Niravkumar Patel]]&lt;br /&gt;
&lt;br /&gt;
: more about mclock here&lt;br /&gt;
&lt;br /&gt;
: mClock is a resource-allocation algorithm that helps hypervisors manage I/O requests from multiple virtual machines simultaneously. Essentially, mClock dynamically adjusts the proportions of resources each VM receives based on how active each VM currently is. While mClock constantly changes the physical resource allocation to each VM, it lets each VM hold onto the illusion that it has full control of all system resources. As a result, performance can be increased for VMs that need it, without letting the others know that “their” resources are being distributed to other machines. [[User:npatel1|Niravkumar Patel]]&lt;br /&gt;
&lt;br /&gt;
==Research problem==&lt;br /&gt;
:  What is the research problem being addressed by the paper?  How does this problem relate to past related work?&lt;br /&gt;
&lt;br /&gt;
: We use today, a very primitive kind of IO resource allocation in modern hypervisors.   Currently an algorithm called PARDA [1] is used to allocate IO resources to each VM running on a particular storage device. Unfortunately, the IO resource allocation algorithm of the hosts use a fair-scheduler called SFQ [2]. What this means is that PARDA allocates IO resources to VMs proportional to the number of IO shares on the host, but each host uses a fair scheduler which divides the IO shares amongst the VMs equally. This leads to the problem that whenever another VM is added or another background application is run on one of the VMs, all the other VMs suffer a huge performance lose.  In the case of adding another VM, there is a 40% performance drop. This is completely unacceptable when applications have minimum performance requirements to run effectively. An application with minimum resource requirements can be running fine on any given VM, but as soon as the load on the shared storage device increases, the application would run poorly, or could potentially crash.--[[User:Aellebla|Aaron Leblanc]] 21:30, 30 November 2010 (UTC)&lt;br /&gt;
&lt;br /&gt;
==Contribution==&lt;br /&gt;
: What are the research contribution(s) of this work?  Specifically, what are the key research results, and what do they mean?  (What was implemented?  Why is it any better than what came before?)&lt;br /&gt;
&lt;br /&gt;
: This paper addresses the current limitations of IO resource allocation for hypervisors. The paper has proposed a new and more efficient algorithm to allocate IO resources. Older methods were limited solely by providing proportional shares. mClock incorporates proportional shares, as well as a minimum reservation of IO resources, and a maximum reservation. --[[User:Aellebla|Aaron Leblanc]] 22:08, 30 November 2010 (UTC)&lt;br /&gt;
&lt;br /&gt;
: Older methods of IO resource allocation had a terrible performance lose whenever a background process was initiated on a VM, or whenever another VM was added. More specifically whenever the load on the shared storage device was increased. Older methods provided unreliable IO management of hypervisors. --[[User:Aellebla|Aaron Leblanc]] 22:19, 30 November 2010 (UTC)&lt;br /&gt;
&lt;br /&gt;
: mClock was able to present VMs with a guaranteed minimum reservation of IO resources. This means that application performance will never drop below a certain point. This provides much better application stability on each of the VMs, and better overall performance. --[[User:Aellebla|Aaron Leblanc]] 22:31, 30 November 2010 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
: - &amp;quot;dmClock (used for cluster-based storage systems) runs a modified version of mClock at each server. There is only one modification to the algorithm to account for the distributed model in the Tag-Assignment component.&amp;quot; - from the paper [[User:tpham3|Tuan Pham]]&lt;br /&gt;
&lt;br /&gt;
==Critique==&lt;br /&gt;
: What is good and not-so-good about this paper?  You may discuss both the style and content; be sure to ground your discussion with specific references.  Simple assertions that something is good or bad is not enough - you must explain why.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
: The article introduces a mClock algorithm which handles multiple VM in a variable throughput environment. The Quality of Service (QoS) requirements for a VM are expressed as a minimum reservation, a maximum limit, and a proportional share. mClock is able to meet those controls in varying capacity. the good thing about this is that the algorithms proves efficient in clustered architectures. Moreover, mClock provides greater isolation between VMs. [[User:npatel1|Niravkumar Patel]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
: In this paper there were many terms that were used but never explained, such as orders (used in the graphs), LUN, PARDA, etc. Also i did not like the way the calcualtions were written in sentences, &amp;quot;For a small reference IO size of 8KB and using typical values for mechanical delay T&amp;lt;sub&amp;gt;m&amp;lt;/sub&amp;gt; = 5ms and peak transfer rate, B&amp;lt;sub&amp;gt;peak&amp;lt;/sub&amp;gt; = 60 MB/s, the numerator = Lat&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;*(1 + 8/300) &amp;amp;asymp; Lat&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;&amp;quot;. To me this was very messy and made me skip through the calculations part of the sentence. [[User:tpham3|Tuan Pham]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
[1] A. Gulati, I. Ahmad, and C. Waldspurger. PARDA: Proportional&lt;br /&gt;
Allocation of Resources in Distributed Storage&lt;br /&gt;
Access. In (FAST ’09) Proceedings of the Seventh Usenix&lt;br /&gt;
Conference on File and Storage Technologies, Feb 2009.&lt;br /&gt;
&lt;br /&gt;
[2] W. Jin, J. S. Chase, and J. Kaur. Interposed proportional&lt;br /&gt;
sharing for a storage service utility. In ACM SIGMET-&lt;br /&gt;
RICS, 2004.&lt;/div&gt;</summary>
		<author><name>Dagar</name></author>
	</entry>
	<entry>
		<id>https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=5835</id>
		<title>COMP 3000 Essay 2 2010 Question 10</title>
		<link rel="alternate" type="text/html" href="https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=5835"/>
		<updated>2010-11-30T22:37:18Z</updated>

		<summary type="html">&lt;p&gt;Dagar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Paper==&lt;br /&gt;
&lt;br /&gt;
[http://www.usenix.org/events/osdi10/tech/full_papers/Gulati.pdf mClock: Handling Throughput Variability for Hypervisor IO Scheduling]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Authors&#039;&#039;&#039;: &lt;br /&gt;
&lt;br /&gt;
: Ajay Gulati VMware Inc. Palo Alto, CA, 94304 agulati@vmware.com&lt;br /&gt;
&lt;br /&gt;
: Arif Merchant HP Labs Palo Alto, CA 94304 arif.merchant@acm.org&lt;br /&gt;
&lt;br /&gt;
: Peter J. Varman Rice University Houston, TX, 77005 pjv@rice.edu&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Background Concepts==&lt;br /&gt;
Hypervisors are responsible for multiplexing hardware resources between virtual machines while providing isolation to an extent, using resource management. The three controls used are reservation where the minimum bounds are set, the limit where the maximum upperbound on the allocation is set, and shares which proportionally allocate the resources according to the certain weight each VM has, and also depending on the reservation and upperbound limits. This is interesting because virtualization has been very successful; people are comfortable with putting multiple VM on one HOST without worrying about the performance of each VM on another. However the contention for I/O resources can suddenly lower a VM’s allocation; the available throughput can change with time, and adjustments to allocations must be made dynamically. mClock is a better alternate because it supports all controls in a single algorithm, handles variable and unknown capacity, and fast to compute. This is interesting because there is a limit control on VM allocation, it does not weaken as each VM gets added on, and mClock reservations are met. [[User:npatel1|Niravkumar Patel]]&lt;br /&gt;
&lt;br /&gt;
: more about mclock here&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;mClock&#039;&#039;&#039; is a resource-allocation algorithm that helps hypervisors manage I/O requests from multiple virtual machines simultaneously. Essentially, mClock dynamically adjusts the proportions of resources each VM receives based on how active each VM currently is. While mClock constantly changes the physical resource allocation to each VM, it lets each VM hold onto the illusion that it has full control of all system resources. As a result, performance can be increased for VMs that need it, without letting the others know that “their” resources are being distributed to other machines. [[User:npatel1|Niravkumar Patel]]&lt;br /&gt;
&lt;br /&gt;
==Research problem==&lt;br /&gt;
We use today, a very primitive kind of IO resource allocation in modern hypervisors.   Currently a algorithm called PARDA &amp;lt;sup&amp;gt;[[#Foot1|1]]&amp;lt;/sup&amp;gt; is used to allocate IO resources to each VM running on a particular storage device. Unfortunately, the IO resource allocation algorithm of the hosts use a fair-scheduler called SFQ &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt;. What this means is that PARDA allocates IO resources to VMs proportional to the number of IO shares on the host, but each host uses a fair scheduler which divides the IO shares amongst the VMs equally. This leads to the problem that whenever another VM is added or another background application is run on one of the VMs, all the other VMs suffer a huge performance lose.  In the case of adding another VM, there is a 40% performance drop. This is completely unacceptable when applications have minimum performance requirements to run effectively. An application with minimum resource requirements can be running fine on any given VM, but as soon as the load on the shared storage device increases, the application would run poorly, or could potentially crash.--[[User:Aellebla|Aaron Leblanc]] 21:30, 30 November 2010 (UTC)&lt;br /&gt;
&lt;br /&gt;
==Contribution==&lt;br /&gt;
This paper addresses the current limitations of IO resource allocation for hypervisors. The paper has proposed a new and more efficient algorithm to allocate IO resources. Older methods were limited solely by providing proportional shares. mClock incorporates proportional shares, as well as a minimum reservation of IO resources, and a maximum reservation. --[[User:Aellebla|Aaron Leblanc]] 22:08, 30 November 2010 (UTC)&lt;br /&gt;
&lt;br /&gt;
mClock was able to present VMs with a guaranteed minimum reservation of IO resources. This means that application performance will never drop below a certain point. This provides much better application stability on each of the VMs, and better overall performance. --[[User:Aellebla|Aaron Leblanc]] 22:19, 30 November 2010 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
: - &amp;quot;dmClock (used for cluster-based storage systems) runs a modified version of mClock at each server. There is only one modification to the algorithm to account for the distributed model in the Tag-Assignment component.&amp;quot; - from the paper [[User:tpham3|Tuan Pham]]&lt;br /&gt;
&lt;br /&gt;
==Critique==&lt;br /&gt;
The article introduces a mClock algorithm which handles multiple VM in a variable throughput environment. The Quality of Service (QoS) requirements for a VM are expressed as a minimum reservation, a maximum limit, and a proportional share. mClock is able to meet those controls in varying capacity. the good thing about this is that the algorithms proves efficient in clustered architectures. Moreover, mClock provides greater isolation between VMs. [[User:npatel1|Niravkumar Patel]]&lt;br /&gt;
&lt;br /&gt;
In this paper there were many terms that were used but never explained, such as orders (used in the graphs), LUN, PARDA, etc. Also i did not like the way the calcualtions were written in sentences, &amp;quot;For a small reference IO size of 8KB and using typical values for mechanical delay T&amp;lt;sub&amp;gt;m&amp;lt;/sub&amp;gt; = 5ms and peak transfer rate, B&amp;lt;sub&amp;gt;peak&amp;lt;/sub&amp;gt; = 60 MB/s, the numerator = Lat&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;*(1 + 8/300) &amp;amp;asymp; Lat&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;&amp;quot;. To me this was very messy and made me skip through the calculations part of the sentence. [[User:tpham3|Tuan Pham]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot1&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; A. Gulati, I. Ahmad, and C. Waldspurger. PARDA: Proportional&lt;br /&gt;
Allocation of Resources in Distributed Storage&lt;br /&gt;
Access. In (FAST ’09) Proceedings of the Seventh Usenix&lt;br /&gt;
Conference on File and Storage Technologies, Feb 2009.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot2&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; W. Jin, J. S. Chase, and J. Kaur. Interposed proportional&lt;br /&gt;
sharing for a storage service utility. In ACM SIGMET-&lt;br /&gt;
RICS, 2004.&amp;lt;/span&amp;gt;&lt;/div&gt;</summary>
		<author><name>Dagar</name></author>
	</entry>
	<entry>
		<id>https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=5834</id>
		<title>COMP 3000 Essay 2 2010 Question 10</title>
		<link rel="alternate" type="text/html" href="https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=5834"/>
		<updated>2010-11-30T22:36:07Z</updated>

		<summary type="html">&lt;p&gt;Dagar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Paper==&lt;br /&gt;
&lt;br /&gt;
[http://www.usenix.org/events/osdi10/tech/full_papers/Gulati.pdf mClock: Handling Throughput Variability for Hypervisor IO Scheduling]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Authors&#039;&#039;&#039;: &lt;br /&gt;
&lt;br /&gt;
: Ajay Gulati VMware Inc. Palo Alto, CA, 94304 agulati@vmware.com&lt;br /&gt;
&lt;br /&gt;
: Arif Merchant HP Labs Palo Alto, CA 94304 arif.merchant@acm.org&lt;br /&gt;
&lt;br /&gt;
: Peter J. Varman Rice University Houston, TX, 77005 pjv@rice.edu&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Background Concepts==&lt;br /&gt;
: Explain briefly the background concepts and ideas that your fellow classmates will need to know first in order to understand your assigned paper.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
: Hypervisors are responsible for multiplexing hardware resources between virtual machines while providing isolation to an extent, using resource management. The three controls used are reservation where the minimum bounds are set, the limit where the maximum upperbound on the allocation is set, and shares which proportionally allocate the resources according to the certain weight each VM has, and also depending on the reservation and upperbound limits. This is interesting because virtualization has been very successful; people are comfortable with putting multiple VM on one HOST without worrying about the performance of each VM on another. However the contention for I/O resources can suddenly lower a VM’s allocation; the available throughput can change with time, and adjustments to allocations must be made dynamically. mClock is a better alternate because it supports all controls in a single algorithm, handles variable and unknown capacity, and fast to compute. This is interesting because there is a limit control on VM allocation, it does not weaken as each VM gets added on, and mClock reservations are met. [[User:npatel1|Niravkumar Patel]]&lt;br /&gt;
&lt;br /&gt;
: more about mclock here&lt;br /&gt;
&lt;br /&gt;
: mClock is a resource-allocation algorithm that helps hypervisors manage I/O requests from multiple virtual machines simultaneously. Essentially, mClock dynamically adjusts the proportions of resources each VM receives based on how active each VM currently is. While mClock constantly changes the physical resource allocation to each VM, it lets each VM hold onto the illusion that it has full control of all system resources. As a result, performance can be increased for VMs that need it, without letting the others know that “their” resources are being distributed to other machines. [[User:npatel1|Niravkumar Patel]]&lt;br /&gt;
&lt;br /&gt;
==Research problem==&lt;br /&gt;
:  What is the research problem being addressed by the paper?  How does this problem relate to past related work?&lt;br /&gt;
&lt;br /&gt;
: We use today, a very primitive kind of IO resource allocation in modern hypervisors.   Currently a algorithm called PARDA &amp;lt;sup&amp;gt;[[#Foot1|1]]&amp;lt;/sup&amp;gt; is used to allocate IO resources to each VM running on a particular storage device. Unfortunately, the IO resource allocation algorithm of the hosts use a fair-scheduler called SFQ &amp;lt;sup&amp;gt;[[#Foot2|2]]&amp;lt;/sup&amp;gt;. What this means is that PARDA allocates IO resources to VMs proportional to the number of IO shares on the host, but each host uses a fair scheduler which divides the IO shares amongst the VMs equally. This leads to the problem that whenever another VM is added or another background application is run on one of the VMs, all the other VMs suffer a huge performance lose.  In the case of adding another VM, there is a 40% performance drop. This is completely unacceptable when applications have minimum performance requirements to run effectively. An application with minimum resource requirements can be running fine on any given VM, but as soon as the load on the shared storage device increases, the application would run poorly, or could potentially crash.--[[User:Aellebla|Aaron Leblanc]] 21:30, 30 November 2010 (UTC)&lt;br /&gt;
&lt;br /&gt;
==Contribution==&lt;br /&gt;
: What are the research contribution(s) of this work?  Specifically, what are the key research results, and what do they mean?  (What was implemented?  Why is it any better than what came before?)&lt;br /&gt;
&lt;br /&gt;
: This paper addresses the current limitations of IO resource allocation for hypervisors. The paper has proposed a new and more efficient algorithm to allocate IO resources. Older methods were limited solely by providing proportional shares. mClock incorporates proportional shares, as well as a minimum reservation of IO resources, and a maximum reservation. --[[User:Aellebla|Aaron Leblanc]] 22:08, 30 November 2010 (UTC)&lt;br /&gt;
&lt;br /&gt;
: mClock was able to present VMs with a guaranteed minimum reservation of IO resources. This means that application performance will never drop below a certain point. This provides much better application stability on each of the VMs, and better overall performance. --[[User:Aellebla|Aaron Leblanc]] 22:19, 30 November 2010 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
: - &amp;quot;dmClock (used for cluster-based storage systems) runs a modified version of mClock at each server. There is only one modification to the algorithm to account for the distributed model in the Tag-Assignment component.&amp;quot; - from the paper [[User:tpham3|Tuan Pham]]&lt;br /&gt;
&lt;br /&gt;
==Critique==&lt;br /&gt;
: What is good and not-so-good about this paper?  You may discuss both the style and content; be sure to ground your discussion with specific references.  Simple assertions that something is good or bad is not enough - you must explain why.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
: The article introduces a mClock algorithm which handles multiple VM in a variable throughput environment. The Quality of Service (QoS) requirements for a VM are expressed as a minimum reservation, a maximum limit, and a proportional share. mClock is able to meet those controls in varying capacity. the good thing about this is that the algorithms proves efficient in clustered architectures. Moreover, mClock provides greater isolation between VMs. [[User:npatel1|Niravkumar Patel]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
: In this paper there were many terms that were used but never explained, such as orders (used in the graphs), LUN, PARDA, etc. Also i did not like the way the calcualtions were written in sentences, &amp;quot;For a small reference IO size of 8KB and using typical values for mechanical delay T&amp;lt;sub&amp;gt;m&amp;lt;/sub&amp;gt; = 5ms and peak transfer rate, B&amp;lt;sub&amp;gt;peak&amp;lt;/sub&amp;gt; = 60 MB/s, the numerator = Lat&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;*(1 + 8/300) &amp;amp;asymp; Lat&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;&amp;quot;. To me this was very messy and made me skip through the calculations part of the sentence. [[User:tpham3|Tuan Pham]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot1&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; A. Gulati, I. Ahmad, and C. Waldspurger. PARDA: Proportional&lt;br /&gt;
Allocation of Resources in Distributed Storage&lt;br /&gt;
Access. In (FAST ’09) Proceedings of the Seventh Usenix&lt;br /&gt;
Conference on File and Storage Technologies, Feb 2009.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Foot2&amp;quot;&amp;gt;&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; W. Jin, J. S. Chase, and J. Kaur. Interposed proportional&lt;br /&gt;
sharing for a storage service utility. In ACM SIGMET-&lt;br /&gt;
RICS, 2004.&amp;lt;/span&amp;gt;&lt;/div&gt;</summary>
		<author><name>Dagar</name></author>
	</entry>
	<entry>
		<id>https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=5830</id>
		<title>COMP 3000 Essay 2 2010 Question 10</title>
		<link rel="alternate" type="text/html" href="https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=5830"/>
		<updated>2010-11-30T22:31:41Z</updated>

		<summary type="html">&lt;p&gt;Dagar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Paper==&lt;br /&gt;
&lt;br /&gt;
[http://www.usenix.org/events/osdi10/tech/full_papers/Gulati.pdf mClock: Handling Throughput Variability for Hypervisor IO Scheduling]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Authors&#039;&#039;&#039;: &lt;br /&gt;
&lt;br /&gt;
: Ajay Gulati VMware Inc. Palo Alto, CA, 94304 agulati@vmware.com&lt;br /&gt;
&lt;br /&gt;
: Arif Merchant HP Labs Palo Alto, CA 94304 arif.merchant@acm.org&lt;br /&gt;
&lt;br /&gt;
: Peter J. Varman Rice University Houston, TX, 77005 pjv@rice.edu&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Background Concepts==&lt;br /&gt;
: Explain briefly the background concepts and ideas that your fellow classmates will need to know first in order to understand your assigned paper.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
: Hypervisors are responsible for multiplexing hardware resources between virtual machines while providing isolation to an extent, using resource management. The three controls used are reservation where the minimum bounds are set, the limit where the maximum upperbound on the allocation is set, and shares which proportionally allocate the resources according to the certain weight each VM has, and also depending on the reservation and upperbound limits. This is interesting because virtualization has been very successful; people are comfortable with putting multiple VM on one HOST without worrying about the performance of each VM on another. However the contention for I/O resources can suddenly lower a VM’s allocation; the available throughput can change with time, and adjustments to allocations must be made dynamically. mClock is a better alternate because it supports all controls in a single algorithm, handles variable and unknown capacity, and fast to compute. This is interesting because there is a limit control on VM allocation, it does not weaken as each VM gets added on, and mClock reservations are met. [[User:npatel1|Niravkumar Patel]]&lt;br /&gt;
&lt;br /&gt;
: more about mclock here&lt;br /&gt;
&lt;br /&gt;
: mClock is a resource-allocation algorithm that helps hypervisors manage I/O requests from multiple virtual machines simultaneously. Essentially, mClock dynamically adjusts the proportions of resources each VM receives based on how active each VM currently is. While mClock constantly changes the physical resource allocation to each VM, it lets each VM hold onto the illusion that it has full control of all system resources. As a result, performance can be increased for VMs that need it, without letting the others know that “their” resources are being distributed to other machines. [[User:npatel1|Niravkumar Patel]]&lt;br /&gt;
&lt;br /&gt;
==Research problem==&lt;br /&gt;
:  What is the research problem being addressed by the paper?  How does this problem relate to past related work?&lt;br /&gt;
&lt;br /&gt;
: We use today, a very primitive kind of IO resource allocation in modern hypervisors.   Currently a algorithm called PARDA [1] is used to allocate IO resources to each VM running on a particular storage device. Unfortunately, the IO resource allocation algorithm of the hosts use a fair-scheduler called SFQ [2]. What this means is that PARDA allocates IO resources to VMs proportional to the number of IO shares on the host, but each host uses a fair scheduler which divides the IO shares amongst the VMs equally. This leads to the problem that whenever another VM is added or another background application is run on one of the VMs, all the other VMs suffer a huge performance lose.  In the case of adding another VM, there is a 40% performance drop. This is completely unacceptable when applications have minimum performance requirements to run effectively. An application with minimum resource requirements can be running fine on any given VM, but as soon as the load on the shared storage device increases, the application would run poorly, or could potentially crash.--[[User:Aellebla|Aaron Leblanc]] 21:30, 30 November 2010 (UTC)&lt;br /&gt;
&lt;br /&gt;
==Contribution==&lt;br /&gt;
: What are the research contribution(s) of this work?  Specifically, what are the key research results, and what do they mean?  (What was implemented?  Why is it any better than what came before?)&lt;br /&gt;
&lt;br /&gt;
: This paper addresses the current limitations of IO resource allocation for hypervisors. The paper has proposed a new and more efficient algorithm to allocate IO resources. Older methods were limited solely by providing proportional shares. mClock incorporates proportional shares, as well as a minimum reservation of IO resources, and a maximum reservation. --[[User:Aellebla|Aaron Leblanc]] 22:08, 30 November 2010 (UTC)&lt;br /&gt;
&lt;br /&gt;
: mClock was able to present VMs with a guaranteed minimum reservation of IO resources. This means that application performance will never drop below a certain point. This provides much better application stability on each of the VMs, and better overall performance. --[[User:Aellebla|Aaron Leblanc]] 22:19, 30 November 2010 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
: - &amp;quot;dmClock (used for cluster-based storage systems) runs a modified version of mClock at each server. There is only one modification to the algorithm to account for the distributed model in the Tag-Assignment component.&amp;quot; - from the paper [[User:tpham3|Tuan Pham]]&lt;br /&gt;
&lt;br /&gt;
==Critique==&lt;br /&gt;
: What is good and not-so-good about this paper?  You may discuss both the style and content; be sure to ground your discussion with specific references.  Simple assertions that something is good or bad is not enough - you must explain why.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
: The article introduces a mClock algorithm which handles multiple VM in a variable throughput environment. The Quality of Service (QoS) requirements for a VM are expressed as a minimum reservation, a maximum limit, and a proportional share. mClock is able to meet those controls in varying capacity. the good thing about this is that the algorithms proves efficient in clustered architectures. Moreover, mClock provides greater isolation between VMs. [[User:npatel1|Niravkumar Patel]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
: In this paper there were many terms that were used but never explained, such as orders (used in the graphs), LUN, PARDA, etc. Also i did not like the way the calcualtions were written in sentences, &amp;quot;For a small reference IO size of 8KB and using typical values for mechanical delay T&amp;lt;sub&amp;gt;m&amp;lt;/sub&amp;gt; = 5ms and peak transfer rate, B&amp;lt;sub&amp;gt;peak&amp;lt;/sub&amp;gt; = 60 MB/s, the numerator = Lat&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;*(1 + 8/300) &amp;amp;asymp; Lat&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;&amp;quot;. To me this was very messy and made me skip through the calculations part of the sentence. [[User:tpham3|Tuan Pham]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
[1] A. Gulati, I. Ahmad, and C. Waldspurger. PARDA: Proportional&lt;br /&gt;
Allocation of Resources in Distributed Storage&lt;br /&gt;
Access. In (FAST ’09) Proceedings of the Seventh Usenix&lt;br /&gt;
Conference on File and Storage Technologies, Feb 2009.&lt;br /&gt;
&lt;br /&gt;
[2] W. Jin, J. S. Chase, and J. Kaur. Interposed proportional&lt;br /&gt;
sharing for a storage service utility. In ACM SIGMET-&lt;br /&gt;
RICS, 2004.&lt;/div&gt;</summary>
		<author><name>Dagar</name></author>
	</entry>
	<entry>
		<id>https://homeostasis.scs.carleton.ca/wiki/index.php?title=Talk:COMP_3000_Essay_2_2010_Question_10&amp;diff=5826</id>
		<title>Talk:COMP 3000 Essay 2 2010 Question 10</title>
		<link rel="alternate" type="text/html" href="https://homeostasis.scs.carleton.ca/wiki/index.php?title=Talk:COMP_3000_Essay_2_2010_Question_10&amp;diff=5826"/>
		<updated>2010-11-30T22:31:02Z</updated>

		<summary type="html">&lt;p&gt;Dagar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;mClock: Handling Throughput Variability for Hypervisor IO Scheduling&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=Notes to Group=&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Might as well work directly on the main page&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=Group Members=&lt;br /&gt;
Please leave your name and email address if you are in the group&lt;br /&gt;
&lt;br /&gt;
*[[User:Dagar|Daniel Agar]] - dagar@scs.carleton.ca&lt;br /&gt;
*[[User:xchen6|Xi Chen]] - xintai1985@gmail.com&lt;br /&gt;
*[[User:npatel1|Niravkumar Patel]] - npatel1@connect.carleton.ca&lt;br /&gt;
*[[User:tpham3|Tuan Pham]] - tpham3@connect.carleton.ca&lt;br /&gt;
*[[User:aellebla|Aaron Leblanc]] - aellebla@connect.carleton.ca&lt;br /&gt;
*[[User:naseido|Nisrin Abou-Seido]] - naseido@connect.carleton.ca&lt;br /&gt;
&lt;br /&gt;
=Layout=&lt;br /&gt;
==Paper==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Authors&#039;&#039;&#039;: &lt;br /&gt;
&lt;br /&gt;
: Ajay Gulati VMware Inc. Palo Alto, CA, 94304 agulati@vmware.com&lt;br /&gt;
&lt;br /&gt;
: Arif Merchant HP Labs Palo Alto, CA 94304 arif.merchant@acm.org&lt;br /&gt;
&lt;br /&gt;
: Peter J. Varman Rice University Houston, TX, 77005 pjv@rice.edu&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Link to the paper&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
[http://www.usenix.org/events/osdi10/tech/full_papers/Gulati.pdf mClock: Handling Throughput Variability for Hypervisor IO Scheduling]&lt;br /&gt;
&lt;br /&gt;
==Background Concepts==&lt;br /&gt;
: Explain briefly the background concepts and ideas that your fellow classmates will need to know first in order to understand your assigned paper.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
: Hypervisors are responsible for multiplexing hardware resources between virtual machines while providing isolation to an extent, using resource management. The three controls used are reservation where the minimum bounds are set, the limit where the maximum upperbound on the allocation is set, and shares which proportionally allocate the resources according to the certain weight each VM has, and also depending on the reservation and upperbound limits. This is interesting because virtualization has been very successful; people are comfortable with putting multiple VM on one HOST without worrying about the performance of each VM on another. However the contention for I/O resources can suddenly lower a VM’s allocation; the available throughput can change with time, and adjustments to allocations must be made dynamically. mClock is a better alternate because it supports all controls in a single algorithm, handles variable and unknown capacity, and fast to compute. This is interesting because there is a limit control on VM allocation, it does not weaken as each VM gets added on, and mClock reservations are met. [[User:npatel1|Niravkumar Patel]]&lt;br /&gt;
&lt;br /&gt;
: more about mclock here&lt;br /&gt;
&lt;br /&gt;
: mClock is a resource-allocation algorithm that helps hypervisors manage I/O requests from multiple virtual machines simultaneously. Essentially, mClock dynamically adjusts the proportions of resources each VM receives based on how active each VM currently is. While mClock constantly changes the physical resource allocation to each VM, it lets each VM hold onto the illusion that it has full control of all system resources. As a result, performance can be increased for VMs that need it, without letting the others know that “their” resources are being distributed to other machines. [[User:npatel1|Niravkumar Patel]]&lt;br /&gt;
&lt;br /&gt;
==Research problem==&lt;br /&gt;
:  What is the research problem being addressed by the paper?  How does this problem relate to past related work?&lt;br /&gt;
&lt;br /&gt;
: We use today, a very primitive kind of IO resource allocation in modern hypervisors.   Currently a algorithm called PARDA [1] is used to allocate IO resources to each VM running on a particular storage device. Unfortunately, the IO resource allocation algorithm of the hosts use a fair-scheduler called SFQ [2]. What this means is that PARDA allocates IO resources to VMs proportional to the number of IO shares on the host, but each host uses a fair scheduler which divides the IO shares amongst the VMs equally. This leads to the problem that whenever another VM is added or another background application is run on one of the VMs, all the other VMs suffer a huge performance lose.  In the case of adding another VM, there is a 40% performance drop. This is completely unacceptable when applications have minimum performance requirements to run effectively. An application with minimum resource requirements can be running fine on any given VM, but as soon as the load on the shared storage device increases, the application would run poorly, or could potentially crash.--[[User:Aellebla|Aaron Leblanc]] 21:30, 30 November 2010 (UTC)&lt;br /&gt;
&lt;br /&gt;
==Contribution==&lt;br /&gt;
: What are the research contribution(s) of this work?  Specifically, what are the key research results, and what do they mean?  (What was implemented?  Why is it any better than what came before?)&lt;br /&gt;
&lt;br /&gt;
: This paper addresses the current limitations of IO resource allocation for hypervisors. The paper has proposed a new and more efficient algorithm to allocate IO resources. Older methods were limited solely by providing proportional shares. mClock incorporates proportional shares, as well as a minimum reservation of IO resources, and a maximum reservation. --[[User:Aellebla|Aaron Leblanc]] 22:08, 30 November 2010 (UTC)&lt;br /&gt;
&lt;br /&gt;
: mClock was able to present VMs with a guaranteed minimum reservation of IO resources. This means that application performance will never drop below a certain point. This provides much better application stability on each of the VMs, and better overall performance. Older methods of IO resource allocation had a terrible performance lose whenever a background process was initiated on a VM, or whenever another VM was added. More specifically whenever the load on the shared storage device was increased. Older methods provided unreliable IO management of hypervisors. --[[User:Aellebla|Aaron Leblanc]] 22:19, 30 November 2010 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
: - &amp;quot;dmClock (used for cluster-based storage systems) runs a modified version of mClock at each server. There is only one modification to the algorithm to account for the distributed model in the Tag-Assignment component.&amp;quot; - from the paper [[User:tpham3|Tuan Pham]]&lt;br /&gt;
&lt;br /&gt;
==Critique==&lt;br /&gt;
: What is good and not-so-good about this paper?  You may discuss both the style and content; be sure to ground your discussion with specific references.  Simple assertions that something is good or bad is not enough - you must explain why.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
: The article introduces a mClock algorithm which handles multiple VM in a variable throughput environment. The Quality of Service (QoS) requirements for a VM are expressed as a minimum reservation, a maximum limit, and a proportional share. mClock is able to meet those controls in varying capacity. the good thing about this is that the algorithms proves efficient in clustered architectures. Moreover, mClock provides greater isolation between VMs. [[User:npatel1|Niravkumar Patel]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
: In this paper there were many terms that were used but never explained, such as orders (used in the graphs), LUN, PARDA, etc. Also i did not like the way the calcualtions were written in sentences, &amp;quot;For a small reference IO size of 8KB and using typical values for mechanical delay T&amp;lt;sub&amp;gt;m&amp;lt;/sub&amp;gt; = 5ms and peak transfer rate, B&amp;lt;sub&amp;gt;peak&amp;lt;/sub&amp;gt; = 60 MB/s, the numerator = Lat&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;*(1 + 8/300) &amp;amp;asymp; Lat&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;&amp;quot;. To me this was very messy and made me skip through the calculations part of the sentence. [[User:tpham3|Tuan Pham]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
[1] A. Gulati, I. Ahmad, and C. Waldspurger. PARDA: Proportional&lt;br /&gt;
Allocation of Resources in Distributed Storage&lt;br /&gt;
Access. In (FAST ’09) Proceedings of the Seventh Usenix&lt;br /&gt;
Conference on File and Storage Technologies, Feb 2009.&lt;br /&gt;
&lt;br /&gt;
[2] W. Jin, J. S. Chase, and J. Kaur. Interposed proportional&lt;br /&gt;
sharing for a storage service utility. In ACM SIGMET-&lt;br /&gt;
RICS, 2004.&lt;/div&gt;</summary>
		<author><name>Dagar</name></author>
	</entry>
	<entry>
		<id>https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=5825</id>
		<title>COMP 3000 Essay 2 2010 Question 10</title>
		<link rel="alternate" type="text/html" href="https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=5825"/>
		<updated>2010-11-30T22:30:41Z</updated>

		<summary type="html">&lt;p&gt;Dagar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[http://www.usenix.org/events/osdi10/tech/full_papers/Gulati.pdf mClock: Handling Throughput Variability for Hypervisor IO Scheduling]&lt;br /&gt;
&lt;br /&gt;
==Paper==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Authors&#039;&#039;&#039;: &lt;br /&gt;
&lt;br /&gt;
: Ajay Gulati VMware Inc. Palo Alto, CA, 94304 agulati@vmware.com&lt;br /&gt;
&lt;br /&gt;
: Arif Merchant HP Labs Palo Alto, CA 94304 arif.merchant@acm.org&lt;br /&gt;
&lt;br /&gt;
: Peter J. Varman Rice University Houston, TX, 77005 pjv@rice.edu&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Link to the paper&#039;&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
[http://www.usenix.org/events/osdi10/tech/full_papers/Gulati.pdf mClock: Handling Throughput Variability for Hypervisor IO Scheduling]&lt;br /&gt;
&lt;br /&gt;
==Background Concepts==&lt;br /&gt;
: Explain briefly the background concepts and ideas that your fellow classmates will need to know first in order to understand your assigned paper.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
: Hypervisors are responsible for multiplexing hardware resources between virtual machines while providing isolation to an extent, using resource management. The three controls used are reservation where the minimum bounds are set, the limit where the maximum upperbound on the allocation is set, and shares which proportionally allocate the resources according to the certain weight each VM has, and also depending on the reservation and upperbound limits. This is interesting because virtualization has been very successful; people are comfortable with putting multiple VM on one HOST without worrying about the performance of each VM on another. However the contention for I/O resources can suddenly lower a VM’s allocation; the available throughput can change with time, and adjustments to allocations must be made dynamically. mClock is a better alternate because it supports all controls in a single algorithm, handles variable and unknown capacity, and fast to compute. This is interesting because there is a limit control on VM allocation, it does not weaken as each VM gets added on, and mClock reservations are met. [[User:npatel1|Niravkumar Patel]]&lt;br /&gt;
&lt;br /&gt;
: more about mclock here&lt;br /&gt;
&lt;br /&gt;
: mClock is a resource-allocation algorithm that helps hypervisors manage I/O requests from multiple virtual machines simultaneously. Essentially, mClock dynamically adjusts the proportions of resources each VM receives based on how active each VM currently is. While mClock constantly changes the physical resource allocation to each VM, it lets each VM hold onto the illusion that it has full control of all system resources. As a result, performance can be increased for VMs that need it, without letting the others know that “their” resources are being distributed to other machines. [[User:npatel1|Niravkumar Patel]]&lt;br /&gt;
&lt;br /&gt;
==Research problem==&lt;br /&gt;
:  What is the research problem being addressed by the paper?  How does this problem relate to past related work?&lt;br /&gt;
&lt;br /&gt;
: We use today, a very primitive kind of IO resource allocation in modern hypervisors.   Currently a algorithm called PARDA [1] is used to allocate IO resources to each VM running on a particular storage device. Unfortunately, the IO resource allocation algorithm of the hosts use a fair-scheduler called SFQ [2]. What this means is that PARDA allocates IO resources to VMs proportional to the number of IO shares on the host, but each host uses a fair scheduler which divides the IO shares amongst the VMs equally. This leads to the problem that whenever another VM is added or another background application is run on one of the VMs, all the other VMs suffer a huge performance lose.  In the case of adding another VM, there is a 40% performance drop. This is completely unacceptable when applications have minimum performance requirements to run effectively. An application with minimum resource requirements can be running fine on any given VM, but as soon as the load on the shared storage device increases, the application would run poorly, or could potentially crash.--[[User:Aellebla|Aaron Leblanc]] 21:30, 30 November 2010 (UTC)&lt;br /&gt;
&lt;br /&gt;
==Contribution==&lt;br /&gt;
: What are the research contribution(s) of this work?  Specifically, what are the key research results, and what do they mean?  (What was implemented?  Why is it any better than what came before?)&lt;br /&gt;
&lt;br /&gt;
: This paper addresses the current limitations of IO resource allocation for hypervisors. The paper has proposed a new and more efficient algorithm to allocate IO resources. Older methods were limited solely by providing proportional shares. mClock incorporates proportional shares, as well as a minimum reservation of IO resources, and a maximum reservation. --[[User:Aellebla|Aaron Leblanc]] 22:08, 30 November 2010 (UTC)&lt;br /&gt;
&lt;br /&gt;
: mClock was able to present VMs with a guaranteed minimum reservation of IO resources. This means that application performance will never drop below a certain point. This provides much better application stability on each of the VMs, and better overall performance. --[[User:Aellebla|Aaron Leblanc]] 22:19, 30 November 2010 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
: - &amp;quot;dmClock (used for cluster-based storage systems) runs a modified version of mClock at each server. There is only one modification to the algorithm to account for the distributed model in the Tag-Assignment component.&amp;quot; - from the paper [[User:tpham3|Tuan Pham]]&lt;br /&gt;
&lt;br /&gt;
==Critique==&lt;br /&gt;
: What is good and not-so-good about this paper?  You may discuss both the style and content; be sure to ground your discussion with specific references.  Simple assertions that something is good or bad is not enough - you must explain why.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
: The article introduces a mClock algorithm which handles multiple VM in a variable throughput environment. The Quality of Service (QoS) requirements for a VM are expressed as a minimum reservation, a maximum limit, and a proportional share. mClock is able to meet those controls in varying capacity. the good thing about this is that the algorithms proves efficient in clustered architectures. Moreover, mClock provides greater isolation between VMs. [[User:npatel1|Niravkumar Patel]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
: In this paper there were many terms that were used but never explained, such as orders (used in the graphs), LUN, PARDA, etc. Also i did not like the way the calcualtions were written in sentences, &amp;quot;For a small reference IO size of 8KB and using typical values for mechanical delay T&amp;lt;sub&amp;gt;m&amp;lt;/sub&amp;gt; = 5ms and peak transfer rate, B&amp;lt;sub&amp;gt;peak&amp;lt;/sub&amp;gt; = 60 MB/s, the numerator = Lat&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;*(1 + 8/300) &amp;amp;asymp; Lat&amp;lt;sub&amp;gt;1&amp;lt;/sub&amp;gt;&amp;quot;. To me this was very messy and made me skip through the calculations part of the sentence. [[User:tpham3|Tuan Pham]]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
[1] A. Gulati, I. Ahmad, and C. Waldspurger. PARDA: Proportional&lt;br /&gt;
Allocation of Resources in Distributed Storage&lt;br /&gt;
Access. In (FAST ’09) Proceedings of the Seventh Usenix&lt;br /&gt;
Conference on File and Storage Technologies, Feb 2009.&lt;br /&gt;
&lt;br /&gt;
[2] W. Jin, J. S. Chase, and J. Kaur. Interposed proportional&lt;br /&gt;
sharing for a storage service utility. In ACM SIGMET-&lt;br /&gt;
RICS, 2004.&lt;/div&gt;</summary>
		<author><name>Dagar</name></author>
	</entry>
	<entry>
		<id>https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=5325</id>
		<title>COMP 3000 Essay 2 2010 Question 10</title>
		<link rel="alternate" type="text/html" href="https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=5325"/>
		<updated>2010-11-22T03:08:43Z</updated>

		<summary type="html">&lt;p&gt;Dagar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[http://www.usenix.org/events/osdi10/tech/full_papers/Gulati.pdf mClock: Handling Throughput Variability for Hypervisor IO Scheduling]&lt;br /&gt;
&lt;br /&gt;
== Paper == &lt;br /&gt;
&lt;br /&gt;
Ajay Gulati&lt;br /&gt;
VMware Inc.&lt;br /&gt;
Palo Alto, CA, 94304&lt;br /&gt;
agulati@vmware.com&lt;br /&gt;
&lt;br /&gt;
Arif Merchant&lt;br /&gt;
HP Labs&lt;br /&gt;
Palo Alto, CA 94304&lt;br /&gt;
arif.merchant@acm.org&lt;br /&gt;
&lt;br /&gt;
Peter J. Varman&lt;br /&gt;
Rice University&lt;br /&gt;
Houston, TX, 77005&lt;br /&gt;
pjv@rice.edu&lt;br /&gt;
&lt;br /&gt;
==Background Concepts==&lt;br /&gt;
&lt;br /&gt;
==Research problem==&lt;br /&gt;
&lt;br /&gt;
==Contribution==&lt;br /&gt;
&lt;br /&gt;
==Critique==&lt;br /&gt;
&lt;br /&gt;
==References==&lt;/div&gt;</summary>
		<author><name>Dagar</name></author>
	</entry>
	<entry>
		<id>https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=5294</id>
		<title>COMP 3000 Essay 2 2010 Question 10</title>
		<link rel="alternate" type="text/html" href="https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=5294"/>
		<updated>2010-11-20T21:55:34Z</updated>

		<summary type="html">&lt;p&gt;Dagar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[http://www.usenix.org/events/osdi10/tech/full_papers/Gulati.pdf mClock: Handling Throughput Variability for Hypervisor IO Scheduling]&lt;br /&gt;
&lt;br /&gt;
== Paper == &lt;br /&gt;
&lt;br /&gt;
Ajay Gulati&lt;br /&gt;
VMware Inc.&lt;br /&gt;
Palo Alto, CA, 94304&lt;br /&gt;
agulati@vmware.com&lt;br /&gt;
&lt;br /&gt;
Arif Merchant&lt;br /&gt;
HP Labs&lt;br /&gt;
Palo Alto, CA 94304&lt;br /&gt;
arif.merchant@acm.org&lt;br /&gt;
&lt;br /&gt;
Peter J. Varman&lt;br /&gt;
Rice University&lt;br /&gt;
Houston, TX, 77005&lt;br /&gt;
pjv@rice.edu&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==References==&lt;/div&gt;</summary>
		<author><name>Dagar</name></author>
	</entry>
	<entry>
		<id>https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=5293</id>
		<title>COMP 3000 Essay 2 2010 Question 10</title>
		<link rel="alternate" type="text/html" href="https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=5293"/>
		<updated>2010-11-20T21:52:38Z</updated>

		<summary type="html">&lt;p&gt;Dagar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[http://www.usenix.org/events/osdi10/tech/full_papers/Gulati.pdf mClock: Handling Throughput Variability for Hypervisor IO Scheduling]&lt;br /&gt;
&lt;br /&gt;
== Paper == &lt;br /&gt;
&lt;br /&gt;
==References==&lt;/div&gt;</summary>
		<author><name>Dagar</name></author>
	</entry>
	<entry>
		<id>https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=5292</id>
		<title>COMP 3000 Essay 2 2010 Question 10</title>
		<link rel="alternate" type="text/html" href="https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=5292"/>
		<updated>2010-11-20T21:51:56Z</updated>

		<summary type="html">&lt;p&gt;Dagar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[http://homeostasis.scs.carleton.ca/wiki/index.php/COMP_3000_Essay_2_2010_Question_10 mClock: Handling Throughput Variability for Hypervisor IO Scheduling]&lt;br /&gt;
&lt;br /&gt;
== Paper == &lt;br /&gt;
&lt;br /&gt;
==References==&lt;/div&gt;</summary>
		<author><name>Dagar</name></author>
	</entry>
	<entry>
		<id>https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=5291</id>
		<title>COMP 3000 Essay 2 2010 Question 10</title>
		<link rel="alternate" type="text/html" href="https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=5291"/>
		<updated>2010-11-20T21:51:17Z</updated>

		<summary type="html">&lt;p&gt;Dagar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[mClock: Handling Throughput Variability for Hypervisor IO Scheduling http://homeostasis.scs.carleton.ca/wiki/index.php/COMP_3000_Essay_2_2010_Question_10]&lt;br /&gt;
&lt;br /&gt;
== Paper == &lt;br /&gt;
&lt;br /&gt;
==References==&lt;/div&gt;</summary>
		<author><name>Dagar</name></author>
	</entry>
	<entry>
		<id>https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=5071</id>
		<title>COMP 3000 Essay 2 2010 Question 10</title>
		<link rel="alternate" type="text/html" href="https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=5071"/>
		<updated>2010-11-17T16:34:45Z</updated>

		<summary type="html">&lt;p&gt;Dagar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;mClock: Handling Throughput Variability for Hypervisor IO Scheduling&lt;br /&gt;
&lt;br /&gt;
See discussion.&lt;br /&gt;
&lt;br /&gt;
== Cite Example == &lt;br /&gt;
&lt;br /&gt;
According to scientists, the Sun is pretty big.&amp;lt;ref&amp;gt;E. Miller, The Sun, (New York: Academic Press, 2005), 23-5.&amp;lt;/ref&amp;gt;&lt;br /&gt;
The Moon, however, is not so big.&amp;lt;ref&amp;gt;R. Smith, &amp;quot;Size of the Moon&amp;quot;, Scientific American, 46 (April 1978): 44-6.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Notes==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;/div&gt;</summary>
		<author><name>Dagar</name></author>
	</entry>
	<entry>
		<id>https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=5062</id>
		<title>COMP 3000 Essay 2 2010 Question 10</title>
		<link rel="alternate" type="text/html" href="https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=5062"/>
		<updated>2010-11-16T17:44:24Z</updated>

		<summary type="html">&lt;p&gt;Dagar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;mClock: Handling Throughput Variability for Hypervisor IO Scheduling&lt;br /&gt;
&lt;br /&gt;
see discussion.&lt;br /&gt;
&lt;br /&gt;
According to scientists, the Sun is pretty big.&amp;lt;ref&amp;gt;E. Miller, The Sun, (New York: Academic Press, 2005), 23-5.&amp;lt;/ref&amp;gt;&lt;br /&gt;
The Moon, however, is not so big.&amp;lt;ref&amp;gt;R. Smith, &amp;quot;Size of the Moon&amp;quot;, Scientific American, 46 (April 1978): 44-6.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Notes==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;/div&gt;</summary>
		<author><name>Dagar</name></author>
	</entry>
	<entry>
		<id>https://homeostasis.scs.carleton.ca/wiki/index.php?title=Talk:COMP_3000_Essay_2_2010_Question_10&amp;diff=4976</id>
		<title>Talk:COMP 3000 Essay 2 2010 Question 10</title>
		<link rel="alternate" type="text/html" href="https://homeostasis.scs.carleton.ca/wiki/index.php?title=Talk:COMP_3000_Essay_2_2010_Question_10&amp;diff=4976"/>
		<updated>2010-11-15T16:11:28Z</updated>

		<summary type="html">&lt;p&gt;Dagar: /* Group Members */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;mClock: Handling Throughput Variability for Hypervisor IO Scheduling&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Group Members=&lt;br /&gt;
Please leave your name and email address if you are in the group&lt;br /&gt;
&lt;br /&gt;
*[[User:Dagar|Daniel Agar]] - dagar@scs.carleton.ca&lt;br /&gt;
*[[User:xchen6|Xi Chen]] - xintai1985@gmail.com&lt;br /&gt;
*[[User:npatel1|Kumar Patel]] - npatel1@scs.carleton.ca&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Waiting for response===&lt;br /&gt;
*Abou-Seido Nisrin  naseido&lt;br /&gt;
*Leblanc Aaron   aellebla&lt;br /&gt;
*Pham    Tuan    tpham3&lt;br /&gt;
&lt;br /&gt;
=Layout=&lt;br /&gt;
==Paper==&lt;br /&gt;
: the paper&#039;s title, authors, and their affiliations.  Include a link to the paper and any particularly helpful supplementary information.&lt;br /&gt;
==Background Concepts==&lt;br /&gt;
: Explain briefly the background concepts and ideas that your fellow classmates will need to know first in order to understand your assigned paper.&lt;br /&gt;
==Research problem==&lt;br /&gt;
:  What is the research problem being addressed by the paper?  How does this problem relate to past related work?&lt;br /&gt;
==Contribution==&lt;br /&gt;
: What are the research contribution(s) of this work?  Specifically, what are the key research results, and what do they mean?  (What was implemented?  Why is it any better than what came before?)&lt;br /&gt;
==Critique==&lt;br /&gt;
: What is good and not-so-good about this paper?  You may discuss both the style and content; be sure to ground your discussion with specific references.  Simple assertions that something is good or bad is not enough - you must explain why.&lt;br /&gt;
==References==&lt;br /&gt;
: You will almost certainly have to refer to other resources; please cite these resources in the style of citation of the papers assigned (inlined numbered references).  Place your bibliographic entries in this section.&lt;/div&gt;</summary>
		<author><name>Dagar</name></author>
	</entry>
	<entry>
		<id>https://homeostasis.scs.carleton.ca/wiki/index.php?title=Talk:COMP_3000_Essay_2_2010_Question_10&amp;diff=4908</id>
		<title>Talk:COMP 3000 Essay 2 2010 Question 10</title>
		<link rel="alternate" type="text/html" href="https://homeostasis.scs.carleton.ca/wiki/index.php?title=Talk:COMP_3000_Essay_2_2010_Question_10&amp;diff=4908"/>
		<updated>2010-11-11T15:19:57Z</updated>

		<summary type="html">&lt;p&gt;Dagar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;mClock: Handling Throughput Variability for Hypervisor IO Scheduling&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Group Members=&lt;br /&gt;
Please leave your name and email address if you are in the group&lt;br /&gt;
&lt;br /&gt;
[[User:Dagar|Daniel Agar]] - dagar@scs.carleton.ca&lt;br /&gt;
&lt;br /&gt;
Question 10&lt;br /&gt;
-----------&lt;br /&gt;
*Abou-Seido Nisrin  naseido&lt;br /&gt;
*Agar    Daniel  dagar&lt;br /&gt;
*Chen    Xi      xchen6&lt;br /&gt;
*Leblanc Aaron   aellebla&lt;br /&gt;
*Patel   Niravkumar npatel1&lt;br /&gt;
*Pham    Tuan    tpham3&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Layout=&lt;br /&gt;
==Paper==&lt;br /&gt;
: the paper&#039;s title, authors, and their affiliations.  Include a link to the paper and any particularly helpful supplementary information.&lt;br /&gt;
==Background Concepts==&lt;br /&gt;
: Explain briefly the background concepts and ideas that your fellow classmates will need to know first in order to understand your assigned paper.&lt;br /&gt;
==Research problem==&lt;br /&gt;
:  What is the research problem being addressed by the paper?  How does this problem relate to past related work?&lt;br /&gt;
==Contribution==&lt;br /&gt;
: What are the research contribution(s) of this work?  Specifically, what are the key research results, and what do they mean?  (What was implemented?  Why is it any better than what came before?)&lt;br /&gt;
==Critique==&lt;br /&gt;
: What is good and not-so-good about this paper?  You may discuss both the style and content; be sure to ground your discussion with specific references.  Simple assertions that something is good or bad is not enough - you must explain why.&lt;br /&gt;
==References==&lt;br /&gt;
: You will almost certainly have to refer to other resources; please cite these resources in the style of citation of the papers assigned (inlined numbered references).  Place your bibliographic entries in this section.&lt;/div&gt;</summary>
		<author><name>Dagar</name></author>
	</entry>
	<entry>
		<id>https://homeostasis.scs.carleton.ca/wiki/index.php?title=Talk:COMP_3000_Essay_2_2010_Question_10&amp;diff=4907</id>
		<title>Talk:COMP 3000 Essay 2 2010 Question 10</title>
		<link rel="alternate" type="text/html" href="https://homeostasis.scs.carleton.ca/wiki/index.php?title=Talk:COMP_3000_Essay_2_2010_Question_10&amp;diff=4907"/>
		<updated>2010-11-11T15:19:34Z</updated>

		<summary type="html">&lt;p&gt;Dagar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
[[mClock: Handling Throughput Variability for Hypervisor IO Scheduling]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Group Members=&lt;br /&gt;
Please leave your name and email address if you are in the group&lt;br /&gt;
&lt;br /&gt;
[[User:Dagar|Daniel Agar]] - dagar@scs.carleton.ca&lt;br /&gt;
&lt;br /&gt;
Question 10&lt;br /&gt;
-----------&lt;br /&gt;
*Abou-Seido Nisrin  naseido&lt;br /&gt;
*Agar    Daniel  dagar&lt;br /&gt;
*Chen    Xi      xchen6&lt;br /&gt;
*Leblanc Aaron   aellebla&lt;br /&gt;
*Patel   Niravkumar npatel1&lt;br /&gt;
*Pham    Tuan    tpham3&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Layout=&lt;br /&gt;
==Paper==&lt;br /&gt;
: the paper&#039;s title, authors, and their affiliations.  Include a link to the paper and any particularly helpful supplementary information.&lt;br /&gt;
==Background Concepts==&lt;br /&gt;
: Explain briefly the background concepts and ideas that your fellow classmates will need to know first in order to understand your assigned paper.&lt;br /&gt;
==Research problem==&lt;br /&gt;
:  What is the research problem being addressed by the paper?  How does this problem relate to past related work?&lt;br /&gt;
==Contribution==&lt;br /&gt;
: What are the research contribution(s) of this work?  Specifically, what are the key research results, and what do they mean?  (What was implemented?  Why is it any better than what came before?)&lt;br /&gt;
==Critique==&lt;br /&gt;
: What is good and not-so-good about this paper?  You may discuss both the style and content; be sure to ground your discussion with specific references.  Simple assertions that something is good or bad is not enough - you must explain why.&lt;br /&gt;
==References==&lt;br /&gt;
: You will almost certainly have to refer to other resources; please cite these resources in the style of citation of the papers assigned (inlined numbered references).  Place your bibliographic entries in this section.&lt;/div&gt;</summary>
		<author><name>Dagar</name></author>
	</entry>
	<entry>
		<id>https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=4906</id>
		<title>COMP 3000 Essay 2 2010 Question 10</title>
		<link rel="alternate" type="text/html" href="https://homeostasis.scs.carleton.ca/wiki/index.php?title=COMP_3000_Essay_2_2010_Question_10&amp;diff=4906"/>
		<updated>2010-11-11T15:18:32Z</updated>

		<summary type="html">&lt;p&gt;Dagar: Created page with &amp;quot;mClock: Handling Throughput Variability for Hypervisor IO Scheduling&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;mClock: Handling Throughput Variability for Hypervisor IO Scheduling&lt;/div&gt;</summary>
		<author><name>Dagar</name></author>
	</entry>
	<entry>
		<id>https://homeostasis.scs.carleton.ca/wiki/index.php?title=Talk:COMP_3000_Essay_2_2010_Question_10&amp;diff=4905</id>
		<title>Talk:COMP 3000 Essay 2 2010 Question 10</title>
		<link rel="alternate" type="text/html" href="https://homeostasis.scs.carleton.ca/wiki/index.php?title=Talk:COMP_3000_Essay_2_2010_Question_10&amp;diff=4905"/>
		<updated>2010-11-11T15:17:37Z</updated>

		<summary type="html">&lt;p&gt;Dagar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Group Members=&lt;br /&gt;
Please leave your name and email address if you are in the group&lt;br /&gt;
&lt;br /&gt;
[[User:Dagar|Daniel Agar]] - dagar@scs.carleton.ca&lt;br /&gt;
&lt;br /&gt;
Question 10&lt;br /&gt;
-----------&lt;br /&gt;
*Abou-Seido Nisrin  naseido&lt;br /&gt;
*Agar    Daniel  dagar&lt;br /&gt;
*Chen    Xi      xchen6&lt;br /&gt;
*Leblanc Aaron   aellebla&lt;br /&gt;
*Patel   Niravkumar npatel1&lt;br /&gt;
*Pham    Tuan    tpham3&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Layout=&lt;br /&gt;
==Paper==&lt;br /&gt;
: the paper&#039;s title, authors, and their affiliations.  Include a link to the paper and any particularly helpful supplementary information.&lt;br /&gt;
==Background Concepts==&lt;br /&gt;
: Explain briefly the background concepts and ideas that your fellow classmates will need to know first in order to understand your assigned paper.&lt;br /&gt;
==Research problem==&lt;br /&gt;
:  What is the research problem being addressed by the paper?  How does this problem relate to past related work?&lt;br /&gt;
==Contribution==&lt;br /&gt;
: What are the research contribution(s) of this work?  Specifically, what are the key research results, and what do they mean?  (What was implemented?  Why is it any better than what came before?)&lt;br /&gt;
==Critique==&lt;br /&gt;
: What is good and not-so-good about this paper?  You may discuss both the style and content; be sure to ground your discussion with specific references.  Simple assertions that something is good or bad is not enough - you must explain why.&lt;br /&gt;
==References==&lt;br /&gt;
: You will almost certainly have to refer to other resources; please cite these resources in the style of citation of the papers assigned (inlined numbered references).  Place your bibliographic entries in this section.&lt;/div&gt;</summary>
		<author><name>Dagar</name></author>
	</entry>
	<entry>
		<id>https://homeostasis.scs.carleton.ca/wiki/index.php?title=Talk:COMP_3000_Essay_2_2010_Question_10&amp;diff=4904</id>
		<title>Talk:COMP 3000 Essay 2 2010 Question 10</title>
		<link rel="alternate" type="text/html" href="https://homeostasis.scs.carleton.ca/wiki/index.php?title=Talk:COMP_3000_Essay_2_2010_Question_10&amp;diff=4904"/>
		<updated>2010-11-11T15:13:46Z</updated>

		<summary type="html">&lt;p&gt;Dagar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=NOTE TO GROUP=&lt;br /&gt;
Please leave your name and email address if you are in the group&lt;br /&gt;
&lt;br /&gt;
[[User:Dagar|Daniel Agar]] - dagar@scs.carleton.ca&lt;br /&gt;
&lt;br /&gt;
Question 10&lt;br /&gt;
-----------&lt;br /&gt;
*Abou-Seido Nisrin  naseido&lt;br /&gt;
*Agar    Daniel  dagar&lt;br /&gt;
*Chen    Xi      xchen6&lt;br /&gt;
*Leblanc Aaron   aellebla&lt;br /&gt;
*Patel   Niravkumar npatel1&lt;br /&gt;
*Pham    Tuan    tpham3&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Paper&#039;&#039;&#039;: the paper&#039;s title, authors, and their affiliations.  Include a link to the paper and any particularly helpful supplementary information.&lt;br /&gt;
*&#039;&#039;&#039;Background Concepts&#039;&#039;&#039;: Explain briefly the background concepts and ideas that your fellow classmates will need to know first in order to understand your assigned paper.&lt;br /&gt;
*&#039;&#039;&#039;Research problem&#039;&#039;&#039;:  What is the research problem being addressed by the paper?  How does this problem relate to past related work?&lt;br /&gt;
*&#039;&#039;&#039;Contribution&#039;&#039;&#039;: What are the research contribution(s) of this work?  Specifically, what are the key research results, and what do they mean?  (What was implemented?  Why is it any better than what came before?)&lt;br /&gt;
*&#039;&#039;&#039;Critique&#039;&#039;&#039;: What is good and not-so-good about this paper?  You may discuss both the style and content; be sure to ground your discussion with specific references.  Simple assertions that something is good or bad is not enough - you must explain why.&lt;br /&gt;
*&#039;&#039;&#039;References&#039;&#039;&#039;: You will almost certainly have to refer to other resources; please cite these resources in the style of citation of the papers assigned (inlined numbered references).  Place your bibliographic entries in this section.&lt;/div&gt;</summary>
		<author><name>Dagar</name></author>
	</entry>
	<entry>
		<id>https://homeostasis.scs.carleton.ca/wiki/index.php?title=Talk:COMP_3000_Essay_2_2010_Question_10&amp;diff=4903</id>
		<title>Talk:COMP 3000 Essay 2 2010 Question 10</title>
		<link rel="alternate" type="text/html" href="https://homeostasis.scs.carleton.ca/wiki/index.php?title=Talk:COMP_3000_Essay_2_2010_Question_10&amp;diff=4903"/>
		<updated>2010-11-11T15:13:00Z</updated>

		<summary type="html">&lt;p&gt;Dagar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=NOTE TO GROUP=&lt;br /&gt;
Please leave your name and email address if you are in the group&lt;br /&gt;
&lt;br /&gt;
[[User:Dagar|Daniel Agar]] - dagar@scs.carleton.ca&lt;br /&gt;
&lt;br /&gt;
Question 10&lt;br /&gt;
-----------&lt;br /&gt;
*Abou-Seido Nisrin  naseido&lt;br /&gt;
*Agar    Daniel  dagar&lt;br /&gt;
*Chen    Xi      xchen6&lt;br /&gt;
*Leblanc Aaron   aellebla&lt;br /&gt;
*Patel   Niravkumar npatel1&lt;br /&gt;
*Pham    Tuan    tpham3&lt;/div&gt;</summary>
		<author><name>Dagar</name></author>
	</entry>
	<entry>
		<id>https://homeostasis.scs.carleton.ca/wiki/index.php?title=User:Dagar&amp;diff=4902</id>
		<title>User:Dagar</title>
		<link rel="alternate" type="text/html" href="https://homeostasis.scs.carleton.ca/wiki/index.php?title=User:Dagar&amp;diff=4902"/>
		<updated>2010-11-11T15:09:57Z</updated>

		<summary type="html">&lt;p&gt;Dagar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Daniel Agar&lt;br /&gt;
dagar@scs.carleton.ca&lt;/div&gt;</summary>
		<author><name>Dagar</name></author>
	</entry>
	<entry>
		<id>https://homeostasis.scs.carleton.ca/wiki/index.php?title=Talk:COMP_3000_Essay_2_2010_Question_10&amp;diff=4901</id>
		<title>Talk:COMP 3000 Essay 2 2010 Question 10</title>
		<link rel="alternate" type="text/html" href="https://homeostasis.scs.carleton.ca/wiki/index.php?title=Talk:COMP_3000_Essay_2_2010_Question_10&amp;diff=4901"/>
		<updated>2010-11-11T15:09:17Z</updated>

		<summary type="html">&lt;p&gt;Dagar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=NOTE TO GROUP=&lt;br /&gt;
Please leave your name and email address if you are in the group&lt;br /&gt;
&lt;br /&gt;
Question 10&lt;br /&gt;
-----------&lt;br /&gt;
*Abou-Seido Nisrin  naseido&lt;br /&gt;
*Agar    Daniel  dagar - X&lt;br /&gt;
*Chen    Xi      xchen6&lt;br /&gt;
*Leblanc Aaron   aellebla&lt;br /&gt;
*Patel   Niravkumar npatel1&lt;br /&gt;
*Pham    Tuan    tpham3&lt;/div&gt;</summary>
		<author><name>Dagar</name></author>
	</entry>
</feed>