Project

General

Profile

root / trunk / html / whatis.html

1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2

    
3
<html xmlns="http://www.w3.org/1999/xhtml">
4

    
5
<head>
6

    
7
<title>Haizea - An Open Source VM-based Lease Manager</title>
8
<link href="haizea.css" type="text/css" rel="stylesheet"/>
9
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
10
</head>
11
<body>
12

    
13
<div id="content">
14
<div id="logo">
15
<a href="index.html"><img src="logo.png" width="450" height="86" border="0" alt="Haizea"/></a>
16
</div>
17
<div class="topbar">
18
<strong>What is Haizea?</strong>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;
19
<a href="download.html">Download</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;
20
<a href="documentation.html">Documentation</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;
21
<a href="pubs.html">Publications</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;
22
<a href="development.html">Development</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;
23
<a href="support.html">Support</a>&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;
24
<a href="credits.html">Credits</a></div>
25
<h1>What is Haizea?</h1>
26

    
27
<p>Haizea is an open-source VM-based lease management architecture. Let's break that down, shall we?</p>
28

    
29
<ul>
30
<li><strong>Haizea is a resource manager</strong> (or, depending on who you ask, a "resource scheduler"): Haizea is a software component that can manage a set of computers (typically a cluster), allowing users to request exclusive use of those resources described in a variety of terms, such as "I need 10 nodes, each with 1 GB of memory, right now" or "I need 4 nodes, each with 2 CPUs and 2GB of memory, from 2pm to 4pm tomorrow".</li>
31
<li><strong>Haizea uses leases</strong>: The fundamental resource provisioning abstraction in Haizea is the <em>lease</em>. Intuitively, a lease is some form of contract where one party agrees to provide a set of resources (an apartment, a car, etc.) to another party. When a user wants to request computational resources from Haizea, it does so in the form of a lease. When applied to computational resources, the lease abstraction is a powerful and general construct with a lot of nuances. The <a href="documentation.html">Haizea Manual</a> includes a more detailed definition of leases and the types of leases supported by Haizea (see below for a quick list of supported lease types).</li>
32
<li><strong>Haizea is VM-based</strong>: We hold that the best way of implementing resource leases is using virtual machines (VMs). Therefore, Haizea's scheduling algorithms are geared towards managing virtual machines, factoring in all the extra operations (and overhead) involved in managing VMs. The <a href="http://workspace.globus.org/">Globus Virtual Workspaces</a> group, where Haizea was originally developed, has an <a href="http://workspace.globus.org/papers/">extensive list of publications</a> that argue how using virtual machines for resource leasing is A Good Thing (and also Not A Trivial Thing).</li>
33
<li><strong>Haizea is open source</strong>: Haizea is published under the <a href="http://www.apache.org/licenses/LICENSE-2.0.html">Apache License 2.0</a>, a BSD-like <a href="http://www.opensource.org/">OSI</a>-compatible license.</li>
34
</ul>
35

    
36
<h2>What can you do with Haizea?</h2>
37

    
38
<div class="center">
39
<img src="what_haizea_does.png" width="650" height="352" alt="Haizea can be used with OpenNebula or in simulation."/>
40
</div>
41

    
42
<p>You can use Haizea one of two ways. Haizea can be used as a standalone component or as a scheduling backend for a virtual infrastructure manager, such as <a href="http://www.opennebula.org/">OpenNebula</a>. So, if you're...</p>
43

    
44
<ul>
45
<li><strong>Using Haizea with OpenNebula</strong>: Haizea can be used as a drop-in replacement for <a href="http://www.opennebula.org/">OpenNebula</a>'s scheduling daemon. OpenNebula is a virtual infrastructure manager that enables the dynamic deployment and re-allocation of virtual machines on a pool of physical resources. OpenNebula and Haizea complement each other, since OpenNebula provides all the enactment muscle (OpenNebula can manage Xen and KVM virtual machines on a cluster, with VMWare support to follow shortly) while Haizea provides all the scheduling brains. The <a href="documentation.html">Haizea Manual</a> includes a chapter on how to run Haizea and OpenNebula together.</li>
46

    
47
<li><strong>Using Haizea on its own</strong>: Haizea is, primarily, a VM resource management component that can take lease requests and make scheduling decisions, but doesn't actually know anything about how to <em>enact</em> those decisions. For example, Haizea may determine at what times a set of VMs representing a lease must start and stop, but it doesn't actually know how to instruct a virtual machine manager to do these actions. Haizea can, however, simulate those enactment actions so, on its own, Haizea can be useful if you're doing scheduling research involving leases or VMs (in fact, the Haizea simulator has been used in <a href="pubs.html">a couple of papers</a>).</li>
48
</ul>
49

    
50
<h2>Features</h2>
51

    
52
<p>Haizea supports the following types of leases:</p>
53

    
54
<ul>
55
<li>Leases requiring a single VM or groups of VMs that must run in parallel.</li>
56
<li><strong>Best-effort leases</strong>, which will wait in a queue until resources become available.</li>
57
<li><strong>Advance reservation leases</strong>, which must start at a specific time.</li>
58
<li><strong>Immediate leases</strong>, which must start right now, or not at all.</li>
59
</ul>
60

    
61
<p>Haizea's scheduling algorithms can...</p>
62

    
63
<ul>
64
    <li>... explicitly schedule the deployment overhead of virtual machines, instead of having it deducted from a user's allocation. For example, if a lease must start at 2pm, Haizea will schedule the transfer of the necessary VM images to the physical nodes where the virtual machines will be running (and will make sure that the images arrive on time).</li>
65
    <li>... leverage the suspend/resume capability of virtual machines to suspend preemptible leases when a higher-priority lease needs resources. It also leverages cold migration of VMs (migrating a suspended VM to a different machine to resume it there). Live migration scheduling is in the works.</li>
66
    <li>... schedule best-effort requests using a First-Come-First-Serve queue with backfilling (aggressive, conservative, or with any number of reservations).</li>
67
</ul>
68

    
69
<p>Haizea can be used as a scheduling backend for the OpenNebula virtual infrastructure manager to do all the above in a Xen or KVM cluster. It can also be used to simulate long-running workloads (weeks or months). See the <a href="documentation.html">Haizea Manual</a> for more details on how to use all these features.</p>
70

    
71

    
72
<div class="back">
73
<a href="index.html">
74
<img src="logo_small.png" width="32" height="35" border="0" alt="haizea"/><br/>
75
BACK TO<br/>HOME PAGE
76
</a>
77
</div>
78
</div>
79
<script type="text/javascript">
80
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
81
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
82
</script>
83
<script type="text/javascript">
84
var pageTracker = _gat._getTracker("UA-4920033-1");
85
pageTracker._initData();
86
pageTracker._trackPageview();
87
</script>
88
</body>
89
</html>