-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
281 lines (233 loc) · 11.7 KB
/
index.html
File metadata and controls
281 lines (233 loc) · 11.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>Toro Kernel - a dedicated kernel for microservices</title>
<link rel="icon" type="image/png" sizes="32x32" href="./favicon.png">
<!-- Bootstrap core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/heroic-features.css" rel="stylesheet">
</head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark fixed-top">
<div class="container">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="#GetStart">Getting Started</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://github.com/torokernel/">Github</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://www.youtube.com/channel/UCWuz3Cez_kWmq1x52CWIR4g">Youtube</a>
</li>
<li class="nav-item">
<a class="nav-link" href="http://torokerneleng.blogspot.com/">Blog</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://twitter.com/torokernel/">Twitter</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://www.linkedin.com/company/torokernel">LinkedIn</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://github.com/torokernel/torokernel/wiki">Wiki</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Page Content -->
<div class="container">
<!-- Jumbotron Header -->
<header class="my-4">
<h1 class="display-1">Toro Kernel</h1>
<p class="lead"><i>"Perfection is achieved, not when there is nothing more to add, but when there is nothing left to take away."</i> Antoine de Saint-Exupery</p>
<a href="http://github.com/torokernel/torokernel" class="btn btn-primary btn-lg">View on Github</a>
</header>
<!-- Page Features -->
<div class="row text-center">
<div class="col-lg-3 col-md-6 mb-4">
<div class="card h-100">
<div class="card-body">
<h4 class="card-title">Fast Instantiation</h4>
<p class="card-text">Toro takes 150ms to boot up. It is thus possible to start microservices on demand or to reboot them if something happens.</p>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 mb-4">
<div class="card h-100">
<div class="card-body">
<h4 class="card-title">Reduced footprint</h4>
<p class="card-text"> A simple microservice within the kernel takes about 130kb on disk. In addition, Toro can work with less than 4Mb of physical memory. This results in more instances with fewer resources.</p>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 mb-4">
<div class="card h-100">
<div class="card-body">
<h4 class="card-title">VirtIO-based</h4>
<p class="card-text">Toro leverages on VirtIO interface for networking and filesystems. This avoids the use of emulating devices thus speeding up IO.</p>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 mb-4">
<div class="card h-100">
<div class="card-body">
<h4 class="card-title">Immutable</h4>
<p class="card-text">Compiles once and deploy everywhere. Once the binary is generated, it can be used without any changes in any hypervisor thus reducing the maintenance time.</p>
</div>
</div>
</div>
</div>
<!-- /.row -->
<div class="row">
<div class="col-md-8 mb-5">
<h2>What is it?</h2>
<hr>
<p>Toro is a simple kernel that provides a dedicated API to develop microservices. We propose two kinds of sockets to build microservices: blocking and non-blocking. Blocking sockets are good for intensive-IO microservices whereas non-blocking sockets are good for microservices that can serve a request without blocking. When a microservice executes in Toro, it runs alone in the system thus leveraging on the VM's resources.</p>
</div>
<div class="col-md-4 mb-5">
<div class="card h-100">
<div class="card-body">
<a href="./images/toroandgpos.png"><img class="card-img-top" src="./images/toroandgpos.png" alt=""></a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-8 mb-5">
<h2>How it works?</h2>
<hr>
<p>Toro is a set of libraries that compile within the user application, i.e., the microservice. The user can choose which components are included, .e.g, drivers, filesystems, networking, etc. This results in a binary that can run on top of modern hypervisors like KVM, Xen or VirtualBox. Once the kernel has been initialized, the microservice starts to execute. The microservice runs free from interference from other applications and without the need of users, password or remote login.
</p>
</div>
<div class="col-md-4 mb-5">
<div class="card h-100">
<div class="card-body">
<a href="./images/apporikernel.png"><img class="card-img-top" src="./images/apporikernel.png" alt=""></a>
</div>
</div>
</div>
<div class="row">
<div class="col-md-8 mb-5">
<h2>FOSDEM'24: Is Toro unikernel faster for MPI?</h2>
<hr>
<iframe width="560" height="315" src="https://www.youtube.com/embed/w2V0oNMN-U4" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<div class="col-md-8 mb-5">
<h2>FOSDEM'23: Running MPI applications on Toro unikernel</h2>
<hr>
<iframe width="560" height="315" src="https://www.youtube.com/embed/QDL93biuFT0" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
</div>
<div class="col-md-8 mb-5">
<h2>FOSDEM'22: ToroV, a kernel in user-space, or sort of</h2>
<hr>
<iframe width="560" height="315" src="https://www.youtube.com/embed/t6wSikeFVkw" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
<div class="row">
<div class="col-md-8 mb-5">
<h2>KVMFORUM'20: Building a Cloud Infrastructure to Deploy Microservices as Microvm Guests</h2>
<hr>
<iframe width="560" height="315" src="https://www.youtube.com/embed/fLsNjMduQmA" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
<div class="row">
<div class="col-md-8 mb-5">
<h2>DEVCONF'20: Leveraging virtiofs and vsocket in Toro unikernel</h2>
<hr>
<iframe width="560" height="315" src="https://www.youtube.com/embed/9mLlNSRwJNs" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
<div class="row">
<div class="col-md-8 mb-5">
<h2>FOSDEM'19: Speeding up the Booting Time of a Toro Appliance</h2>
<hr>
<iframe width="560" height="315" src="https://www.youtube.com/embed/N-nqzo_vzHE" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
<div class="row">
<div class="col-md-8 mb-5">
<h2>ToroKernel at FaMAF Eclypsium (Spanish)</h2>
<hr>
<iframe width="560" height="315" src="https://www.youtube.com/embed/HGc8s_Ksjo8" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
<div class="row">
<div class="col-md-8 mb-5">
<h2>FOSDEM'18: Reducing CPU usage of a Toro Appliance</h2>
<hr>
<iframe width="560" height="315" src="https://www.youtube.com/embed/aKUrUCwCyY8" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
<div class="row">
<div class="col-md-8 mb-5">
<h2>Supported Hypervisors</h2>
<hr>
<p>Toro is able to run as a guest or baremetal. Currently, it has been successfully tested on Qemu-KVM, Xen, VirtualBox and HyperV. Recently, Toro has been tested on Firecraker and NEMU. These solutions propose an optimized Virtual Machine Monitor (VMM) that simplifies the device model among other features.</p>
</div>
</div>
<div class="row">
<div class="col-md-8 mb-5">
<h2>Supported Cloud Providers</h2>
<hr>
<p><ul>
<li><a href="https://github.com/torokernel/torokernel/wiki/How-to-run-an-Instance-of-Toro-in-Google-Compute-Engine">Try Toro in Google Cloud Engine</a>
<li><a href="https://github.com/torokernel/torokernel/wiki/How-to-run-an-Instance-of-Toro-in-Amazon-Web-Service">Try Toro in Amazon Web Service</a>
</ul>
</p>
</div>
</div>
<div class="row">
<div class="col-md-8 mb-5">
<h2>Recent Posts</h2>
<hr>
<script language="JavaScript" src="https://feed2js.org//feed2js.php?src=http%3A%2F%2Ftorokerneleng.blogspot.com%2Ffeeds%2Fposts%2Fdefault&num=4&desc=100&au=y&utf=y" charset="UTF-8" type="text/javascript"></script>
</div>
</div>
<div class="row">
<div class="col-md-8 mb-5">
<h2 id="GetStart">Getting Started</h2>
<hr>
<p>Toro is hosted in <a href="http://github.com/torokernel/">Github</a> and includes several examples that can be used as a starting point for your projects. The examples include instructions to build and execute them. You can find these instructions <a href="http://github.com/torokernel/torokernel/blob/master/README.md">here</a>.</p>
</div>
</div>
<div class="row">
<div class="col-md-8 mb-5">
<h2>How can you contribute?</h2>
<hr>
<p>There are plenty room for improvements! To report an issue or propose a feature, please follow <a href="https://github.com/torokernel/torokernel/wiki/How-to-Contribute">this</a> guideline. If you want to help in the development, you can pick up any of the issues from <a href="https://github.com/torokernel/torokernel/issues">here</a>. If you do not know what to pick, do not hesitate to ask! tickets labeled as help wanted may be a good start.</p>
</div>
</div>
<div class="row">
<div class="col-md-8 mb-5">
<h2>Donations by using BTC</h2>
<hr>
<img src="./images/btcaddr.png" alt="BTC Address">
</div>
</div>
</div>
<!-- /.container -->
<!-- Footer -->
<footer class="py-5 bg-dark">
<div class="container">
<p class="m-0 text-center text-white">Copyright © ToroKernel 2021</p>
</div>
<!-- /.container -->
</footer>
<!-- Bootstrap core JavaScript -->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
</body>
</html>