]> git.proxmox.com Git - ceph.git/blob - ceph/src/seastar/doc/tutorial.md
import 15.2.0 Octopus source
[ceph.git] / ceph / src / seastar / doc / tutorial.md
1 % Asynchronous Programming with Seastar
2 % Nadav Har'El - nyh@ScyllaDB.com
3 Avi Kivity - avi@ScyllaDB.com
4
5 # Introduction
6 **Seastar**, which we introduce in this document, is a C++ library for writing highly efficient complex server applications on modern multi-core machines.
7
8 Traditionally, the programming languages libraries and frameworks used for writing server applications have been divided into two distinct camps: those focusing on efficiency, and those focusing on complexity. Some frameworks are extremely efficient and yet allow building only simple applications (e.g., DPDK allows applications which process packets individually), while other frameworks allow building extremely complex applications, at the cost of run-time efficiency. Seastar is our attempt to get the best of both worlds: To create a library which allows building highly complex server applications, and yet achieve optimal performance.
9
10 The inspiration and first use case of Seastar was Scylla, a rewrite of Apache Cassandra. Cassandra is a very complex application, and yet, with Seastar we were able to re-implement it with as much as 10-fold throughput increase, as well as significantly lower and more consistent latencies.
11
12 Seastar offers a complete asynchronous programming framework, which uses two concepts - **futures** and **continuations** - to uniformly represent, and handle, every type of asynchronous event, including network I/O, disk I/O, and complex combinations of other events.
13
14 Since modern multi-core and multi-socket machines have steep penalties for sharing data between cores (atomic instructions, cache line bouncing and memory fences), Seastar programs use the share-nothing programming model, i.e., the available memory is divided between the cores, each core works on data in its own part of memory, and communication between cores happens via explicit message passing (which itself happens using the SMP's shared memory hardware, of course).
15
16 ## Asynchronous programming
17 A server for a network protocol, such as the classic HTTP (Web) or SMTP (e-mail) servers, inherently deals with parallelism: Multiple clients send requests in parallel, and we cannot finish handling one request before starting to handle the next: A request may, and often does, need to block because of various reasons --- a full TCP window (i.e., a slow connection), disk I/O, or even the client holding on to an inactive connection --- and the server needs to handle other connections as well.
18
19 The most straightforward way to handle such parallel connections, employed by classic network servers such as Inetd, Apache Httpd and Sendmail, is to use a separate operating-system process per connection. This technique evolved over the years to improve its performance: At first, a new process was spawned to handle each new connection; Later, a pool of existing processes was kept and each new connection was assigned to an unemployed process from the pool; Finally, the processes were replaced by threads. However, the common idea behind all these implementations is that at each moment, each process handles exclusively a single connection. Therefore, the server code is free to use blocking system calls, such as reading or writing to a connection, or reading from disk, and if this process blocks, all is well because we have many additional processes ready to handle other connections.
20
21 Programming a server which uses a process (or a thread) per connection is known as *synchronous* programming, because the code is written linearly, and one line of code starts to run after the previous line finished. For example, the code may read a request from a socket, parse the request, and then piecemeal read a file from disk and write it back to the socket. Such code is easy to write, almost like traditional non-parallel programs. In fact, it's even possible to run an external non-parallel program to handle each request --- this is for example how Apache HTTPd ran "CGI" programs, the first implementation of dynamic Web-page generation.
22
23 >NOTE: although the synchronous server application is written in a linear, non-parallel, fashion, behind the scenes the kernel helps ensure that everything happens in parallel and the machine's resources --- CPUs, disk and network --- are fully utilized. Beyond the process parallelism (we have multiple processes handling multiple connections in parallel), the kernel may even parallelize the work of one individual connection --- for example process an outstanding disk request (e.g., read from a disk file) in parallel with handling the network connection (send buffered-but-yet-unsent data, and buffer newly-received data until the application is ready to read it).
24
25 But synchronous, process-per-connection, server programming didn't come without disadvantages and costs. Slowly but surely, server authors realized that starting a new process is slow, context switching is slow, and each process comes with significant overheads --- most notably the size of its stack. Server and kernel authors worked hard to mitigate these overheads: They switched from processes to threads, from creating new threads to thread pools, they lowered default stack size of each thread, and increased the virtual memory size to allow more partially-utilized stacks. But still, servers with synchronous designs had unsatisfactory performance, and scaled badly as the number of concurrent connections grew. In 1999, Dan Kigel popularized "the C10K problem", the need of a single server to efficiently handle 10,000 concurrent connections --- most of them slow or even inactive.
26
27 The solution, which became popular in the following decade, was to abandon the cozy but inefficient synchronous server design, and switch to a new type of server design --- the *asynchronous*, or *event-driven*, server. An event-driven server has just one thread, or more accurately, one thread per CPU. This single thread runs a tight loop which, at each iteration, checks, using ```poll()``` (or the more efficient ```epoll```) for new events on many open file descriptors, e.g., sockets. For example, an event can be a socket becoming readable (new data has arrived from the remote end) or becoming writable (we can send more data on this connection). The application handles this event by doing some non-blocking operations, modifying one or more of the file descriptors, and maintaining its knowledge of the _state_ of this connection.
28
29 However, writers of asynchronous server applications faced, and still face today, two significant challenges:
30
31 * **Complexity:** Writing a simple asynchronous server is straightforward. But writing a *complex* asynchronous server is notoriously difficult. The handling of a single connection, instead of being a simple easy-to-read function call, now involves a large number of small callback functions, and a complex state machine to remember which function needs to be called when each event occurs.
32
33 * **Non-blocking:** Having just one thread per core is important for the performance of the server application, because context switches are slow. However, if we only have one thread per core, the event-handling functions must _never_ block, or the core will remain idle. But some existing programming languages and frameworks leave the server author no choice but to use blocking functions, and therefore multiple threads.
34 For example, ```Cassandra``` was written as an asynchronous server application; But because disk I/O was implemented with ```mmap```ed files, which can uncontrollably block the whole thread when accessed, they are forced to run multiple threads per CPU.
35
36 Moreover, when the best possible performance is desired, the server application, and its programming framework, has no choice but to also take the following into account:
37
38 * **Modern Machines**: Modern machines are very different from those of just 10 years ago. They have many cores and deep memory hierarchies (from L1 caches to NUMA) which reward certain programming practices and penalizes others: Unscalable programming practices (such as taking locks) can devastate performance on many cores; Shared memory and lock-free synchronization primitives are available (i.e., atomic operations and memory-ordering fences) but are dramatically slower than operations that involve only data in a single core's cache, and also prevent the application from scaling to many cores.
39
40 * **Programming Language:** High-level languages such Java, Javascript, and similar "modern" languages are convenient, but each comes with its own set of assumptions which conflict with the requirements listed above. These languages, aiming to be portable, also give the programmer less control over the performance of critical code. For really optimal performance, we need a programming language which gives the programmer full control, zero run-time overheads, and on the other hand --- sophisticated compile-time code generation and optimization.
41
42 Seastar is a framework for writing asynchronous server applications which aims to solve all four of the above challenges: It is a framework for writing *complex* asynchronous applications involving both network and disk I/O. The framework's fast path is entirely single-threaded (per core), scalable to many cores and minimizes the use of costly sharing of memory between cores. It is a C++14 library, giving the user sophisticated compile-time features and full control over performance, without run-time overhead.
43
44 ## Seastar
45
46
47 Seastar is an event-driven framework allowing you to write non-blocking, asynchronous code in a relatively straightforward manner (once understood). Its APIs are based on futures. Seastar utilizes the following concepts to achieve extreme performance:
48
49 * **Cooperative micro-task scheduler**: instead of running threads, each core runs a cooperative task scheduler. Each task is typically very lightweight -- only running for as long as it takes to process the last I/O operation's result and to submit a new one.
50 * **Share-nothing SMP architecture**: each core runs independently of other cores in an SMP system. Memory, data structures, and CPU time are not shared; instead, inter-core communication uses explicit message passing. A Seastar core is often termed a shard. TODO: more here https://github.com/scylladb/seastar/wiki/SMP
51 * **Future based APIs**: futures allow you to submit an I/O operation and to chain tasks to be executed on completion of the I/O operation. It is easy to run multiple I/O operations in parallel - for example, in response to a request coming from a TCP connection, you can issue multiple disk I/O requests, send messages to other cores on the same system, or send requests to other nodes in the cluster, wait for some or all of the results to complete, aggregate the results, and send a response.
52 * **Share-nothing TCP stack**: while Seastar can use the host operating system's TCP stack, it also provides its own high-performance TCP/IP stack built on top of the task scheduler and the share-nothing architecture. The stack provides zero-copy in both directions: you can process data directly from the TCP stack's buffers, and send the contents of your own data structures as part of a message without incurring a copy. Read more...
53 * **DMA-based storage APIs**: as with the networking stack, Seastar provides zero-copy storage APIs, allowing you to DMA your data to and from your storage devices.
54
55 This tutorial is intended for developers already familiar with the C++ language, and will cover how to use Seastar to create a new application.
56
57 TODO: copy text from https://github.com/scylladb/seastar/wiki/SMP
58 https://github.com/scylladb/seastar/wiki/Networking
59
60 # Getting started
61
62 The simplest Seastar program is this:
63
64 ```cpp
65 #include <seastar/core/app-template.hh>
66 #include <seastar/core/reactor.hh>
67 #include <iostream>
68
69 int main(int argc, char** argv) {
70 seastar::app_template app;
71 app.run(argc, argv, [] {
72 std::cout << "Hello world\n";
73 return seastar::make_ready_future<>();
74 });
75 }
76 ```
77
78 As we do in this example, each Seastar program must define and run, an `app_template` object. This object starts the main event loop (the Seastar *engine*) on one or more CPUs, and then runs the given function - in this case an unnamed function, a *lambda* - once.
79
80 The `return make_ready_future<>();` causes the event loop, and the whole application, to exit immediately after printing the "Hello World" message. In a more typical Seastar application, we will want event loop to remain alive and process incoming packets (for example), until explicitly exited. Such applications will return a _future_ which determines when to exit the application. We will introduce futures and how to use them below. In any case, the regular C `exit()` should not be used, because it prevents Seastar or the application from cleaning up appropriately.
81
82 As shown in this example, all Seastar functions and types live in the "`seastar`" namespace. An user can either type this namespace prefix every time, or use shortcuts like "`using seastar::app_template`" or even "`using namespace seastar`" to avoid typing this prefix. We generally recommend to use the namespace prefixes `seastar` and `std` explicitly, and will will follow this style in all the examples below.
83
84 To compile this program, first make sure you have downloaded, built, and optionally installed Seastar, and put the above program in a source file anywhere you want, let's call the file `getting-started.cc`.
85
86 Linux's [pkg-config](http://www.freedesktop.org/wiki/Software/pkg-config/) is one way for easily determining the compilation and linking parameters needed for using various libraries - such as Seastar. For example, if Seastar was built in the directory `$SEASTAR` but not installed, one can compile `getting-started.cc` with it using the command:
87 ```
88 c++ getting-started.cc `pkg-config --cflags --libs --static $SEASTAR/build/release/seastar.pc`
89 ```
90 The "`--static`" is needed because currently, Seastar is built as a static library, so we need to tell `pkg-config` to include its dependencies in the link command (whereas, had Seastar been a shared library, it could have pulled in its own dependencies).
91
92 If Seastar _was_ installed, the `pkg-config` command line is even shorter:
93 ```
94 c++ getting-started.cc `pkg-config --cflags --libs --static seastar`
95 ```
96
97 Alternatively, one can easily build a Seastar program with CMake. Given the following `CMakeLists.txt`
98
99 ```cmake
100 cmake_minimum_required (VERSION 3.5)
101
102 project (SeastarExample)
103
104 find_package (Seastar REQUIRED)
105
106 add_executable (example
107 getting-started.cc)
108
109 target_link_libraries (example
110 PRIVATE Seastar::seastar)
111 ```
112
113 you can compile the example with the following commands:
114
115 ```none
116 $ mkdir build
117 $ cd build
118 $ cmake ..
119 $ make
120 ```
121
122 The program now runs as expected:
123 ```none
124 $ ./example
125 Hello world
126 $
127 ```
128
129 # Threads and memory
130 ## Seastar threads
131 As explained in the introduction, Seastar-based programs run a single thread on each CPU. Each of these threads runs its own event loop, known as the *engine* in Seastar nomenclature. By default, the Seastar application will take over all the available cores, starting one thread per core. We can see this with the following program, printing `seastar::smp::count` which is the number of started threads:
132
133 ```cpp
134 #include <seastar/core/app-template.hh>
135 #include <seastar/core/reactor.hh>
136 #include <iostream>
137
138 int main(int argc, char** argv) {
139 seastar::app_template app;
140 app.run(argc, argv, [] {
141 std::cout << seastar::smp::count << "\n";
142 return seastar::make_ready_future<>();
143 });
144 }
145 ```
146
147 On a machine with 4 hardware threads (two cores, and hyperthreading enabled), Seastar will by default start 4 engine threads:
148
149 ```none
150 $ ./a.out
151 4
152 ```
153
154 Each of these 4 engine threads will be pinned (a la **taskset(1)**) to a different hardware thread. Note how, as we mentioned above, the app's initialization function is run only on one thread, so we see the ouput "4" only once. Later in the tutorial we'll see how to make use of all threads.
155
156 The user can pass a command line parameter, `-c`, to tell Seastar to start fewer threads than the available number of hardware threads. For example, to start Seastar on only 2 threads, the user can do:
157 ```none
158 $ ./a.out -c2
159 2
160 ```
161 When the machine is configured as in the example above - two cores with two hyperthreads on each - and only two threads are requested, Seastar ensures that each thread is pinned to a different core, and we don't get the two threads competing as hyperthreads of the same core (which would, of course, damage performance).
162
163 We cannot start more threads than the number of hardware threads, as allowing this will be grossly inefficient. Trying it will result in an error:
164 ```none
165 $ ./a.out -c5
166 terminate called after throwing an instance of 'std::runtime_error'
167 what(): insufficient processing units
168 abort (core dumped)
169 ```
170
171 The error is an exception thrown from app.run, which we did not catch, leading to this ugly uncaught-exception crash. It is better to catch this sort of startup exceptions, and exit gracefully without a core dump:
172
173 ```cpp
174 #include <seastar/core/app-template.hh>
175 #include <seastar/core/reactor.hh>
176 #include <iostream>
177 #include <stdexcept>
178
179 int main(int argc, char** argv) {
180 seastar::app_template app;
181 try {
182 app.run(argc, argv, [] {
183 std::cout << seastar::smp::count << "\n";
184 return seastar::make_ready_future<>();
185 });
186 } catch(...) {
187 std::cerr << "Failed to start application: "
188 << std::current_exception() << "\n";
189 return 1;
190 }
191 return 0;
192 }
193 ```
194 ```none
195 $ ./a.out -c5
196 Couldn't start application: std::runtime_error (insufficient processing units)
197 ```
198
199 Note that catching the exceptions this way does **not** catch exceptions thrown in the application's actual asynchronous code. We will discuss these later in this tutorial.
200
201 ## Seastar memory
202 As explained in the introduction, Seastar applications shard their memory. Each thread is preallocated with a large piece of memory (on the same NUMA node it is running on), and uses only that memory for its allocations (such as `malloc()` or `new`).
203
204 By default, the machine's **entire memory** except a certain reservation left for the OS (defaulting to the maximum of 1.5G or 7% of total memory) is pre-allocated for the application in this manner. This default can be changed by *either* changing the amount reserved for the OS (not used by Seastar) with the `--reserve-memory` option, or by explicitly giving the amount of memory given to the Seastar application, with the `-m` option. This amount of memory can be in bytes, or using the units "k", "M", "G" or "T". These units use the power-of-two values: "M" is a **mebibyte**, 2^20 (=1,048,576) bytes, not a **megabyte** (10^6 or 1,000,000 bytes).
205
206 Trying to give Seastar more memory than physical memory immediately fails:
207 ```none
208 $ ./a.out -m10T
209 Couldn't start application: std::runtime_error (insufficient physical memory)
210 ```
211
212 # Introducing futures and continuations
213 Futures and continuations, which we will introduce now, are the building blocks of asynchronous programming in Seastar. Their strength lies in the ease of composing them together into a large, complex, asynchronous program, while keeping the code fairly readable and understandable.
214
215 A [future](\ref future) is a result of a computation that may not be available yet.
216 Examples include:
217
218 * a data buffer that we are reading from the network
219 * the expiration of a timer
220 * the completion of a disk write
221 * the result of a computation that requires the values from
222 one or more other futures.
223
224 The type `future<int>` variable holds an int that will eventually be available - at this point might already be available, or might not be available yet. The method available() tests if a value is already available, and the method get() gets the value. The type `future<>` indicates something which will eventually complete, but not return any value.
225
226 A future is usually returned by an **asynchronous function**, a function which returns a future and arranges for this future to be eventually resolved. Because asynchrnous functions _promise_ to eventually resolve the future which they returned, asynchronous functions are sometimes called "promises"; But we will avoid this term because it tends to confuse more than it explains.
227
228 One simple example of an asynchronous function is Seastar's function sleep():
229
230 ```cpp
231 future<> sleep(std::chrono::duration<Rep, Period> dur);
232 ```
233
234 This function arranges a timer so that the returned future becomes available (without an associated value) when the given time duration elapses.
235
236 A **continuation** is a callback (typically a lambda) to run when a future becomes available. A continuation is attached to a future with the `then()` method. Here is a simple example:
237
238 ```cpp
239 #include <seastar/core/app-template.hh>
240 #include <seastar/core/sleep.hh>
241 #include <iostream>
242
243 int main(int argc, char** argv) {
244 seastar::app_template app;
245 app.run(argc, argv, [] {
246 std::cout << "Sleeping... " << std::flush;
247 using namespace std::chrono_literals;
248 return seastar::sleep(1s).then([] {
249 std::cout << "Done.\n";
250 });
251 });
252 }
253 ```
254
255 In this example we see us getting a future from `seastar::sleep(1s)`, and attaching to it a continuation which prints a "Done." message. The future will become available after 1 second has passed, at which point the continuation is executed. Running this program, we indeed see the message "Sleeping..." immediately, and one second later the message "Done." appears and the program exits.
256
257 The return value of `then()` is itself a future which is useful for chaining multiple continuations one after another, as we will explain below. But here we just note that we `return` this future from `app.run`'s function, so that the program will exit only after both the sleep and its continuation are done.
258
259 To avoid repeating the boilerplate "app_engine" part in every code example in this tutorial, let's create a simple main() with which we will compile the following examples. This main just calls function `future<> f()`, does the appropriate exception handling, and exits when the future returned by `f` is resolved:
260
261 ```cpp
262 #include <seastar/core/app-template.hh>
263 #include <seastar/util/log.hh>
264 #include <iostream>
265 #include <stdexcept>
266
267 extern seastar::future<> f();
268
269 int main(int argc, char** argv) {
270 seastar::app_template app;
271 try {
272 app.run(argc, argv, f);
273 } catch(...) {
274 std::cerr << "Couldn't start application: "
275 << std::current_exception() << "\n";
276 return 1;
277 }
278 return 0;
279 }
280 ```
281
282 Compiling together with this `main.cc`, the above sleep() example code becomes:
283
284 ```cpp
285 #include <seastar/core/sleep.hh>
286 #include <iostream>
287
288 seastar::future<> f() {
289 std::cout << "Sleeping... " << std::flush;
290 using namespace std::chrono_literals;
291 return seastar::sleep(1s).then([] {
292 std::cout << "Done.\n";
293 });
294 }
295 ```
296
297 So far, this example was not very interesting - there is no parallelism, and the same thing could have been achieved by the normal blocking POSIX `sleep()`. Things become much more interesting when we start several sleep() futures in parallel, and attach a different continuation to each. Futures and continuation make parallelism very easy and natural:
298
299 ```cpp
300 #include <seastar/core/sleep.hh>
301 #include <iostream>
302
303 seastar::future<> f() {
304 std::cout << "Sleeping... " << std::flush;
305 using namespace std::chrono_literals;
306 seastar::sleep(200ms).then([] { std::cout << "200ms " << std::flush; });
307 seastar::sleep(100ms).then([] { std::cout << "100ms " << std::flush; });
308 return seastar::sleep(1s).then([] { std::cout << "Done.\n"; });
309 }
310 ```
311
312 Each `sleep()` and `then()` call returns immediately: `sleep()` just starts the requested timer, and `then()` sets up the function to call when the timer expires. So all three lines happen immediately and f returns. Only then, the event loop starts to wait for the three outstanding futures to become ready, and when each one becomes ready, the continuation attached to it is run. The output of the above program is of course:
313 ```none
314 $ ./a.out
315 Sleeping... 100ms 200ms Done.
316 ```
317
318 `sleep()` returns `future<>`, meaning it will complete at a future time, but once complete, does not return any value. More interesting futures do specify a value of any type (or multiple values) that will become available later. In the following example, we have a function returning a `future<int>`, and a continuation to be run once this value becomes available. Note how the continuation gets the future's value as a parameter:
319
320 ```cpp
321 #include <seastar/core/sleep.hh>
322 #include <iostream>
323
324 seastar::future<int> slow() {
325 using namespace std::chrono_literals;
326 return seastar::sleep(100ms).then([] { return 3; });
327 }
328
329 seastar::future<> f() {
330 return slow().then([] (int val) {
331 std::cout << "Got " << val << "\n";
332 });
333 }
334 ```
335
336 The function `slow()` deserves more explanation. As usual, this function returns a future<int> immediately, and doesn't wait for the sleep to complete, and the code in `f()` can chain a continuation to this future's completion. The future returned by `slow()` is itself a chain of futures: It will become ready once sleep's future becomes ready and then the value 3 is returned. We'll explain below in more details how `then()` returns a future, and how this allows *chaining* futures.
337
338 This example begins to show the convenience of the futures programming model, which allows the programmer to neatly encapsulate complex asynchronous operations. slow() might involve a complex asynchronous operation requiring multiple steps, but its user can use it just as easily as a simple sleep(), and Seastar's engine takes care of running the continuations whose futures have become ready at the right time.
339
340 ## Ready futures
341 A future value might already be ready when `then()` is called to chain a continuation to it. This important case is optimized, and *usually* the continuation is run immediately instead of being registered to run later in the next iteration of the event loop.
342
343 This optimization is done *usually*, though sometimes it is avoided: The implementation of `then()` holds a counter of such immediate continuations, and after many continuations have been run immediately without returning to the event loop (currently the limit is 256), the next continuation is deferred to the event loop in any case. This is important because in some cases (such as future loops, discussed later) we could find that each ready continuation spawns a new one, and without this limit we can starve the event loop. It important not to starve the event loop, as this would starve continuations of futures that weren't ready but have since become ready, and also starve the important **polling** done by the event loop (e.g., checking whether there is new activity on the network card).
344
345 `make_ready_future<>` can be used to return a future which is already ready. The following example is identical to the previous one, except the promise function `fast()` returns a future which is already ready, and not one which will be ready in a second as in the previous example. The nice thing is that the consumer of the future does not care, and uses the future in the same way in both cases.
346
347 ```cpp
348 #include <seastar/core/future.hh>
349 #include <iostream>
350
351 seastar::future<int> fast() {
352 return seastar::make_ready_future<int>(3);
353 }
354
355 seastar::future<> f() {
356 return fast().then([] (int val) {
357 std::cout << "Got " << val << "\n";
358 });
359 }
360 ```
361
362 # Continuations
363 ## Capturing state in continuations
364
365 We've already seen that Seastar *continuations* are lambdas, passed to the `then()` method of a future. In the examples we've seen so far, lambdas have been nothing more than anonymous functions. But C++11 lambdas have one more trick up their sleeve, which is extremely important for future-based asynchronous programming in Seastar: Lambdas can **capture** state. Consider the following example:
366
367 ```cpp
368 #include <seastar/core/sleep.hh>
369 #include <iostream>
370
371 seastar::future<int> incr(int i) {
372 using namespace std::chrono_literals;
373 return seastar::sleep(10ms).then([i] { return i + 1; });
374 }
375
376 seastar::future<> f() {
377 return incr(3).then([] (int val) {
378 std::cout << "Got " << val << "\n";
379 });
380 }
381 ```
382
383 The future operation `incr(i)` takes some time to complete (it needs to sleep a bit first...), and in that duration, it needs to save the `i` value it is working on. In the early event-driven programming models, the programmer needed to explicitly define an object for holding this state, and to manage all these objects. Everything is much simpler in Seastar, with C++11's lambdas: The *capture syntax* "`[i]`" in the above example means that the value of i, as it existed when incr() was called() is captured into the lambda. The lambda is not just a function - it is in fact an *object*, with both code and data. In essence, the compiler created for us automatically the state object, and we neither need to define it, nor to keep track of it (it gets saved together with the continuation, when the continuation is deferred, and gets deleted automatically after the continuation runs).
384
385 One implementation detail worth understanding is that when a continuation has captured state and is run immediately, this capture incurs no runtime overhead. However, when the continuation cannot be run immediately (because the future is not yet ready) and needs to be saved till later, memory needs to be allocated on the heap for this data, and the continuation's captured data needs to be copied there. This has runtime overhead, but it is unavoidable, and is very small compared to the related overhead in the threaded programming model (in a threaded program, this sort of state usually resides on the stack of the blocked thread, but the stack is much larger than our tiny capture state, takes up a lot of memory and causes a lot of cache pollution on context switches between those threads).
386
387 In the above example, we captured `i` *by value* - i.e., a copy of the value of `i` was saved into the continuation. C++ has two additional capture options: capturing by *reference* and capturing by *move*:
388
389 Using capture-by-reference in a continuation is usually a mistake, and can lead to serious bugs. For example, if in the above example we captured a reference to i, instead of copying it,
390 ```cpp
391 seastar::future<int> incr(int i) {
392 using namespace std::chrono_literals;
393 // Oops, the "&" below is wrong:
394 return seastar::sleep(10ms).then([&i] { return i + 1; });
395 }
396 ```
397 this would have meant that the continuation would contain the address of `i`, not its value. But `i` is a stack variable, and the incr() function returns immediately, so when the continuation eventually gets to run, long after incr() returns, this address will contain unrelated content.
398
399 An exception to the capture-by-reference-is-usually-a-mistake rule is the `do_with()` idiom, which we will introduce later. This idiom ensures that an object lives throughout the life of the continuation, and makes capture-by-reference possible, and very convenient.
400
401 Using capture-by-*move* in continuations is also very useful in Seastar applications. By **moving** an object into a continuation, we transfer ownership of this object to the continuation, and make it easy for the object to be automatically deleted when the continuation ends. For example, consider a traditional function taking a std::unique_ptr<T>.
402 ```cpp
403 int do_something(std::unique_ptr<T> obj) {
404 // do some computation based on the contents of obj, let's say the result is 17
405 return 17;
406 // at this point, obj goes out of scope so the compiler delete()s it.
407 ```
408 By using unique_ptr in this way, the caller passes an object to the function, but tells it the object is now its exclusive responsibility - and when the function is done with the object, it automatically deletes it. How do we use unique_ptr in a continuation? The following won't work:
409
410 ```cpp
411 seastar::future<int> slow_do_something(std::unique_ptr<T> obj) {
412 using namespace std::chrono_literals;
413 // The following line won't compile...
414 return seastar::sleep(10ms).then([obj] () mutable { return do_something(std::move(obj)); });
415 }
416 ```
417
418 The problem is that a unique_ptr cannot be passed into a continuation by value, as this would require copying it, which is forbidden because it violates the guarantee that only one copy of this pointer exists. We can, however, *move* obj into the continuation:
419 ```cpp
420 seastar::future<int> slow_do_something(std::unique_ptr<T> obj) {
421 using namespace std::chrono_literals;
422 return seastar::sleep(10ms).then([obj = std::move(obj)] () mutable {
423 return do_something(std::move(obj));
424 });
425 }
426 ```
427 Here the use of `std::move()` causes obj's move-assignment is used to move the object from the outer function into the continuation. The notion of move (*move semantics*), introduced in C++11, is similar to a shallow copy followed by invalidating the source copy (so that the two copies do not co-exist, as forbidden by unique_ptr). After moving obj into the continuation, the top-level function can no longer use it (in this case it's of course ok, because we return anyway).
428
429 The `[obj = ...]` capture syntax we used here is new to C++14. This is the main reason why Seastar requires C++14, and does not support older C++11 compilers.
430
431 The extra `() mutable` syntax was needed here because by default when C++ captures a value (in this case, the value of std::move(obj)) into a lambda, it makes this value read-only, so our lambda cannot, in this example, move it again. Adding `mutable` removes this artificial restriction.
432
433 ## Chaining continuations
434 TODO: We already saw chaining example in slow() above. talk about the return from then, and returning a future and chaining more thens.
435
436 # Handling exceptions
437
438 An exception thrown in a continuation is implicitly captured by the system and stored in the future. A future that stores such an exception is similar to a ready future in that it can cause its continuation to be launched, but it does not contain a value -- only the exception.
439
440 Calling `.then()` on such a future skips over the continuation, and transfers the exception for the input future (the object on which `.then()` is called) to the output future (`.then()`'s return value).
441
442 This default handling parallels normal exception behavior -- if an exception is thrown in straight-line code, all following lines are skipped:
443
444 ```cpp
445 line1();
446 line2(); // throws!
447 line3(); // skipped
448 ```
449
450 is similar to
451
452 ```cpp
453 return line1().then([] {
454 return line2(); // throws!
455 }).then([] {
456 return line3(); // skipped
457 });
458 ```
459
460 Usually, aborting the current chain of operations and returning an exception is what's needed, but sometimes more fine-grained control is required. There are several primitives for handling exceptions:
461
462 1. `.then_wrapped()`: instead of passing the values carried by the future into the continuation, `.then_wrapped()` passes the input future to the continuation. The future is guaranteed to be in ready state, so the continuation can examine whether it contains a value or an exception, and take appropriate action.
463 2. `.finally()`: similar to a Java finally block, a `.finally()` continuation is executed whether or not its input future carries an exception or not. The result of the finally continuation is its input future, so `.finally()` can be used to insert code in a flow that is executed unconditionally, but otherwise does not alter the flow.
464
465 TODO: give example code for the above. Also mention handle_exception - although perhaps delay that to a later chapter?
466
467 ## Exceptions vs. exceptional futures
468 An asynchronous function can fail in one of two ways: It can fail immediately, by throwing an exception, or it can return a future which will eventually fail (resolve to an exception). These two modes of failure appear similar to the uninitiated, but behave differently when attempting to handle exceptions using `finally()`, `handle_exception()`, or `then_wrapped()`. For example, consider the code:
469
470 ```cpp
471 #include <seastar/core/future.hh>
472 #include <iostream>
473 #include <exception>
474
475 class my_exception : public std::exception {
476 virtual const char* what() const noexcept override { return "my exception"; }
477 };
478
479 seastar::future<> fail() {
480 return seastar::make_exception_future<>(my_exception());
481 }
482
483 seastar::future<> f() {
484 return fail().finally([] {
485 std::cout << "cleaning up\n";
486 });
487 }
488 ```
489
490 This code will, as expected, print the "cleaning up" message - the asynchronous function `fail()` returns a future which resolves to a failure, and the `finally()` continuation is run despite this failure, as expected.
491
492 Now consider that in the above example we had a different definition for `fail()`:
493
494 ```cpp
495 seastar::future<> fail() {
496 throw my_exception();
497 }
498 ```
499
500 Here, `fail()` does not return a failing future. Rather, it fails to return a future at all! The exception it throws stops the entire function `f()`, and the `finally()` continuation does not not get attached to the future (which was never returned), and will never run. The "cleaning up" message is not printed now.
501
502 We recommend that to reduce the chance for such errors, asynchronous functions should always return a failed future rather than throw an actual exception. If the asynchronous function calls another function _before_ returning a future, and that second function might throw, it should use `try`/`catch` to catch the exception and convert it into a failed future:
503
504 ```cpp
505 void inner() {
506 throw my_exception();
507 }
508 seastar::future<> fail() {
509 try {
510 inner();
511 } catch(...) {
512 return seastar::make_exception_future(std::current_exception());
513 }
514 return seastar::make_ready_future<>();
515 }
516 ```
517
518 Here, `fail()` catches the exception thrown by `inner()`, whatever it might be, and returns a failed future with that failure. Written this way, the `finally()` continuation will be reached, and the "cleaning up" message printed.
519
520 >Despite this recommendation that asynchronous functions avoid throwing, some asynchronous functions do throw exceptions in addition to returning exceptional futures. A common example are functions which allocate memory and throw `std::bad_alloc` when running out of memory, instead of returning a future. The `future<> seastar::semaphore::wait()` method is one such function: It returns a future which may be exceptional if the semaphore was `broken()` or the wait timed out, but may also *throw* an exception when failing to allocate memory it needs to hold the list of waiters.
521 > Therefore, unless a function --- including asynchronous functions --- is explicitly tagged "`noexcept`", the application should be prepared to handle exceptions thrown from it. In modern C++, code usually uses RAII to be exception-safe without sprinkling it with `try`/`catch`. `seastar::defer()` is a RAII-based idiom that ensures that some cleanup code is run even if an exception is thrown.
522
523
524 Seastar has a convenient generic function, `futurize_apply()`, which can be useful here. `futurize_apply(func, args...)` runs a function which may return either a future value or an immediate value, and in both cases convert the result into a future value. `futurize_apply()` also converts an immediate exception thrown by the function, if any, into a failed future, just like we did above. So using `futurize_apply()` we can make the above example work even if `fail()` did throw exceptions:
525
526 ```cpp
527 seastar::future<> fail() {
528 throw my_exception();
529 }
530 seastar::future<> f() {
531 return seastar::futurize_apply(fail).finally([] {
532 std::cout << "cleaning up\n";
533 });
534 }
535 ```
536
537 Note that most of this discussion becomes moot if the risk of exception is inside a _continuation_. Consider the following code:
538
539 ```cpp
540 seastar::future<> f() {
541 return seastar::sleep(1s).then([] {
542 throw my_exception();
543 }).finally([] {
544 std::cout << "cleaning up\n";
545 });
546 }
547 ```
548
549 Here, the lambda function of the first continuation does throw an exception instead of returning a failed future. However, we do _not_ have the same problem as before, which only happened because an asynchronous function threw an exception _before_ returning a valid future. Here, `f()` does return a valid future immediately - the failure will only be known later, after `sleep()` resolves. The message in `finally()` will be printed. Under the hood, the methods which attach continuations (such as `then()` and `finally()`) run the continuation functions using `futurize_apply()`, so continuation functions may return immediate values or, in this case, throw an immediate exception, and still work properly.
550
551 # Lifetime management
552 An asynchronous function starts an operation which may continue long after the function returns: The function itself returns a `future<T>` almost immediately, but it may take a while until this future is resolved.
553
554 When such an asynchronous operation needs to operate on existing objects, or to use temporary objects, we need to worry about the *lifetime* of these objects: We need to ensure that these objects do not get destroyed before the asynchronous function completes (or it will try to use the freed object and malfunction or crash), and to also ensure that the object finally get destroyed when it is no longer needed (otherwise we will have a memory leak).
555 Seastar offers a variety of mechanisms for safely and efficiently keeping objects alive for the right duration. In this section we will explore these mechanisms, and when to use each mechanism.
556
557 ## Passing ownership to continuation
558 The most straightforward way to ensure that an object is alive when a continuation runs and is destroyed afterwards is to pass its ownership to the continuation. When continuation *owns* the object, the object will be kept until the continuation runs, and will be destroyed as soon as the continuation is not needed (i.e., it may have run, or skipped in case of exception and `then()` continuation).
559
560 We already saw above that the way for a continuation to get ownership of an object is through *capturing*:
561
562 ```cpp
563 seastar::future<> slow_incr(int i) {
564 return seastar::sleep(10ms).then([i] { return i + 1; });
565 }
566 ```
567 Here the continuation captures the value of `i`. In other words, the continuation includes a copy of `i`. When the continuation runs 10ms later, it will have access to this value, and as soon as the continuation finishes its object is destroyed, together with its captured copy of `i`. The continuation owns this copy of `i`.
568
569 Capturing by value as we did here - making a copy of the object we need in the continuation - is useful mainly for very small objects such as the integer in the previous example. Other objects are expensive to copy, or sometimes even cannot be copied. For example, the following is **not** a good idea:
570 ```cpp
571 seastar::future<> slow_op(std::vector<int> v) {
572 // this makes another copy of v:
573 return seastar::sleep(10ms).then([v] { /* do something with v */ });
574 }
575 ```
576 This would be inefficient - as the vector `v`, potentially very long, will be copied and the copy will be saved in the continuation. In this example, there is no reason to copy `v` - it was anyway passed to the function by value and will not be used again after capturing it into the continuation, as right after the capture, the function returns and destroys its copy of `v`.
577
578 For such cases, C++14 allows *moving* the object into the continuation:
579 ```cpp
580 seastar::future<> slow_op(std::vector<int> v) {
581 // v is not copied again, but instead moved:
582 return seastar::sleep(10ms).then([v = std::move(v)] { /* do something with v */ });
583 }
584 ```
585 Now, instead of copying the object `v` into the continuation, it is *moved* into the continuation. The C++11-introduced move constructor moves the vector's data into the continuation and clears the original vector. Moving is a quick operation - for a vector it only requires copying a few small fields such as the pointer to the data. As before, once the continuation is dismissed the vector is destroyed - and its data array (which was moved in the move operation) is finally freed.
586
587 TODO: talk about temporary_buffer as an example of an object designed to be moved in this way.
588
589 In some cases, moving the object is undesirable. For example, some code keeps references to an object or one of its fields and the references become invalid if the object is moved. In some complex objects, even the move constructor is slow. For these cases, C++ provides the useful wrapper `std::unique_ptr<T>`. A `unique_ptr<T>` object owns an object of type `T` allocated on the heap. When a `unique_ptr<T>` is moved, the object of type T is not touched at all - just the pointer to it is moved. An example of using `std::unique_ptr<T>` in capture is:
590
591 ```cpp
592 seastar::future<> slow_op(std::unique_ptr<T> p) {
593 return seastar::sleep(10ms).then([p = std::move(p)] { /* do something with *p */ });
594 }
595 ```
596
597 `std::unique_ptr<T>` is the standard C++ mechanism for passing unique ownership of an object to a function: The object is only owned by one piece of code at a time, and ownership is transferred by moving the `unique_ptr` object. A `unique_ptr` cannot be copied: If we try to capture p by value, not by move, we will get a compilation error.
598
599 ## Keeping ownership at the caller
600
601 The technique we described above - giving the continuation ownership of the object it needs to work on - is powerful and safe. But often it becomes hard and verbose to use. When an asynchronous operation involves not just one continuation but a chain of continations that each needs to work on the same object, we need to pass the ownership of the object between each successive continuation, which can become inconvenient. It is especially inconvenient when we need to pass the same object into two seperate asynchronous functions (or continuations) - after we move the object into one, the object needs to be returned so it can be moved again into the second. E.g.,
602 ```cpp
603 seastar::future<> slow_op(T o) {
604 return seastar::sleep(10ms).then([o = std::move(o)] {
605 // first continuation, doing something with o
606 ...
607 // return o so the next continuation can use it!
608 return std::move(o);
609 }).then([](T o)) {
610 // second continuation, doing something with o
611 ...
612 });
613 }
614 ```
615
616 This complexity arises because we wanted asynchronous functions and continuations to take the ownership of the objects they operated on. A simpler approach would be to have the *caller* of the asynchronous function continue to be the owner of the object, and just pass *references* to the object to the various other asynchronous functions and continuations which need the object. For example:
617
618 ```cpp
619 seastar::future<> slow_op(T& o) { // <-- pass by reference
620 return seastar::sleep(10ms).then([&o] {// <-- capture by reference
621 // first continuation, doing something with o
622 ...
623 }).then([&o]) { // <-- another capture by reference
624 // second continuation, doing something with o
625 ...
626 });
627 }
628 ```
629
630 This approach raises a question: The caller of `slow_op` is now responsible for keeping the object `o` alive while the asynchronous code started by `slow_op` needs this object. But how will this caller know how long this object is actually needed by the asynchronous operation it started?
631
632 The most reasonable answer is that an asynchronous function may need access to its parameters until the future it returns is resolved - at which point the asynchronous code completes and no longer needs access to its parameters. We therefore recommend that Seastar code adopt the following convention:
633
634 > **Whenever an asynchronous function takes a parameter by reference, the caller must ensure that the referred object lives until the future returned by the function is resolved.**
635
636 Note that this is merely a convention suggested by Seastar, and unfortunately nothing in the C++ language enforces it. C++ programmers in non-Seastar programs often pass large objects to functions as a const reference just to avoid a slow copy, and assume that the called function will *not* save this reference anywhere. But in Seastar code, that is a dangerous practice because even if the asynchronous function did not intend to save the reference anywhere, it may end up doing it implicitly by passing this reference to another function and eventually capturing it in a continuation.
637
638 > It would be nice if future versions of C++ could help us catch incorrect uses of references. Perhaps we could have a tag for a special kind of reference, an "immediate reference" which a function can use use immediately (i.e, before returning a future), but cannot be captured into a continuation.
639
640 With this convention in place, it is easy to write complex asynchronous functions functions like `slow_op` which pass the object around, by reference, until the asynchronous operation is done. But how does the caller ensure that the object lives until the returned future is resolved? The following is *wrong*:
641 ```cpp
642 seastar::future<> f() {
643 T obj; // wrong! will be destroyed too soon!
644 return slow_op(obj);
645 }
646 ```
647 It is wrong because the object `obj` here is local to the call of `f`, and is destroyed as soon as `f` returns a future - not when this returned future is resolved! The correct thing for a caller to do would be to create the object `obj` on the heap (so it does not get destroyed as soon as `f` returns), and then run `slow_op(obj)` and when that future resolves (i.e., with `.finally()`), destroy the object.
648
649 Seastar provides a convenient idiom, `do_with()` for doing this correctly:
650 ```cpp
651 seastar::future<> f() {
652 return seastar::do_with(T(), [] (auto& obj) {
653 // obj is passed by reference to slow_op, and this is fine:
654 return slow_op(obj);
655 }
656 }
657 ```
658 `do_with` will *do* the given function *with* the given object alive.
659
660 `do_with` saves the given object on the heap, and calls the given lambda with a reference to the new object. Finally it ensures that the new object is destroyed after the returned future is resolved. Usually, do_with is given an *rvalue*, i.e., an unnamed temporary object or an `std::move()`ed object, and `do_with` moves that object into its final place on the heap. `do_with` returns a future which resolves after everything described above is done (the lambda's future is resolved and the object is destroyed).
661
662 For convenience, `do_with` can also be given multiple objects to hold alive. For example here we create two objects and hold alive them until the future resolves:
663 ```cpp
664 seastar::future<> f() {
665 return seastar::do_with(T1(), T2(), [] (auto& obj1, auto& obj2) {
666 return slow_op(obj1, obj2);
667 }
668 }
669 ```
670
671 While `do_with` can the lifetime of the objects it holds, if the user accidentally makes copies of these objects, these copies might have the wrong lifetime. Unfortunately, a simple typo like forgetting an "&" can cause such accidental copies. For example, the following code is broken:
672 ```cpp
673 seastar::future<> f() {
674 return seastar::do_with(T(), [] (T obj) { // WRONG: should be T&, not T
675 return slow_op(obj);
676 }
677 }
678 ```
679 In this wrong snippet, `obj` is mistakenly not a reference to the object which `do_with` allocated, but rather a copy of it - a copy which is destroyed as soon as the lambda function returns, rather than when the future it returns resolved. Such code will most likely crash because the object is used after being freed. Unfortunately the compiler will not warn about such mistakes. Users should get used to always using the type "auto&" with `do_with` - as in the above correct examples - to reduce the chance of such mistakes.
680
681 For the same reason, the following code snippet is also wrong:
682 ```cpp
683 seastar::future<> slow_op(T obj); // WRONG: should be T&, not T
684 seastar::future<> f() {
685 return seastar::do_with(T(), [] (auto& obj) {
686 return slow_op(obj);
687 }
688 }
689 ```
690 Here, although `obj` was correctly passed to the lambda by reference, we later acidentally passed `slow_op()` a copy of it (because here `slow_op` takes the object by value, not by reference), and this copy will be destroyed as soon as `slow_op` returns, not waiting until the returned future resolves.
691
692 When using `do_with`, always remember it requires adhering to the convention described above: The asynchronous function which we call inside `do_with` must not use the objects held by `do_with` *after* the returned future is resolved. It is a serious use-after-free bug for an asynchronous function to return a future which resolves while still having background operations using the `do_with()`ed objects.
693
694 In general, it is rarely a good idea for an asynchronous function to resolve while leaving behind background operations - even if those operations do not use the `do_with()`ed objects. Background operations that we do not wait for may cause us to run out of memory (if we don't limit their number) and make it difficult to shut down the application cleanly.
695
696
697 ## Sharing ownership (reference counting)
698 In the beginning of this chapter, we already noted that capturing a copy of an object into a continuation is the simplest way to ensure that the object is alive when the continuation runs and destoryed afterwards. However, complex objects are often expensive (in time and memory) to copy. Some objects cannot be copied at all, or are read-write and the continuation should modify the original object, not a new copy. The solution to all these issues are **reference counted**, a.k.a. **shared** objects:
699
700 A simple example of a reference-counted object in Seastar is a `seastar::file`, an object holding an open file object (we will introduce `seastar::file` in a later section). A `file` object can be copied, but copying does not involve copying the file descriptor (let alone the file). Instead, both copies point to the same open file, and a reference count is increased by 1. When a file object is destroyed, the file's reference count is decreased by one, and only when the reference count reaches 0 the underlying file is actually closed.
701
702 The fact that `file` objects can be copied very quickly and all copies actually point to the same file, make it very convinient to pass them to asynchronous code; For example,
703
704 ```cpp
705 seastar::future<uint64_t> slow_size(file f) {
706 return seastar::sleep(10ms).then([f] {
707 return f.size();
708 });
709 // NOTE: something is wrong here! This will be explained below!
710 }
711 ```
712
713 Note how calling `slow_size` is as simple as calling `slow_size(f)`, passing a copy of `f`, without needing to do anything special to ensure that `f` is only destroyed when no longer needed. That simply happens naturally when nothing refers to `f` any more.
714
715 However, there is one complication. The above example is actually wrong, as the comment at the end of the function suggested. The problem is that the `f.size()` call started an asynchronous operation on `f` (the file's size may be stored on disk, so not immediately available) and yet at this point nothing is holding a copy of `f`... The method call does not increment the reference count of the object even if it an asynchronous method. (Perhaps this something we should rethink?)
716
717 So we need to ensure that something does hold on to another copy of `f` until the asynchronous method call completes. This is how we typically do it:
718 ```cpp
719 seastar::future<uint64_t> slow_size(file f) {
720 return seastar::sleep(10ms).then([f] {
721 return f.size().finally([f] {});
722 });
723 }
724 ```
725 What we see here is that `f` is copied not only to the continuation which runs `f.size()`, but also into a continuation (a `finally`) which will run after it. So as long as `f.size()` does not complete, that second continuation holds `f` alive. Note how the second continuation seems to have no code (just a {}). But the important thing is that the compiler automatically adds to it code to destroy its copy of `f` (and potentially the entire file if this reference count went down to 0).
726
727 The reference counting has a run-time cost, but it is usually very small; It is important to remember that Seastar objects are always used by a single CPU only, so the reference-count increment and decrement operations are not the slow atomic operations often used for reference counting, but just regular CPU-local integer operations. Moreover, judicious use of `std::move()` and the compiler's optimizer can reduce the number of unnecessary back-and-forth increment and decrement of the reference count.
728
729 C++11 offers a standard way of creating reference-counted shared objects - using the template `std::shared_ptr<T>`. A `shared_ptr` can be used to wrap any type into a reference-counted shared object like `seastar::file` above. However, the standard `std::shared_ptr` was designed with multi-threaded applications in mind so it uses slow atomic increment/decrement operations for the reference count which we already noted is unnecessary in Seastar. For this reason Seastar offers its own single-threaded implementation of this template, `seastar::shared_ptr<T>`. It is similar to `std::shared_ptr<T>` except no atomic operations are used.
730
731 Additionally, Seastar also provides an even lower overhead variant of `shared_ptr`: `seastar::lw_shared_ptr<T>`. The full-featured `shared_ptr` is complicated by the need to support polymorphic types correctly (a shared object created of one class, and accessed through a pointer to a base class). It makes `shared_ptr` need to add two words to the shared object, and two words to each `shared_ptr` copy. The simplified `lw_shared_ptr` - which does **not** support polymorphic types - adds just one word in the object (the reference count) and each copy is just one word - just like copying a regular pointer. For this reason, the light-weight `seastar::lw_shared_ptr<T>` should be preferered when possible (`T` is not a polymorphic type), otherwise `seastar::shared_ptr<T>`. The slower `std::shared_ptr<T>` should never be used in sharded Seastar applications.
732
733 ## Saving objects on the stack
734 Wouldn't it be convenient if we could save objects on a stack just like we normally do in synchronous code? I.e., something like:
735 ```cpp
736 int i = ...;
737 seastar::sleep(10ms).get();
738 return i;
739 ```
740 Seastar allows writing such code, by using a `seastar::thread` object which comes with its own stack. A complete example using a `seastar::thread` might look like this:
741 ```cpp
742 seastar::future<> slow_incr(int i) {
743 return seastar::async([i] {
744 seastar::sleep(10ms).get();
745 // We get here after the 10ms of wait, i is still available.
746 return i + 1;
747 });
748 }
749 ```
750 We present `seastar::thread`, `seastar::async()` and `seastar::future::get()` in the [seastar::thread] section.
751
752 # Advanced futures
753 ## Futures and interruption
754 TODO: A future, e.g., sleep(10s) cannot be interrupted. So if we need to, the promise needs to have a mechanism to interrupt it. Mention pipe's close feature, semaphore stop feature, etc.
755 ## Futures are single use
756 TODO: Talk about if we have a future<int> variable, as soon as we get() or then() it, it becomes invalid - we need to store the value somewhere else. Think if there's an alternative we can suggest
757
758 # Fibers
759 Seastar continuations are normally short, but often chained to one another, so that one continuation does a bit of work and then schedules another continuation for later. Such chains can be long, and often even involve loopings - see the following section, "Loops". We call such chains "fibers" of execution.
760
761 These fibers are not threads - each is just a string of continuations - but they share some common requirements with traditional threads. For example, we want to avoid one fiber getting starved while a second fiber continuously runs its continuations one after another. As another example, fibers may want to communicate - e.g., one fiber produces data that a second fiber consumes, and we wish to ensure that both fibers get a chance to run, and that if one stops prematurely, the other doesn't hang forever.
762
763 TODO: Mention fiber-related sections like loops, semaphores, gates, pipes, etc.
764
765 # Loops
766 A majority of time-consuming computations involve using loops. Seastar provides several primitives for expressing them in a way that composes nicely with the future/promise model. A very important aspect of Seastar loop primitives is that each iteration is followed by a preemption point, thus allowing other tasks to run inbetween iterations.
767 ## repeat
768 A loop created with `repeat` executes its body until it receives a `stop_iteration` object, which informs if the iteration should continue (`stop_iteration::no`) or stop (`stop_iteration::yes`). Next iteration will be launched only after the first one has finished. The loop body passed to `repeat` is expected to have a `future<stop_iteration>` return type.
769 ```cpp
770 seastar::future<int> recompute_number(int number);
771
772 seastar::future<> push_until_100(seastar::lw_shared_ptr<std::vector<int>> queue, int element) {
773 return seastar::repeat([queue, element] {
774 if (queue->size() == 100) {
775 return make_ready_future<stop_iteration>(stop_iteration::yes);
776 }
777 return recompute_number(element).then([queue] (int new_element) {
778 queue->push_back(element);
779 return stop_iteration::no;
780 });
781 });
782 }
783 ```
784
785 ## do_until
786 Do until is a close relative of `repeat`, but it uses an explicitly passed condition to decide whether it should stop iterating. The above example could be expressed with `do_until` as follows:
787 ```cpp
788 seastar::future<int> recompute_number(int number);
789
790 seastar::future<> push_until_100(seastar::lw_shared_ptr<std::vector<int>> queue, int element) {
791 return seastar::do_until([queue] { return queue->size() == 100; }, [queue, element] {
792 return recompute_number(element).then([queue] (int new_element) {
793 queue->push_back(new_element);
794 });
795 });
796 }
797 ```
798 Note that the loop body is expected to return a `future<>`, which allows composing complex continuations inside the loop.
799
800 ## do_for_each
801 A `do_for_each` is an equivalent of a `for` loop in Seastar world. It accepts a range (or a pair of iterators) and a function body, which it applies to each argument, in order, one by one. The next iteration will be launched only after the first one has finished, as was the case with `repeat`. As usual, `do_for_each` expects its loop body to return a `future<>`.
802 ```cpp
803 seastar::future<> append(seastar::lw_shared_ptr<std::vector<int>> queue1, seastar::lw_shared_ptr<std::vector<int>> queue2) {
804 return seastar::do_for_each(queue2, [queue1] (int element) {
805 queue1->push_back(element);
806 });
807 }
808
809 seastar::future<> append_iota(seastar::lw_shared_ptr<std::vector<int>> queue1, int n) {
810 return seastar::do_for_each(boost::make_counting_iterator<size_t>(0), boost::make_counting_iterator<size_t>(n), [queue1] (int element) {
811 queue1->push_back(element);
812 });
813 }
814 ```
815 `do_for_each` accepts either an lvalue reference to a container or a pair of iterators. It implies that the responsibility to ensure that the container is alive during the whole loop execution belongs to the caller. If the container needs its lifetime prolonged, it can be easily achieved with `do_with`:
816 ```cpp
817 seastar::future<> do_something(int number);
818
819 seastar::future<> do_for_all(std::vector<int> numbers) {
820 // Note that the "numbers" vector will be destroyed as soon as this function
821 // returns, so we use do_with to guarantee it lives during the whole loop execution:
822 return seastar::do_with(std::move(numbers), [] (std::vector<int>& numbers) {
823 return seastar::do_for_each(numbers, [] (int number) {
824 return do_something(number);
825 });
826 });
827 }
828
829 ```
830
831 ## parallel_for_each
832 Parallel for each is a high concurrency variant of `do_for_each`. When using `parallel_for_each`, all iterations are queued simultaneously - which means that there's no guarantee in which order they finish their operations.
833 ```cpp
834 seastar::future<> flush_all_files(seastar::lw_shared_ptr<std::vector<seastar::file>> files) {
835 return seastar::parallel_for_each(files, [] (seastar::file f) {
836 // file::flush() returns a future<>
837 return f.flush();
838 });
839 }
840 ```
841 `parallel_for_each` is a powerful tool, as it allows spawning many tasks in parallel. It can be a great performance gain, but there are also caveats. First of all, too high concurrency may be troublesome - the details can be found in chapter **Limiting parallelism of loops**.
842 Secondly, take note that the order in which iterations will be executed within a `parallel_for_each` loop is arbitrary - if a strict ordering is needed, consider using `do_for_each` instead.
843
844 TODO: map_reduce, as a shortcut (?) for parallel_for_each which needs to produce some results (e.g., logical_or of boolean results), so we don't need to create a lw_shared_ptr explicitly (or do_with).
845
846 TODO: See seastar commit "input_stream: Fix possible infinite recursion in consume()" for an example on why recursion is a possible, but bad, replacement for repeat(). See also my comment on https://groups.google.com/d/msg/seastar-dev/CUkLVBwva3Y/3DKGw-9aAQAJ on why Seastar's iteration primitives should be used over tail call optimization.
847 # when_all: Waiting for multiple futures
848 Above we've seen `parallel_for_each()`, which starts a number of asynchronous operations, and then waits for all to complete. Seastar has another idiom, `when_all()`, for waiting for several already-existing futures to complete.
849
850 The first variant of `when_all()` is variadic, i.e., the futures are given as separate parameters, the exact number of which is known at compile time. The individual futures may have different types. For example,
851
852 ```cpp
853 #include <seastar/core/sleep.hh>
854
855 future<> f() {
856 using namespace std::chrono_literals;
857 future<int> slow_two = sleep(2s).then([] { return 2; });
858 return when_all(sleep(1s), std::move(slow_two),
859 make_ready_future<double>(3.5)
860 ).discard_result();
861 }
862 ```
863
864 This starts three futures - one which sleeps for one second (and doesn't return anything), one which sleeps for two seconds and returns the integer 2, and one which returns the double 3.5 immediately - and then waits for them. The `when_all()` function returns a future which resolves as soon as all three futures resolves, i.e., after two seconds. This future also has a value, which we shall explain below, but in this example, we simply waited for the future to resolve and discarded its value.
865
866 Note that `when_all()` accept only rvalues, which can be temporaries (like the return value of an asynchronous function or `make_ready_future`) or an `std::move()`'ed variable holding a future.
867
868 The future returned by `when_all()` resolves to a tuple of futures which are already resolved, and contain the results of the three input futures. Continuing the above example,
869
870 ```cpp
871 future<> f() {
872 using namespace std::chrono_literals;
873 future<int> slow_two = sleep(2s).then([] { return 2; });
874 return when_all(sleep(1s), std::move(slow_two),
875 make_ready_future<double>(3.5)
876 ).then([] (auto tup) {
877 std::cout << std::get<0>(tup).available() << "\n";
878 std::cout << std::get<1>(tup).get0() << "\n";
879 std::cout << std::get<2>(tup).get0() << "\n";
880 });
881 }
882 ```
883
884 The output of this program (which comes after two seconds) is `1, 2, 3.5`: the first future in the tuple is available (but has no value), the second has the integer value 2, and the third a double value 3.5 - as expected.
885
886 One or more of the waited futures might resolve in an exception, but this does not change how `when_all()` works: It still waits for all the futures to resolve, each with either a value or an exception, and in the returned tuple some of the futures may contain an exception instead of a value. For example,
887
888 ```cpp
889 future<> f() {
890 using namespace std::chrono_literals;
891 future<> slow_success = sleep(1s);
892 future<> slow_exception = sleep(2s).then([] { throw 1; });
893 return when_all(std::move(slow_success), std::move(slow_exception)
894 ).then([] (auto tup) {
895 std::cout << std::get<0>(tup).available() << "\n";
896 std::cout << std::get<1>(tup).failed() << "\n";
897 std::get<1>(tup).ignore_ready_future();
898 });
899 }
900 ```
901
902 Both futures are `available()` (resolved), but the second has `failed()` (resulted in an exception instead of a value). Note how we called `ignore_ready_future()` on this failed future, because silently ignoring a failed future is considered a bug, and will result in an "Exceptional future ignored" error message. More typically, an application will log the failed future instead of ignoring it.
903
904 The above example demonstrate that `when_all()` is inconvenient and verbose to use properly. The results are wrapped in a tuple, leading to verbose tuple syntax, and uses ready futures which must all be inspected individually for an exception to avoid error messages.
905
906 So Seastar also provides an easier to use `when_all_succeed()` function. This function too returns a future which resolves when all the given futures have resolved. If all of them succeeded, it passes the resulting values to continuation, without wrapping them in futures or a tuple. If, however, one or more of the futures failed, `when_all_succeed()` resolves to a failed future, containing the exception from one of the failed futures. If more than one of the given future failed, one of those will be passed on (it is unspecified which one is chosen), and the rest will be silently ignored. For example,
907
908 ```cpp
909 using namespace seastar;
910 future<> f() {
911 using namespace std::chrono_literals;
912 return when_all_succeed(sleep(1s), make_ready_future<int>(2),
913 make_ready_future<double>(3.5)
914 ).then([] (int i, double d) {
915 std::cout << i << " " << d << "\n";
916 });
917 }
918 ```
919
920 Note how the integer and double values held by the futures are conveniently passed, individually (without a tuple) to the continuation. Since `sleep()` does not contain a value, it is waited for, but no third value is passed to the continuation. That also means that if we `when_all_succeed()` on several `future<>` (without a value), the result is also a `future<>`:
921
922 ```cpp
923 using namespace seastar;
924 future<> f() {
925 using namespace std::chrono_literals;
926 return when_all_succeed(sleep(1s), sleep(2s), sleep(3s));
927 }
928 ```
929
930 This example simply waits for 3 seconds (the maximum of 1, 2 and 3 seconds).
931
932 An example of `when_all_succeed()` with an exception:
933
934 ```cpp
935 using namespace seastar;
936 future<> f() {
937 using namespace std::chrono_literals;
938 return when_all_succeed(make_ready_future<int>(2),
939 make_exception_future<double>("oops")
940 ).then([] (int i, double d) {
941 std::cout << i << " " << d << "\n";
942 }).handle_exception([] (std::exception_ptr e) {
943 std::cout << "exception: " << e << "\n";
944 });
945 }
946 ```
947
948 In this example, one of the futures fails, so the result of `when_all_succeed` is a failed future, so the normal continuation is not run, and the `handle_exception()` continuation is done.
949
950 TODO: also explain `when_all` and `when_all_succeed` for vectors.
951
952 # Semaphores
953 Seastar's semaphores are the standard computer-science semaphores, adapted for futures. A semaphore is a counter into which you can deposit units or take them away. Taking units from the counter may wait if not enough units are available.
954
955 ## Limiting parallelism with semaphores
956 The most common use for a semaphore in Seastar is for limiting parallelism, i.e., limiting the number of instances of some code which can run in parallel. This can be important when each of the parallel invocations uses a limited resource (e.g., memory) so letting an unlimited number of them run in parallel can exhaust this resource.
957
958 Consider a case where an external source of events (e.g., an incoming network request) causes an asynchronous function ```g()``` to be called. Imagine that we want to limit the number of concurrent ```g()``` operations to 100. I.e., If g() is started when 100 other invocations are still ongoing, we want it to delay its real work until one of the other invocations has completed. We can do this with a semaphore:
959
960 ```cpp
961 seastar::future<> g() {
962 static thread_local seastar::semaphore limit(100);
963 return limit.wait(1).then([] {
964 return slow(); // do the real work of g()
965 }).finally([] {
966 limit.signal(1);
967 });
968 }
969 ```
970
971 In this example, the semaphore starts with the counter at 100. The asynchronous operation `slow()` is only started when we can reduce the counter by one (`wait(1)`), and when `slow()` is done, either successfully or with exception, the counter is increased back by one (```signal(1)```). This way, when 100 operations have already started their work and have not yet finished, the 101st operation will wait, until one of the ongoing operations finishes and returns a unit to the semaphore. This ensures that at each time we have at most 100 concurrent `slow()` operations running in the above code.
972
973 Note how we used a ```static thread_local``` semaphore, so that all calls to ```g()``` from the same shard count towards the same limit; As usual, a Seastar application is sharded so this limit is separate per shard (CPU thread). This is usually fine, because sharded applications consider resources to be separate per shard.
974
975 Luckily, the above code happens to be exception safe: `limit.wait(1)` can throw an exception when it runs out of memory (keeping a list of waiters), and in that case the semaphore counter is not decreased but the continuations below are not run so it is not increased either. `limit.wait(1)` can also return an exceptional future when the semaphore is *broken* (we'll discuss this later) but in that case the extra `signal()` call is ignored. Finally, `slow()` may also throw, or return an exceptional future, but the `finally()` ensures the semaphore is still increased.
976
977 However, as the application code becomes more complex, it becomes harder to ensure that we never forget to call `signal()` after the operation is done, regardless of which code path or exceptions happen. As an example of what might go wrong, consider the following *buggy* code snippet, which differs subtly from the above one, and also appears, on first sight, to be correct:
978
979 ```cpp
980 seastar::future<> g() {
981 static thread_local seastar::semaphore limit(100);
982 return limit.wait(1).then([] {
983 return slow().finally([] { limit.signal(1); });
984 });
985 }
986 ```
987
988 But this version is **not** exception safe: Consider what happens if `slow()` throws an exception before returning a future (this is different from `slow()` returning an exceptional future - we discussed this difference in the section about exception handling). In this case, we decreased the counter, but the `finally()` will never be reached, and the counter will never be increased back. There is a way to fix this code, by replacing the call to `slow()` with `seastar::futurize_apply(slow)`. But the point we're trying to make here is not how to fix buggy code, but rather that by using the separate `semaphore::wait()` and `semaphore::signal()` functions, you can very easily get things wrong.
989
990 For exception safety, in C++ it is generally not recommended to have separate resource acquisition and release functions. Instead, C++ offers safer mechanisms for acquiring a resource (in this case seamphore units) and later releasing it: lambda functions, and RAII ("resource acquisition is initialization"):
991
992 The lambda-based solution is a function ```seastar::with_semaphore()``` which is a shortcut for the code in the examples above:
993
994 ```cpp
995 seastar::future<> g() {
996 static thread_local seastar::semaphore limit(100);
997 return seastar::with_semaphore(limit, 1, [] {
998 return slow(); // do the real work of g()
999 });
1000 }
1001 ```
1002
1003 `with_semaphore()`, like the earlier code snippets, waits for the given number of units from the semaphore, then runs the given lambda, and when the future returned by the lambda is resolved, `with_semaphore()` returns back the units to the semaphore. `with_semaphore()` returns a future which only resolves after all these steps are done.
1004
1005 The function `seastar::get_units()` is more general. It provides an exception-safe alternative to `seastar::semaphore`'s separate `wait()` and `signal()` methods, based on C++'s RAII philosophy: The function returns an opaque units object, which while held, keeps the semaphore's counter decreased - and as soon as this object is destructed, the counter is increased back. With this interface you cannot forget to increase the counter, or increase it twice, or increase without decreasing: The counter will always be decreased once when the units object is created, and if that succeeded, increased when the object is destructed. When the units object is moved into a continuation, no matter how this continuation ends, when the continuation is destructed, the units object is destructed and the units are returned to the semaphore's counter. The above examples, written with `get_units()`, looks like this:
1006
1007 ```cpp
1008 seastar::future<> g() {
1009 static thread_local semaphore limit(100);
1010 return seastar::get_units(limit, 1).then([] (auto units) {
1011 return slow().finally([units = std::move(units)] {});
1012 });
1013 }
1014 ```
1015
1016 Note the somewhat convoluted way that `get_units()` needs to be used: The continuations must be nested because we need the `units` object to be moved to the last continuation. If `slow()` returns a future (and does not throw immediately), the `finally()` continuation captures the `units` object until everything is done, but does not run any code.
1017
1018 Seastars programmers should generally avoid using the the `seamphore::wait()` and `semaphore::signal()` functions directly, and always prefer either `with_semaphore()` (when applicable) or `get_units()`.
1019
1020
1021 ## Limiting resource use
1022 Because semaphores support waiting for any number of units, not just 1, we can use them for more than simple limiting of the *number* of parallel invocation. For example, consider we have an asynchronous function ```using_lots_of_memory(size_t bytes)```, which uses ```bytes``` bytes of memory, and we want to ensure that not more than 1 MB of memory is used by all parallel invocations of this function --- and that additional calls are delayed until previous calls have finished. We can do this with a semaphore:
1023
1024 ```cpp
1025 seastar::future<> using_lots_of_memory(size_t bytes) {
1026 static thread_local seastar::semaphore limit(1000000); // limit to 1MB
1027 return seastar::with_semaphore(limit, bytes, [bytes] {
1028 // do something allocating 'bytes' bytes of memory
1029 });
1030 }
1031 ```
1032
1033 Watch out that in the above example, a call to `using_lots_of_memory(2000000)` will return a future that never resolves, because the semaphore will never contain enough units to satisfy the semaphore wait. `using_lots_of_memory()` should probably check whether `bytes` is above the limit, and throw an exception in that case. Seastar doesn't do this for you.
1034
1035
1036 ## Limiting parallelism of loops
1037 Above, we looked at a function `g()` which gets called by some external event, and wanted to control its parallelism. In this section, we look at parallelism of loops, which also can be controlled with semaphores.
1038
1039 Consider the following simple loop:
1040
1041 ```cpp
1042 #include <seastar/core/sleep.hh>
1043 seastar::future<> slow() {
1044 std::cerr << ".";
1045 return seastar::sleep(std::chrono::seconds(1));
1046 }
1047 seastar::future<> f() {
1048 return seastar::repeat([] {
1049 return slow().then([] { return seastar::stop_iteration::no; });
1050 });
1051 }
1052 ```
1053
1054 This loop runs the ```slow()``` function (taking one second to complete) without any parallelism --- the next ```slow()``` call starts only when the previous one completed. But what if we do not need to serialize the calls to ```slow()```, and want to allow multiple instances of it to be ongoing concurrently?
1055
1056 Naively, we could achieve more parallelism, by starting the next call to ```slow()``` right after the previous call --- ignoring the future returned by the previous call to ```slow()``` and not waiting for it to resolve:
1057 ```cpp
1058 seastar::future<> f() {
1059 return seastar::repeat([] {
1060 slow();
1061 return seastar::stop_iteration::no;
1062 });
1063 }
1064 ```
1065
1066 But in this loop, there is no limit to the amount of parallelism --- millions of ```sleep()``` calls might be active in parallel, before the first one ever returned. Eventually, this loop may consume all available memory and crash.
1067
1068 Using a semaphore allows us to run many instances of ```slow()``` in parallel, but limit the number of these parallel instances to, in the following example, 100:
1069
1070 ```cpp
1071 seastar::future<> f() {
1072 return seastar::do_with(seastar::semaphore(100), [] (auto& limit) {
1073 return seastar::repeat([&limit] {
1074 return limit.wait(1).then([&limit] {
1075 seastar::futurize_apply(slow).finally([&limit] {
1076 limit.signal(1);
1077 });
1078 return seastar::stop_iteration::no;
1079 });
1080 });
1081 });
1082 }
1083 ```
1084
1085 Note how this code differs from the code we saw above for limiting the number of parallel invocations of a function `g()`:
1086 1. Here we cannot use a single `thread_local` semaphore. Each call to `f()` has its loop with parallelism of 100, so needs its own semaphore "`limit`", kept alive during the loop with `do_with()`.
1087 2. Here we do not wait for `slow()` to complete before continuing the loop, i.e., we do not `return` the future chain starting at `futurize_apply(slow)`. The loop continues to the next iteration when a semaphore unit becomes available, while (in our example) 99 other operations might be ongoing in the background and we do not wait for them.
1088
1089 In the examples in this section, we cannot use the `with_semaphore()` shortcut. `with_semaphore()` returns a future which only resolves after the lambda's returned future resolves. But in the above example, the loop needs to know when just the semaphore units are available, to start the next iteration --- and not wait for the previous iteration to complete. We could not achieve that with `with_semaphore()`. But the more general exception-safe idiom, `seastar::get_units()`, can be used in this case, and is recommended:
1090
1091
1092 ```cpp
1093 seastar::future<> f() {
1094 return seastar::do_with(seastar::semaphore(100), [] (auto& limit) {
1095 return seastar::repeat([&limit] {
1096 return seastar::get_units(limit, 1).then([] (auto units) {
1097 slow().finally([units = std::move(units)] {});
1098 return seastar::stop_iteration::no;
1099 });
1100 });
1101 });
1102 }
1103 ```
1104
1105 The above examples are not realistic, because they have a never-ending loop and the future returned by `f()` will never resolve. In more realistic cases, the loop has an end, and at the end of the loop we need to wait for all the background operations which the loop started. We can do this by ```wait()```ing on the original count of the semaphore: When the full count is finally available, it means that *all* the operations have completed. For example, the following loop ends after 456 iterations:
1106
1107 ```cpp
1108 seastar::future<> f() {
1109 return seastar::do_with(seastar::semaphore(100), [] (auto& limit) {
1110 return seastar::do_for_each(boost::counting_iterator<int>(0),
1111 boost::counting_iterator<int>(456), [&limit] (int i) {
1112 return seastar::get_units(limit, 1).then([] (auto units) {
1113 slow().finally([units = std::move(units)] {});
1114 });
1115 }).finally([&limit] {
1116 return limit.wait(100);
1117 });
1118 });
1119 }
1120 ````
1121
1122 The last `finally` is what ensures that we wait for the last operations to complete: After the `repeat` loop ends (whether successfully or prematurely because of an exception in one of the iterations), we do a `wait(100)` to wait for the semaphore to reach its original value 100, meaning that all operations that we started have completed. Without this `finally`, the future returned by `f()` will resolve *before* all the iterations of the loop actually completed (the last 100 may still be running).
1123
1124 In the idiom we saw in the above example, the same semaphore is used both for limiting the number of background operations, and later to wait for all of them to complete. Sometimes, we want several different loops to use the same semaphore to limit their *total* parallelism. In that case we must use a separate mechanism for waiting for the completion of the background operations started by the loop. The most convenient way to wait for ongoing operations is using a gate, which we will describe in detail later. A typical example of a loop whose parallelism is limited by an external semaphore:
1125
1126 ```cpp
1127 thread_local seastar::semaphore limit(100);
1128 seastar::future<> f() {
1129 return seastar::do_with(seastar::gate(), [] (auto& gate) {
1130 return seastar::do_for_each(boost::counting_iterator<int>(0),
1131 boost::counting_iterator<int>(456), [&gate] (int i) {
1132 return seastar::get_units(limit, 1).then([&gate] (auto units) {
1133 gate.enter();
1134 seastar::futurize_apply(slow).finally([&gate, units = std::move(units)] {
1135 gate.leave();
1136 });
1137 });
1138 }).finally([&gate] {
1139 return gate.close();
1140 });
1141 });
1142 }
1143 ```
1144 In this code, we use the external semaphore `limit` to limit the number of concurrent operations, but additionally have a gate specific to this loop to help us wait for all ongoing operations to complete.
1145
1146 TODO: also allow `get_units()` or something similar on a gate, and use that instead of the explicit gate.enter/gate.leave.
1147
1148 TODO: say something about semaphore fairness - if someone is waiting for a lot of units and later someone asks for 1 unit, will both wait or will the request for 1 unit be satisfied?
1149
1150 TODO: say something about broken semaphores? (or in later section especially about breaking/closing/shutting down/etc?)
1151
1152 TODO: Have a few paragraphs, or even a section, on additional uses of semaphores. One is for mutual exclusion using semaphore(1) - we need to explain why although why in Seastar we don't have multiple threads touching the same data, if code is composed of different continuations (i.e., a fiber) it can switch to a different fiber in the middle, so if data needs to be protected between two continuations, it needs a mutex. Another example is something akin to wait_all: we start with a semaphore(0), run a known number N of asynchronous functions with finally sem.signal(), and from all this return the future sem.wait(N). PERHAPS even have a separate section on mutual exclusion, where we begin with semaphore(1) but also mention shared_mutex
1153
1154 # Pipes
1155 Seastar's `pipe<T>` is a mechanism to transfer data between two fibers, one producing data, and the other consuming it. It has a fixed-size buffer to ensures a balanced execution of the two fibers, because the producer fiber blocks when it writes to a full pipe, until the consumer fiber gets to run and read from the pipe.
1156
1157 A `pipe<T>` resembles a Unix pipe, in that it has a read side, a write side, and a fixed-sized buffer between them, and supports either end to be closed independently (and EOF or broken pipe when using the other side). A `pipe<T>` object holds the reader and write sides of the pipe as two separate objects. These objects can be moved into two different fibers. Importantly, if one of the pipe ends is destroyed (i.e., the continuations capturing it end), the other end of the pipe will stop blocking, so the other fiber will not hang.
1158
1159 The pipe's read and write interfaces are future-based blocking. I.e., the write() and read() methods return a future which is fulfilled when the operation is complete. The pipe is single-reader single-writer, meaning that until the future returned by read() is fulfilled, read() must not be called again (and same for write).
1160 Note: The pipe reader and writer are movable, but *not* copyable. It is often convenient to wrap each end in a shared pointer, so it can be copied (e.g., used in an std::function which needs to be copyable) or easily captured into multiple continuations.
1161
1162 # Shutting down a service with a gate
1163 Consider an application which has some long operation `slow()`, and many such operations may be started at any time. A number of `slow()` operations may even even be active in parallel. Now, you want to shut down this service, but want to make sure that before that, all outstanding operations are completed. Moreover, you don't want to allow new `slow()` operations to start while the shut-down is in progress.
1164
1165 This is the purpose of a `seastar::gate`. A gate `g` maintains an internal counter of operations in progress. We call `g.enter()` when entering an operation (i.e., before running `slow()`), and call `g.leave()` when leaving the operation (when a call to `slow()` completed). The method `g.close()` *closes the gate*, which means it forbids any further calls to `g.enter()` (such attempts will generate an exception); Moreover `g.close()` returns a future which resolves when all the existing operations have completed. In other words, when `g.close()` resolves, we know that no more invocations of `slow()` can be in progress - because the ones that already started have completed, and new ones could not have started.
1166
1167 The construct
1168 ```cpp
1169 seastar::with_gate(g, [] { return slow(); })
1170 ```
1171 can be used as a shortcut to the idiom
1172 ```cpp
1173 g.enter();
1174 slow().finally([&g] { g.leave(); });
1175 ```
1176
1177 Here is a typical example of using a gate:
1178
1179 ```cpp
1180 #include <seastar/core/sleep.hh>
1181 #include <seastar/core/gate.hh>
1182 #include <boost/iterator/counting_iterator.hpp>
1183
1184 seastar::future<> slow(int i) {
1185 std::cerr << "starting " << i << "\n";
1186 return seastar::sleep(std::chrono::seconds(10)).then([i] {
1187 std::cerr << "done " << i << "\n";
1188 });
1189 }
1190 seastar::future<> f() {
1191 return seastar::do_with(seastar::gate(), [] (auto& g) {
1192 return seastar::do_for_each(boost::counting_iterator<int>(1),
1193 boost::counting_iterator<int>(6),
1194 [&g] (int i) {
1195 seastar::with_gate(g, [i] { return slow(i); });
1196 // wait one second before starting the next iteration
1197 return seastar::sleep(std::chrono::seconds(1));
1198 }).then([&g] {
1199 seastar::sleep(std::chrono::seconds(1)).then([&g] {
1200 // This will fail, because it will be after the close()
1201 seastar::with_gate(g, [] { return slow(6); });
1202 });
1203 return g.close();
1204 });
1205 });
1206 }
1207 ```
1208
1209 In this example, we have a function `future<> slow()` taking 10 seconds to complete. We run it in a loop 5 times, waiting 1 second between calls, and surround each call with entering and leaving the gate (using `with_gate`). After the 5th call, while all calls are still ongoing (because each takes 10 seconds to complete), we close the gate and wait for it before exiting the program. We also test that new calls cannot begin after closing the gate, by trying to enter the gate again one second after closing it.
1210
1211 The output of this program looks like this:
1212 ```
1213 starting 1
1214 starting 2
1215 starting 3
1216 starting 4
1217 starting 5
1218 WARNING: exceptional future ignored of type 'seastar::gate_closed_exception': gate closed
1219 done 1
1220 done 2
1221 done 3
1222 done 4
1223 done 5
1224 ```
1225
1226 Here, the invocations of `slow()` were started at 1 second intervals. After the "`starting 5`" message, we closed the gate and another attempt to use it resulted in a `seastar::gate_closed_exception`, which we ignored and hence this message. At this point the application waits for the future returned by `g.close()`. This will happen once all the `slow()` invocations have completed: Immediately after printing "`done 5`", the test program stops.
1227
1228 As explained so far, a gate can prevent new invocations of an operation, and wait for any in-progress operations to complete. However, these in-progress operations may take a very long time to complete. Often, a long operation would like to know that a shut-down has been requested, so it could stop its work prematurely. An operation can check whether its gate was closed by calling the gate's `check()` method: If the gate is already closed, the `check()` method throws an exception (the same `seastar::gate_closed_exception` that `enter()` would throw at that point). The intent is that the exception will cause the operation calling it to stop at this point.
1229
1230 In the previous example code, we had an un-interruptible operation `slow()` which slept for 10 seconds. Let's replace it by a loop of 10 one-second sleeps, calling `g.check()` each second:
1231
1232 ```cpp
1233 seastar::future<> slow(int i, seastar::gate &g) {
1234 std::cerr << "starting " << i << "\n";
1235 return seastar::do_for_each(boost::counting_iterator<int>(0),
1236 boost::counting_iterator<int>(10),
1237 [&g] (int) {
1238 g.check();
1239 return seastar::sleep(std::chrono::seconds(1));
1240 }).finally([i] {
1241 std::cerr << "done " << i << "\n";
1242 });
1243 }
1244 ```
1245
1246 Now, just one second after gate is closed (after the "starting 5" message is printed), all the `slow()` operations notice the gate was closed, and stop. As expected, the exception stops the `do_for_each()` loop, and the `finally()` continuation is performed so we see the "done" messages for all five operations.
1247
1248
1249 # Introducing shared-nothing programming
1250
1251 TODO: Explain in more detail Seastar's shared-nothing approach where the entire memory is divided up-front to cores, malloc/free and pointers only work on one core.
1252 TODO: Introduce our shared_ptr (and lw_shared_ptr) and sstring and say the standard ones use locked instructions which are unnecessary when we assume these objects (like all others) are for a single thread. Our futures and continuations do the same.
1253
1254
1255 # More about Seastar's event loop
1256 TODO: Mention the event loop (scheduler). remind that continuations on the same thread do not run in parallel, so do not need locks, atomic variables, etc (different threads shouldn't access the same data - more on that below). continuations obviously must not use blocking operations, or they block the whole thread.
1257
1258 TODO: Talk about polling that we currently do, and how today even sleep() or waiting for incoming connections or whatever, takes 100% of all CPUs.
1259
1260 # Introducing Seastar's network stack
1261
1262 TODO: Mention the two modes of operation: Posix and native (i.e., take a L2 (Ethernet) interface (vhost or dpdk) and on top of it we built (in Seastar itself) an L3 interface (TCP/IP)).
1263
1264 For optimal performance, Seastar's network stack is sharded just like Seastar applications are: each shard (thread) takes responsibility for a different subset of the connections. Each incoming connection is directed to one of the threads, and after a connection is established, it continues to be handled on the same thread.
1265
1266 In the examples we saw earlier, `main()` ran our function `f()` only once, on the first thread. Unless the server is run with the `"-c1"` option (one thread only), this will mean that any connection arriving to a different thread will not be handled. So in all the examples below, we will need to run the same service loop on all cores. We can easily do this with the `smp::submit_to` function:
1267
1268 ```cpp
1269 seastar::future<> service_loop();
1270
1271 seastar::future<> f() {
1272 return seastar::parallel_for_each(boost::irange<unsigned>(0, seastar::smp::count),
1273 [] (unsigned c) {
1274 return seastar::smp::submit_to(c, service_loop);
1275 });
1276 }
1277 ```
1278
1279 Here we ask each of Seastar cores (from 0 to `smp::count`-1) to run the same function `service_loop()`. Each of these invocations returns a future, and `f()` will return when all of them have returned (in the examples below, they will never return - we will discuss shutting down services in later sections).
1280
1281 We begin with a simple example of a TCP network server written in Seastar. This server repeatedly accepts connections on TCP port 1234, and returns an empty response:
1282
1283 ```cpp
1284 #include <seastar/core/seastar.hh>
1285 #include <seastar/core/reactor.hh>
1286 #include <seastar/core/future-util.hh>
1287 #include <iostream>
1288
1289 seastar::future<> service_loop() {
1290 return seastar::do_with(seastar::listen(seastar::make_ipv4_address({1234})),
1291 [] (auto& listener) {
1292 return seastar::keep_doing([&listener] () {
1293 return listener.accept().then(
1294 [] (seastar::connected_socket s, seastar::socket_address a) {
1295 std::cout << "Accepted connection from " << a << "\n";
1296 });
1297 });
1298 });
1299 }
1300 ```
1301
1302 This code works as follows:
1303 1. The ```listen()``` call creates a ```server_socket``` object, ```listener```, which listens on TCP port 1234 (on any network interface).
1304 2. We use ```do_with()``` to ensure that the listener socket lives throughout the loop.
1305 3. To handle one connection, we call ```listener```'s ```accept()``` method. This method returns a ```future<connected_socket, socket_address>```, i.e., is eventually resolved with an incoming TCP connection from a client (```connected_socket```) and the client's IP address and port (```socket_address```).
1306 4. To repeatedly accept new connections, we use the ```keep_doing()``` loop idiom. ```keep_doing()``` runs its lambda parameter over and over, starting the next iteration as soon as the future returned by the previous iteration completes. The iterations only stop if an exception is encountered. The future returned by ```keep_doing()``` itself completes only when the iteration stops (i.e., only on exception).
1307
1308 Output from this server looks like the following example:
1309
1310 ```
1311 $ ./a.out
1312 Accepted connection from 127.0.0.1:47578
1313 Accepted connection from 127.0.0.1:47582
1314 ...
1315 ```
1316
1317 If you run the above example server immediately after killing the previous server, it often fails to start again, complaining that:
1318
1319 ```
1320 $ ./a.out
1321 program failed with uncaught exception: bind: Address already in use
1322 ```
1323
1324 This happens because by default, Seastar refuses to reuse the local port if there are any vestiges of old connections using that port. In our silly server, because the server is the side which first closes the connection, each connection lingers for a while in the "```TIME_WAIT```" state after being closed, and these prevent ```listen()``` on the same port from succeeding. Luckily, we can give listen an option to work despite these remaining ```TIME_WAIT```. This option is analogous to ```socket(7)```'s ```SO_REUSEADDR``` option:
1325
1326 ```cpp
1327 seastar::listen_options lo;
1328 lo.reuse_address = true;
1329 return seastar::do_with(seastar::listen(seastar::make_ipv4_address({1234}), lo),
1330 ```
1331
1332 Most servers will always turn on this ```reuse_address``` listen option. Stevens' book "Unix Network Programming" even says that "All TCP servers should specify this socket option to allow the server to be restarted". Therefore in the future Seastar should probably default to this option being on --- even if for historic reasons this is not the default in Linux's socket API.
1333
1334 Let's advance our example server by outputting some canned response to each connection, instead of closing each connection immediately with an empty reply.
1335
1336 ```cpp
1337 #include <seastar/core/seastar.hh>
1338 #include <seastar/core/reactor.hh>
1339 #include <seastar/core/future-util.hh>
1340 #include <iostream>
1341
1342 const char* canned_response = "Seastar is the future!\n";
1343
1344 seastar::future<> service_loop() {
1345 seastar::listen_options lo;
1346 lo.reuse_address = true;
1347 return seastar::do_with(seastar::listen(seastar::make_ipv4_address({1234}), lo),
1348 [] (auto& listener) {
1349 return seastar::keep_doing([&listener] () {
1350 return listener.accept().then(
1351 [] (seastar::connected_socket s, seastar::socket_address a) {
1352 auto out = s.output();
1353 return seastar::do_with(std::move(s), std::move(out),
1354 [] (auto& s, auto& out) {
1355 return out.write(canned_response).then([&out] {
1356 return out.close();
1357 });
1358 });
1359 });
1360 });
1361 });
1362 }
1363 ```
1364
1365 The new part of this code begins by taking the ```connected_socket```'s ```output()```, which returns an ```output_stream<char>``` object. On this output stream ```out``` we can write our response using the ```write()``` method. The simple-looking ```write()``` operation is in fact a complex asynchronous operation behind the scenes, possibly causing multiple packets to be sent, retransmitted, etc., as needed. ```write()``` returns a future saying when it is ok to ```write()``` again to this output stream; This does not necessarily guarantee that the remote peer received all the data we sent it, but it guarantees that the output stream has enough buffer space (or in the TCP case, there is enough room in the TCP congestion window) to allow another write to begin.
1366
1367 After ```write()```ing the response to ```out```, the example code calls ```out.close()``` and waits for the future it returns. This is necessary, because ```write()``` attempts to batch writes so might not have yet written anything to the TCP stack at this point, and only when close() concludes can we be sure that all the data we wrote to the output stream has actually reached the TCP stack --- and only at this point we may finally dispose of the ```out``` and ```s``` objects.
1368
1369 Indeed, this server returns the expected response:
1370
1371 ```
1372 $ telnet localhost 1234
1373 ...
1374 Seastar is the future!
1375 Connection closed by foreign host.
1376 ```
1377
1378 In the above example we only saw writing to the socket. Real servers will also want to read from the socket. The ```connected_socket```'s ```input()``` method returns an ```input_stream<char>``` object which can be used to read from the socket. The simplest way to read from this stream is using the ```read()``` method which returns a future ```temporary_buffer<char>```, containing some more bytes read from the socket --- or an empty buffer when the remote end shut down the connection.
1379
1380 ```temporary_buffer<char>``` is a convenient and safe way to pass around byte buffers that are only needed temporarily (e.g., while processing a request). As soon as this object goes out of scope (by normal return, or exception), the memory it holds gets automatically freed. Ownership of buffer can also be transferred by ```std::move()```ing it. We'll discuss ```temporary_buffer``` in more details in a later section.
1381
1382 Let's look at a simple example server involving both reads an writes. This is a simple echo server, as described in RFC 862: The server listens for connections from the client, and once a connection is established, any data received is simply sent back - until the client closes the connection.
1383
1384 ```cpp
1385 #include <seastar/core/seastar.hh>
1386 #include <seastar/core/reactor.hh>
1387 #include <seastar/core/future-util.hh>
1388
1389 seastar::future<> handle_connection(seastar::connected_socket s,
1390 seastar::socket_address a) {
1391 auto out = s.output();
1392 auto in = s.input();
1393 return do_with(std::move(s), std::move(out), std::move(in),
1394 [] (auto& s, auto& out, auto& in) {
1395 return seastar::repeat([&out, &in] {
1396 return in.read().then([&out] (auto buf) {
1397 if (buf) {
1398 return out.write(std::move(buf)).then([&out] {
1399 return out.flush();
1400 }).then([] {
1401 return seastar::stop_iteration::no;
1402 });
1403 } else {
1404 return seastar::make_ready_future<seastar::stop_iteration>(
1405 seastar::stop_iteration::yes);
1406 }
1407 });
1408 }).then([&out] {
1409 return out.close();
1410 });
1411 });
1412 }
1413
1414 seastar::future<> service_loop() {
1415 seastar::listen_options lo;
1416 lo.reuse_address = true;
1417 return seastar::do_with(seastar::listen(seastar::make_ipv4_address({1234}), lo),
1418 [] (auto& listener) {
1419 return seastar::keep_doing([&listener] () {
1420 return listener.accept().then(
1421 [] (seastar::connected_socket s, seastar::socket_address a) {
1422 // Note we ignore, not return, the future returned by
1423 // handle_connection(), so we do not wait for one
1424 // connection to be handled before accepting the next one.
1425 handle_connection(std::move(s), std::move(a));
1426 });
1427 });
1428 });
1429 }
1430
1431 ```
1432
1433 The main function ```service_loop()``` loops accepting new connections, and for each connection calls ```handle_connection()``` to handle this connection. Our ```handle_connection()``` returns a future saying when handling this connection completed, but importantly, we do ***not*** wait for this future: Remember that ```keep_doing``` will only start the next iteration when the future returned by the previous iteration is resolved. Because we want to allow parallel ongoing connections, we don't want the next ```accept()``` to wait until the previously accepted connection was closed. So we call ```handle_connection()``` to start the handling of the connection, but return nothing from the continuation, which resolves that future immediately, so ```keep_doing``` will continue to the next ```accept()```.
1434
1435 This demonstrates how easy it is to run parallel _fibers_ (chains of continuations) in Seastar - When a continuation runs an asynchronous function but ignores the future it returns, the asynchronous operation continues in parallel, but never waited for.
1436
1437 It is often a mistake to silently ignore an exception, so if the future we're ignoring might resolve with an except, it is recommended to handle this case, e.g. using a ```handle_exception()``` continuation. In our case, a failed connection is fine (e.g., the client might close its connection will we're sending it output), so we did not bother to handle the exception.
1438
1439 The ```handle_connection()``` function itself is straightforward --- it repeatedly calls ```read()``` read on the input stream, to receive a ```temporary_buffer``` with some data, and then moves this temporary buffer into a ```write()``` call on the output stream. The buffer will eventually be freed, automatically, when the ```write()``` is done with it. When ```read()``` eventually returns an empty buffer signifying the end of input, we stop ```repeat```'s iteration by returning a ```stop_iteration::yes```.
1440
1441 # Sharded servers
1442
1443 Discuss `sharded<>`, its benefits over directly using smp::submit_to() as above, etc.
1444
1445 # Shutting down cleanly
1446
1447 TODO: Handling interrupt, shutting down services, etc.
1448
1449 Move the seastar::gate section here.
1450
1451 # Command line options
1452 ## Standard Seastar command-line options
1453 All Seastar applications accept a standard set of command-line arguments, such as those we've already seen above: The `-c` option for controlling the number of threads used, or `-m` for determining the amount of memory given to the application.
1454
1455 TODO: list and explain more of these options.
1456
1457 Every Seastar application also accepts the `-h` (or `--help`) option, which lists and explains all the available options --- the standard Seastar ones, and the user-defined ones as explained below.
1458 ## User-defined command-line options
1459 Seastar parses the command line options (`argv[]`) when it is passed to `app_template::run()`, looking for its own standard options. Therefore, it is not recommended that the application tries to parse `argv[]` on its own because the application might not understand some of the standard Seastar options and not be able to correctly skip them.
1460
1461 Rather, applications which want to have command-line options of their own should tell Seastar's command line parser of these additional application-specific options, and ask Seastar's command line parser to recognize them too. Seastar's command line parser is actually the Boost library's `boost::program_options`. An application adds its own option by using the `add_options()` and `add_positional_options()` methods on the `app_template` to define options, and later calling `configuration()` to retrieve the setting of these options. For example,
1462
1463 ```cpp
1464 #include <iostream>
1465 #include <seastar/core/app-template.hh>
1466 #include <seastar/core/reactor.hh>
1467 int main(int argc, char** argv) {
1468 seastar::app_template app;
1469 namespace bpo = boost::program_options;
1470 app.add_options()
1471 ("flag", "some optional flag")
1472 ("size,s", bpo::value<int>()->default_value(100), "size")
1473 ;
1474 app.add_positional_options({
1475 { "filename", bpo::value<std::vector<seastar::sstring>>()->default_value({}),
1476 "sstable files to verify", -1}
1477 });
1478 app.run(argc, argv, [&app] {
1479 auto& args = app.configuration();
1480 if (args.count("flag")) {
1481 std::cout << "Flag is on\n";
1482 }
1483 std::cout << "Size is " << args["size"].as<int>() << "\n";
1484 auto& filenames = args["filename"].as<std::vector<seastar::sstring>>();
1485 for (auto&& fn : filenames) {
1486 std::cout << fn << "\n";
1487 }
1488 return seastar::make_ready_future<>();
1489 });
1490 return 0;
1491 }
1492 ```
1493
1494 In this example, we add via `add_options()` two application-specific options: `--flag` is an optional parameter which doesn't take any additional agruments, and `--size` (or `-s`) takes an integer value, which defaults (if this option is missing) to 100. Additionally, we ask via `add_positional_options()` that an unlimited number of arguments that do not begin with a "`-`" --- the so-called _positional_ arguments --- be collected to a vector of strings under the "filename" option. Some example outputs from this program:
1495
1496 ```
1497 $ ./a.out
1498 Size is 100
1499 $ ./a.out --flag
1500 Flag is on
1501 Size is 100
1502 $ ./a.out --flag -s 3
1503 Flag is on
1504 Size is 3
1505 $ ./a.out --size 3 hello hi
1506 Size is 3
1507 hello
1508 hi
1509 $ ./a.out --filename hello --size 3 hi
1510 Size is 3
1511 hello
1512 hi
1513 ```
1514
1515 `boost::program_options` has more powerful features, such as required options, option checking and combining, various option types, and more. Please refer to Boost's documentation for more information.
1516
1517 # Debugging a Seastar program
1518 ## Debugging ignored exceptions
1519 If a future resolves with an exception, and the application neglects to handle that exception or to explicitly ignore it, the application may have missed an important problem. This is likely to be an application bug.
1520
1521 Therefore, Seastar prints a warning message to the log if a future is destroyed when it stores an exception that hasn't been handled.
1522
1523 For example, consider this code:
1524 ```cpp
1525 #include <seastar/core/future.hh>
1526 #include <seastar/core/sleep.hh>
1527
1528 class myexception {};
1529
1530 seastar::future<> g() {
1531 return seastar::make_exception_future<>(myexception());
1532 }
1533
1534 seastar::future<> f() {
1535 g();
1536 return seastar::sleep(std::chrono::seconds(1));
1537 }
1538 ```
1539
1540 Here, the main function `f()` calls `g()`, but doesn't do anything with the future it returns. But this future resolves with an exception, and this exception is silently ignored. So Seastar prints this warning message about the ignored exception:
1541 ```
1542 WARN 2018-01-11 13:23:17,976 [shard 0] seastar - Exceptional future ignored:
1543 myexception, backtrace: 0x41ce24
1544 0x63729e
1545 0x636cd5
1546 0x4fa6ec
1547 0x4fb0e8
1548 0x5010e0
1549 0x41bf96
1550 0x41c26c
1551 0x46a734
1552 0x4fd661
1553 0x4fe1e2
1554 0x4fe332
1555 0x417a0b
1556 /lib64/libc.so.6+0x21009
1557 0x417b99
1558 ```
1559
1560 This message says that an exceptional future was ignored, and that the type of the exception was "`myexception`". The type of the exception is usually not enough to pinpoint where the problem happened, so the warning message also includes the backtrace - the call chain - leading to where the exceptional future was destroyed. The backtrace is given as a list of addresses, where code in other shared libraries is written as a shared library plus offset (when ASLR is enabled, the shared libraries are mapped in a different address each time).
1561
1562 Seastar includes a utility, `seastar-addr2line`, for translating these addresses into readable backtraces including exact method names, source files and line numbers. This utility needs the _unstripped_ executable. Typically, a stripped executable is used for production, but an unstripped copy is kept separately to be used in debugging - including `seastar-addr2line`.
1563
1564 To decode the backtrace, we run
1565 ```
1566 seastar-addr2line -e a.out
1567 ```
1568 And then paste the list of addresses in the warning message, and conclude with a `control-D` (it's also possible, if you want, to put the list of addresses in the `seastar-addr2line` command line). The result looks like this:
1569
1570 ```
1571 seastar::report_failed_future(std::__exception_ptr::exception_ptr) at /home/nyh/seastar/core/reactor.cc:4201
1572 seastar::future<>::~future() at /home/nyh/seastar/core/future.hh:828
1573 (inlined by) f() at /home/nyh/seastar/doc/code/26.cc:11
1574 std::_Function_handler<seastar::future<> (), seastar::future<> (*)()>::_M_invoke(std::_Any_data const&) at /usr/include/c++/7/bits/std_function.h:302
1575 std::function<seastar::future<> ()>::operator()() const at /usr/include/c++/7/bits/std_function.h:706
1576 (inlined by) operator() at /home/nyh/seastar/core/app-template.cc:119
1577 (inlined by) _M_invoke at /usr/include/c++/7/bits/std_function.h:302
1578 std::function<seastar::future<int> ()>::operator()() const at /usr/include/c++/7/bits/std_function.h:706
1579 (inlined by) seastar::future<int> seastar::futurize<seastar::future<int> >::apply<std::function<seastar::future<int> ()>&>(std::function<seastar::future<int> ()>&) at /home/nyh/seastar/core/future.hh:1362
1580 (inlined by) auto seastar::futurize_apply<std::function<seastar::future<int> ()>&>(std::function<seastar::future<int> ()>&) at /home/nyh/seastar/core/future.hh:1420
1581 (inlined by) operator() at /home/nyh/seastar/core/app-template.cc:108
1582 (inlined by) _M_invoke at /usr/include/c++/7/bits/std_function.h:316
1583 std::function<void ()>::operator()() const at /usr/include/c++/7/bits/std_function.h:706
1584 (inlined by) seastar::apply_helper<std::function<void ()>, std::tuple<>&&, std::integer_sequence<unsigned long> >::apply(std::function<void ()>&&, std::tuple<>&&) at /home/nyh/seastar/core/apply.hh:36
1585 (inlined by) auto seastar::apply<std::function<void ()>>(std::function<void ()>&&, std::tuple<>&&) at /home/nyh/seastar/core/apply.hh:44
1586 (inlined by) std::enable_if<!seastar::is_future<std::result_of<std::function<void ()> ()>::type>::value, seastar::future<> >::type seastar::do_void_futurize_apply_tuple<std::function<void ()>>(std::function<void ()>&&, std::tuple<>&&) at /home/nyh/seastar/core/future.hh:1320
1587 (inlined by) seastar::future<> seastar::futurize<void>::apply<std::function<void ()>>(std::function<void ()>&&, std::tuple<>&&) at /home/nyh/seastar/core/future.hh:1340
1588 (inlined by) seastar::future<> seastar::future<>::then<std::function<void ()>, seastar::future<> >(std::function<void ()>&&)::{lambda(auto:1&&)#1}::operator()<seastar::future_state<> >(auto, std::function<void ()>&&) at /home/nyh/seastar/core/future.hh:933
1589 (inlined by) seastar::continuation<seastar::future<> seastar::future<>::then<std::function<void ()>, seastar::future<> >(std::function<void ()>&&)::{lambda(auto:1&&)#1}>::run_and_dispose() at /home/nyh/seastar/core/future.hh:413
1590 seastar::reactor::run_tasks(seastar::reactor::task_queue&) at /home/nyh/seastar/core/reactor.cc:2487
1591 seastar::reactor::run_some_tasks(std::chrono::time_point<std::chrono::_V2::steady_clock, std::chrono::duration<long, std::ratio<1l, 1000000000l> > >&) at /home/nyh/seastar/core/reactor.cc:2884
1592 seastar::reactor::run_some_tasks(std::chrono::time_point<std::chrono::_V2::steady_clock, std::chrono::duration<long, std::ratio<1l, 1000000000l> > >&) at /usr/include/c++/7/chrono:377
1593 (inlined by) seastar::reactor::run() at /home/nyh/seastar/core/reactor.cc:3028
1594 seastar::app_template::run_deprecated(int, char**, std::function<void ()>&&) at /home/nyh/seastar/core/app-template.cc:180
1595 seastar::app_template::run(int, char**, std::function<seastar::future<int> ()>&&) at /home/nyh/seastar/core/app-template.cc:113
1596 seastar::app_template::run(int, char**, std::function<seastar::future<> ()>&&) at /home/nyh/seastar/core/app-template.cc:122
1597 main at /home/nyh/seastar/doc/code/main.cc:11
1598 __libc_start_main at ??:?
1599 ```
1600
1601 Most of the lines at the bottom of this backtrace are not interesting, and just showing the internal details of how Seastar ended up running the main function `f()`. The only interesting part is the _first_ few lines:
1602
1603 ```
1604 seastar::report_failed_future(std::__exception_ptr::exception_ptr) at
1605 /home/nyh/seastar/core/reactor.cc:4201
1606 seastar::future<>::~future() at /home/nyh/seastar/core/future.hh:828
1607 (inlined by) f() at /home/nyh/seastar/doc/code/26.cc:11
1608 ```
1609
1610 Here we see that the warning message was printed by the `seastar::report_failed_future()` function which was called when destroying a future (`future<>::~future`) that had not been handled. The future's destructor was called in line 11 of our test code (`26.cc`), which is indeed the line where we called `g()` and ignored its result.
1611 This backtrace gives us an accurate understanding of where our code destroyed an exceptional future without handling it first, which is usually helpful in solving these kinds of bugs. Note that this technique does not tell us where the exception was first created, nor what code passed around the exceptional future before it was destroyed - we just learn where the future was destroyed. To learn where the exception was originally thrown, see the next section:
1612
1613 ## Finding where an exception was thrown
1614 Sometimes an application logs an exception, and we want to know where in the code the exception was originally thrown. Unlike languages like Java, C++ does not have a builtin method of attaching a backtrace to every exception. So Seastar provides functions which allow adding to an exception the backtrace recorded when throwing it.
1615
1616 For example, in the following code we throw and catch an `std::runtime_error` normally:
1617
1618 ```cpp
1619 #include <seastar/core/future.hh>
1620 #include <seastar/util/log.hh>
1621 #include <exception>
1622 #include <iostream>
1623
1624 seastar::future<> g() {
1625 return seastar::make_exception_future<>(std::runtime_error("hello"));
1626 }
1627
1628 seastar::future<> f() {
1629 return g().handle_exception([](std::exception_ptr e) {
1630 std::cerr << "Exception: " << e << "\n";
1631 });
1632 }
1633 ```
1634 The output is
1635 ```
1636 Exception: std::runtime_error (hello)
1637 ```
1638 From this output, we have no way of knowing that the exception was thrown in `g()`. We can solve this if we use `make_exception_future_with_backtrace` instead of `make_exception_future`:
1639
1640 ```
1641 #include <util/backtrace.hh>
1642 seastar::future<> g() {
1643 return seastar::make_exception_future_with_backtrace<>(std::runtime_error("hello"));
1644 }
1645 ```
1646 Now the output looks like
1647 ```
1648 Exception: seastar::internal::backtraced<std::runtime_error> (hello Backtrace: 0x678bd3
1649 0x677204
1650 0x67736b
1651 0x678cd5
1652 0x4f923c
1653 0x4f9c38
1654 0x4ff4d0
1655 ...
1656 )
1657 ```
1658 Which, as above, can be converted to a human-readable backtrace by using the `seastar-addr2line` script.
1659
1660 In addition to `seastar::make_exception_future_with_backtrace()`, Seastar also provides a function `throw_with_backtrace()`, to throw an exception instead of returning an exceptional future. For example:
1661 ```
1662 seastar::throw_with_backtrace<std::runtime_error>("hello");
1663 ```
1664
1665 In the current implementation, both `make_exception_future_with_backtrace` and `throw_with_backtrace` require that the original exception type (in the above example, `std::runtime_error`) is a subclass of the `std::exception` class. The original exception provides a `what()` string, and the wrapped exception adds the backtrace to this string, as demonstrated above. Moreover, the wrapped exception type is a _subclass_ of the original exception type, which allows `catch(...)` code to continue filtering by the exception original type - despite the addition of the backtrace.
1666
1667
1668 ## Debugging with gdb
1669 handle SIGUSR1 pass noprint
1670 handle SIGALRM pass noprint
1671
1672 # Promise objects
1673
1674 As we already defined above, An **asynchronous function**, also called a **promise**, is a function which returns a future and arranges for this future to be eventually resolved. As we already saw, an asynchronous function is usually written in terms of other asynchronous functions, for example we saw the function `slow()` which waits for the existing asynchronous function `sleep()` to complete, and then returns 3:
1675
1676 ```cpp
1677 seastar::future<int> slow() {
1678 using namespace std::chrono_literals;
1679 return seastar::sleep(100ms).then([] { return 3; });
1680 }
1681 ```
1682
1683 The most basic building block for writing promises is the **promise object**, an object of type `promise<T>`. A `promise<T>` has a method `future<T> get_future()` to returns a future, and a method `set_value(T)`, to resolve this future. An asynchronous function can create a promise object, return its future, and the `set_value` method to be eventually called - which will finally resolve the future it returned.
1684
1685 CONTINUE HERE. write an example, e.g., something which writes a message every second, and after 10 messages, completes the future.
1686
1687 # Memory allocation in Seastar
1688 ## Per-thread memory allocation
1689 Seastar requires that applications be sharded, i.e., that code running on different threads operate on different objects in memory. We already saw in [Seastar memory] how Seastar takes over a given amount of memory (often, most of the machine's memory) and divides it equally between the different threads. Modern multi-socket machines have non-uniform memory access (NUMA), meaning that some parts of memory are closer to some of the cores, and Seastar takes this knowledge into account when dividing the memory between threads. Currently, the division of memory between threads is static, and equal - the threads are expected to experience roughly equal amount of load and require roughly equal amounts of memory.
1690
1691 To achieve this per-thread allocation, Seastar redefines the C library functions `malloc()`, `free()`, and their numerous relatives --- `calloc()`, `realloc()`, `posix_memalign()`, `memalign()`, `malloc_usable_size()`, and `malloc_trim()`. It also redefines the C++ memory allocation functions, `operator new`, `operator delete`, and all their variants (including array versions, the C++14 delete taking a size, and the C++17 variants taking required alignment).
1692
1693 It is important to remember that Seastar's different threads *can* see memory allocated by other threads, but they are nontheless strongly discouraged from actually doing this. Sharing data objects between threads on modern multi-core machines results in stiff performance penalties from locks, memory barriers, and cache-line bouncing. Rather, Seastar encourages applications to avoid sharing objects between threads when possible (by *sharding* --- each thread owns a subset of the objects), and when threads do need to interact they do so with explicit message passing, with `submit_to()`, as we shall see later.
1694
1695 ## Foreign pointers
1696 An object allocated on one thread will be owned by this thread, and eventually should be freed by the same thread. Freeing memory on the *wrong* thread is strongly discouraged, but is currently supported (albeit slowly) to support library code beyond Seastar's control. For example, `std::exception_ptr` allocates memory; So if we invoke an asynchronous operation on a remote thread and this operation returns an exception, when we free the returned `std::exception_ptr` this will happen on the "wrong" core. So Seastar allows it, but inefficiently.
1697
1698 In most cases objects should spend their entire life on a single thread and be used only by this thread. But in some cases we want to reassign ownership of an object which started its life on one thread, to a different thread. This can be done using a `seastar::foreign_ptr<>`. A pointer, or smart pointer, to an object is wrapped in a `seastar::foreign_ptr<P>`. This wrapper can then be moved into code running in a different thread (e.g., using `submit_to()`).
1699
1700 The most common use-case is a `seastar::foreign_ptr<std::unique_ptr<T>>`. The thread receiving this `foreign_ptr` will get exclusive use of the object, and when it destroys this wrapper, it will go back to the original thread to destroy the object. Note that the object is not only freed on the original shard - it is also *destroyed* (i.e., its destructor is run) there. This is often important when the object's destructor needs to access other state which belongs to the original shard - e.g., unlink itself from a container.
1701
1702 Although `foreign_ptr` ensures that the object's *destructor* automatically runs on the object's home thread, it does not absolve the user from worrying where to run the object's other methods. Some simple methods, e.g., methods which just read from the object's fields, can be run on the receiving thread. However, other methods may need to access other data owned by the object's home shard, or need to prevent concurrent operations. Even if we're sure that object is now used exclusively by the receiving thread, such methods must still be run, explicitly, on the home thread:
1703 ```
1704 // fp is some foreign_ptr<>
1705 return smp::submit_to(fp.get_owner_shard(), [p=fp.get()]
1706 { return p->some_method(); });
1707 ```
1708 So `seastar::foreign_ptr<>` not only has functional benefits (namely, to run the destructor on the home shard), it also has *documentational* benefits - it warns the programmer to watch out every time the object is used, that this is a *foreign* pointer, and if we want to do anything non-trivial with the pointed object, we may need to do it on the home shard.
1709
1710 Above, we discussed the case of transferring ownership of an object to a another shard, via `seastar::foreign_ptr<std::unique_ptr<T>>`. However, sometimes the sender does not want to relinquish ownership of the object. Sometimes, it wants the remote thread to operate on its object and return with the object intact. Sometimes, it wants to send the same object to multiple shards. In such cases, `seastar::foreign_ptr<seastar::lw_shared_ptr<T>> is useful. The user needs to watch out, of course, not to operate on the same object from multiple threads concurrently. If this cannot be ensured by program logic alone, some methods of serialization must be used - such as running the operations on the home shard with `submit_to()` as described above.
1711
1712 Normally, a `seastar::foreign_ptr` cannot not be copied - only moved. However, when it holds a smart pointer that can be copied (namely, a `shared_ptr`), one may want to make an additional copy of that pointer and create a second `foreign_ptr`. Doing this is inefficient and asynchronous (it requires communicating with the original owner of the object to create the copies), so a method `future<foreign_ptr> copy()` needs to be explicitly used instead of the normal copy constructor.
1713 # Seastar::thread
1714 Seastar's programming model, using futures and continuations, is very powerful and efficient. However, as we've already seen in examples above, it is also relatively verbose: Every time that we need to wait before proceeding with a computation, we need to write another continuation. We also need to worry about passing the data between the different continuations (using techniques like those described in the [Lifetime management] section). Simple flow-control constructs such as loops also become more involved using continuations. For example, consider this simple classical synchronous code:
1715 ```cpp
1716 std::cout << "Hi.\n";
1717 for (int i = 1; i < 4; i++) {
1718 sleep(1);
1719 std::cout << i << "\n";
1720 }
1721 ```
1722 In Seastar, using futures and continuations, we need to write something like this:
1723 ```cpp
1724 std::cout << "Hi.\n";
1725 return seastar::do_for_each(boost::counting_iterator<int>(1),
1726 boost::counting_iterator<int>(4), [] (int i) {
1727 return seastar::sleep(std::chrono::seconds(1)).then([i] {
1728 std::cout << i << "\n";
1729 });
1730 });
1731 ```
1732
1733 But Seastar also allows, via `seastar::thread`, to write code which looks more like synchronous code. A `seastar::thread` provides an execution environment where blocking is tolerated; You can issue an asyncrhonous function, and wait for it in the same function, rather then establishing a callback to be called with `future<>::then()`:
1734
1735 ```cpp
1736 seastar::thread th([] {
1737 std::cout << "Hi.\n";
1738 for (int i = 1; i < 4; i++) {
1739 seastar::sleep(std::chrono::seconds(1)).get();
1740 std::cout << i << "\n";
1741 }
1742 });
1743 ```
1744 A `seastar::thread` is **not** a separate operating system thread. It still uses continuations, which are scheduled on Seastar's single thread (per core). It works as follows:
1745
1746 The `seastar::thread` allocates a 128KB stack, and runs the given function until the it *blocks* on the call to a future's `get()` method. Outside a `seastar::thread` context, `get()` may only be called on a future which is already available. But inside a thread, calling `get()` on a future which is not yet available stops running the thread function, and schedules a continuation for this future, which continues to run the thread's function (on the same saved stack) when the future becomes available.
1747
1748 Just like normal Seastar continuations, `seastar::thread`s always run on the same core they were launched on. They are also cooperative: they are never preempted except when `seastar::future::get()` blocks or on explict calls to `seastar::thread::yield()`.
1749
1750 It is worth reiterating that a `seastar::thread` is not a POSIX thread, and it can only block on Seastar futures, not on blocking system calls. The above example used `seastar::sleep()`, not the `sleep()` system call. The `seastar::thread`'s function can throw and catch exceptions normally. Remember that `get()` will throw an exception if the future resolves with an exception.
1751
1752 In addition to `seastar::future::get()`, we also have `seastar::future::wait()` to wait *without* fetching the future's result. This can sometimes be useful when you want to avoid throwing an exception when the future failed (as `get()` does). For example:
1753 ```cpp
1754 future<char> getchar();
1755 int try_getchar() noexcept { // run this in seastar::thread context
1756 future fut = get_char();
1757 fut.wait();
1758 if (fut.failed()) {
1759 return -1;
1760 } else {
1761 // Here we already know that get() will return immediately,
1762 // and will not throw.
1763 return fut.get();
1764 }
1765 }
1766 ```
1767
1768 ## Starting and ending a seastar::thread
1769 After we created a `seastar::thread` object, we need wait until it ends, using its `join()` method. We also need to keep that object alive until `join()` completes. A complete example using `seastar::thread` will therefore look like this:
1770
1771 ```cpp
1772 #include <seastar/core/sleep.hh>
1773 #include <seastar/core/thread.hh>
1774 seastar::future<> f() {
1775 seastar::thread th([] {
1776 std::cout << "Hi.\n";
1777 for (int i = 1; i < 4; i++) {
1778 seastar::sleep(std::chrono::seconds(1)).get();
1779 std::cout << i << "\n";
1780 }
1781 });
1782 return do_with(std::move(th), [] (auto& th) {
1783 return th.join();
1784 });
1785 }
1786 ```
1787
1788 The `seastar::async()` function provides a convenient shortcut for creating a `seastar::thread` and returning a future which resolves when the thread completes:
1789 ```cpp
1790 #include <seastar/core/sleep.hh>
1791 #include <seastar/core/thread.hh>
1792 seastar::future<> f() {
1793 return seastar::async([] {
1794 std::cout << "Hi.\n";
1795 for (int i = 1; i < 4; i++) {
1796 seastar::sleep(std::chrono::seconds(1)).get();
1797 std::cout << i << "\n";
1798 }
1799 });
1800 }
1801 ```
1802
1803 `seastar::async()`'s lambda may return a value, and `seastar::async()` returns it when it completes. For example:
1804
1805 ```cpp
1806 seastar::future<seastar::sstring> read_file(sstring file_name) {
1807 return seastar::async([file_name] () { // lambda executed in a thread
1808 file f = seastar::open_file_dma(file_name).get0(); // get0() call "blocks"
1809 auto buf = f.dma_read(0, 512).get0(); // "block" again
1810 return seastar::sstring(buf.get(), buf.size());
1811 });
1812 };
1813 ```
1814
1815 While `seastar::thread`s and `seastar::async()` make programming more convenient, they also add overhead beyond that of programming directly with continuations. Most notably, each `seastar::thread` requires additional memory for its stack. It is therefore not a good idea to use a `seastar::thread` to handle a highly concurrent operation. For example, if you need to handle 10,000 concurrent requests, do not use a `seastar::thread` to handle each --- use futures and continuations. But if you are writing code where you know that only a few instances will ever run concurrently, e.g., a background cleanup operation in your application, `seastar::thread` is a good match. `seastar::thread` is also great for code which doesn't care about performance --- such as test code.
1816
1817 # Isolation of application components
1818 Seastar makes multi-tasking very easy - as easy as running an asynchronous function. It is therefore easy for a server to do many unrelated things in parallel. For example, a server might be in the process of answering 100 users' requests, and at the same time also be making progress on some long background operation.
1819
1820 But in the above example, what percentage of the CPU and disk throughput will the background operation get? How long can one of the user's requests be delayed by the background operation? Without the mechanisms we describe in this section, these questions cannot be reliably answered:
1821
1822 * The background operation may be a very "considerate" single fiber, i.e., run a very short continuation and then schedule the next continuation to run later. At each point the scheduler sees 100 request-handling continuations and just one of the background continuations ready to run. The background task gets around 1% of the CPU time, and users' requests are hardly delayed.
1823 * On the other hand, the background operation may spawn 1,000 fibers in parallel and have 1,000 ready-to-run continuations at each time. The background operation will get about 90% of the runtime, and the continuation handling a user's request may get stuck behind 1,000 of these background continuations, and experience huge latency.
1824
1825 Complex Seastar applications often have different components which run in parallel and have different performance objectives. In the above example we saw two components - user requests and the background operation. The first goal of the mechanisms we describe in this section is to _isolate_ the performance of each component from the others; In other words, the throughput and latency of one component should not depend on decisions that another component makes - e.g., how many continuations it runs in parallel. The second goal is to allow the application to _control_ this isolation, e.g., in the above example allow the application to explicitly control the amount of CPU the background operation recieves, so that it completes at a desired pace.
1826
1827 In the above examples we used CPU time as the limited resource that the different components need to share effectively. As we show later, another important shared resource is disk I/O.
1828
1829 ## Scheduling groups (CPU scheduler)
1830 Consider the following asynchronous function `loop()`, which loops until some shared variable `stop` becomes true. It keeps a `counter` of the number of iterations until stopping, and returns this counter when finally stopping.
1831 ```cpp
1832 seastar::future<long> loop(int parallelism, bool& stop) {
1833 return seastar::do_with(0L, [parallelism, &stop] (long& counter) {
1834 return seastar::parallel_for_each(boost::irange<unsigned>(0, parallelism),
1835 [&stop, &counter] (unsigned c) {
1836 return seastar::do_until([&stop] { return stop; }, [&counter] {
1837 ++counter;
1838 return seastar::make_ready_future<>();
1839 });
1840 }).then([&counter] { return counter; });
1841 });
1842 }
1843 ```
1844 The `parallelism` parameter determines the parallelism of the silly counting operation: `parallelism=1` means we have just one loop incrementing the counter; `parallelism=10` means we start 10 loops in parallel all incrementing the same counter.
1845
1846 What happens if we start two `loop()` calls in parallel and let them run for 10 seconds?
1847 ```c++
1848 seastar::future<> f() {
1849 return seastar::do_with(false, [] (bool& stop) {
1850 seastar::sleep(std::chrono::seconds(10)).then([&stop] {
1851 stop = true;
1852 });
1853 return seastar::when_all_succeed(loop(1, stop), loop(1, stop)).then(
1854 [] (long n1, long n2) {
1855 std::cout << "Counters: " << n1 << ", " << n2 << "\n";
1856 });
1857 });
1858 }
1859 ```
1860 It turns out that if the two `loop()` calls had the same parallelism `1`, we get roughly the same amount of work from both of them:
1861 ```
1862 Counters: 3'559'635'758, 3'254'521'376
1863 ```
1864 But if for example we ran a `loop(1)` in parallel with a `loop(10)`, the result is that the `loop(10)` gets 10 times more work done:
1865 ```
1866 Counters: 629'482'397, 6'320'167'297
1867 ```
1868
1869 Why does the amount of work that loop(1) can do in ten seconds depends on the parallelism chosen by its competitor, and how can we solve this?
1870
1871 The reason this happens is as follows: When a future resolves and a continuation was linked to it, this continuation becomes ready to run. By default, Seastar's scheduler keeps a single list of ready-to-run continuations (in each shard, of course), and runs the continuations at the same order they became ready to run. In the above example, `loop(1)` always has one ready-to-run continuation, but `loop(10)`, which runs 10 loops in parallel, always has ten ready-to-run continuations. So for every continuation of `loop(1)`, Seastar's default scheduler will run 10 continuations of `loop(10)`, which is why loop(10) gets 10 times more work done.
1872
1873 To solve this, Seastar allows an application to define separate components known as **scheduling groups**, which each has a separate list of ready-to-run continuations. Each scheduling group gets to run its own continuations on a desired percentage of the CPU time, but the number of runnable continuations in one scheduling group does not affect the amount of CPU that another scheduling group gets. Let's look at how this is done:
1874
1875 A scheduling group is defined by a value of type `scheduling_group`. This value is opaque, but internally it is a small integer (similar to a process ID in Linux). We use the `seastar::with_scheduling_group()` function to run code in the desired scheduling group:
1876
1877 ```cpp
1878 seastar::future<long>
1879 loop_in_sg(int parallelism, bool& stop, seastar::scheduling_group sg) {
1880 return seastar::with_scheduling_group(sg, [parallelism, &stop] {
1881 return loop(parallelism, stop);
1882 });
1883 }
1884 ```
1885
1886 TODO: explain what `with_scheduling_group` group really does, how the group is "inherited" to the continuations started inside it.
1887
1888
1889 Now let's create two scheduling groups, and run `loop(1)` in the first scheduling group and `loop(10)` in the second scheduling group:
1890 ```cpp
1891 seastar::future<> f() {
1892 return seastar::when_all_succeed(
1893 seastar::create_scheduling_group("loop1", 100),
1894 seastar::create_scheduling_group("loop2", 100)).then(
1895 [] (seastar::scheduling_group sg1, seastar::scheduling_group sg2) {
1896 return seastar::do_with(false, [sg1, sg2] (bool& stop) {
1897 seastar::sleep(std::chrono::seconds(10)).then([&stop] {
1898 stop = true;
1899 });
1900 return seastar::when_all_succeed(loop_in_sg(1, stop, sg1), loop_in_sg(10, stop, sg2)).then(
1901 [] (long n1, long n2) {
1902 std::cout << "Counters: " << n1 << ", " << n2 << "\n";
1903 });
1904 });
1905 });
1906 }
1907 ```
1908 Here we created two scheduling groups, `sg1` and `sg2`. Each scheduling group has an arbitrary name (which is used for diagnostic purposes only), and a number of *shares*, a number traditionally between 1 and 1000: If one scheduling group has twice the number of shares than a second scheduling group, it will get twice the amount of CPU time. In this example, we used the same number of shares (100) for both groups, so they should get equal CPU time.
1909
1910 Unlike most objects in Seastar which are separate per shard, Seastar wants the identities and numbering of the scheduling groups to be the same on all shards, because it is important when invoking tasks on remote shards. For this reason, the function to create a scheduling group, `seastar::create_scheduling_group()`, is an asynchronous function returning a `future<scheduling_group>`.
1911
1912 Running the above example, with both scheduling group set up with the same number of shares (100), indeed results in both scheduling groups getting the same amount of CPU time:
1913 ```
1914 Counters: 3'353'900'256, 3'350'871'461
1915 ```
1916
1917 Note how now both loops got the same amount of work done - despite one loop having 10 times the parallelism of the second loop.
1918
1919 If we change the definition of the second scheduling group to have 200 shares, twice the number of shares of the first scheduling group, we'll see the second scheduling group getting twice the amount of CPU time:
1920 ```
1921 Counters: 2'273'783'385, 4'549'995'716
1922 ```
1923 ## Latency
1924 TODO: Task quota, preempt, loops with built-in preemption check, etc.
1925 ## Disk I/O scheduler
1926 TODO
1927 ## Network scheduler
1928 TODO: Say that not yet available. Give example of potential problem - e.g., sharing a slow WAN link.
1929 ## Controllers
1930 TODO: Talk about how to dynamically change the number of shares, and why.
1931 ## Multi-tenancy
1932 TODO