await-tree
The Futures in Async Rust can be arbitrarily composited or nested to achieve a variety of control flows.
Assuming that the execution of each Future is represented as a node,
then the asynchronous execution of an async task can be organized into a logical tree,
which is constantly transformed over the polling, completion, and cancellation of Futures.
await-tree allows developers to dump this execution tree at runtime, with the span of each Future annotated by instrument_await. A basic example is shown below, and more examples of complex control flows can be found in the examples directory.
async
async
async
let root = register;
spawn;
sleep.await;
let tree = get_tree;
// foo [1.006s]
// bar [1.006s]
// baz in bar [1.006s]
// pending in baz 3 [1.006s]
// baz [1.006s]
// pending in baz 2 [1.006s]
println!;
Compared to async-backtrace
tokio-rs/async-backtrace is a similar crate that also provides the ability to dump the execution tree of async tasks. Here are some differences between await-tree and async-backtrace:
Pros of await-tree:
-
await-treesupport customizing the span with runtimeString, whileasync-backtraceonly supports function name and line number.This is useful when we want to annotate the span with some dynamic information, such as the identifier of a shared resource (e.g., a lock), to see how the contention happens among different tasks.
-
await-treesupport almost all kinds of async control flows with arbitraryFuturetopology, whileasync-backtracefails to handle some of them.For example, it's common to use
&mut impl Futureas an arm ofselectto avoid problems led by cancellation unsafety. To further resolve thisFutureafter theselectcompletes, we may move it to another place andawaitit there.async-backtracefails to track thisFutureagain due to the change of its parent. Seeexamples/detach.rsfor more details. -
await-treemaintains the tree structure with an arena-based data structure, with zero extraunsafecode. For comparison,async-backtracecrafts it by hand and there's potential memory unsafety for unhandled topologies mentioned above.It's worth pointing out that
await-treehas been applied in the production deployment of RisingWave, a distributed streaming database, for a long time. -
await-treemaintains the tree structure separately from theFutureitself, which enables developers to dump the tree at any time with nearly no contention, no matter theFutureis under active polling or has been pending. For comparison,async-backtracehas to wait for the polling to complete before dumping the tree, which may cause a long delay.
Pros of async-backtrace:
async-backtraceis under the Tokio organization.
License
await-tree is distributed under the Apache License (Version 2.0). Please refer to LICENSE for more information.