Building and debugging a high-throughput daemon in Rust

栏目: IT技术 · 发布时间: 3年前

内容简介:The

15 Jul 2020 - 4 minute read

Tags:async-std async rust

The async / await keywords in modern Rust make building high-throughput daemons pretty straightforward, but as I learned that doesn’t necessarily mean “easy.” Last month on the Scribd tech blog wrote about a daemon named hotdog which we deployed into production: Ingesting production logs with Rust . In this post, I would like to write about some of the technical challenges I encountered getting the performance tuned for this async-std based Rust application.

My first Bay Area job used a set of libraries with Python that made it similar to Stackless Python . Thanks to that early initiation, I now have a habit of approaching services with “tasks and channels” in mind. With that in mind, I picked up async-std and started work on hotdog:

Hotdog is a syslog-to-Kafka forwarder which aims to get log entries into Apache Kafka as quickly as possible.
It listens for syslog messages over plaintext or TLS-encrupted TCP connection and depending on the defined Rules it will route and even modify messages on their way into a configured Kafka broker.

What this means as far as application design is fairly simple:

  • Listener for syslog connections
  • When those connections are accepted, spawn a connection specific handler task
  • For each received log line which should be forwarded, pass that along to the task which will publish to Kafka.

Refer to the following amazing diagram:

syslog clients
                      |  |  |  |
                      v  v  v  v
                   +---------------+
                   | Listener Task | (spawning connection tasks
                   +------+--------+  with stream descriptor)
                          |
           +--------------------------------+ 
           |              |                 |
+----------v--------+  +--v---+  +----------v--------+
| Connection Task A |  |  ..  |  | Connection Task N |
+---------------+---+  +---+--+  +----+--------------+
                |          |          |
                +----+     |     +----+ (sending prepared
                     |     |     |       messages over channel)
                +----v-----v-----v-----+
                | Kafka Publisher Task |
                +----------------------+
                   |  |  |  |  |  |
                   v  v  v  v  v  v
                  Apache Kafka Brokers

This basic formula is what I followed with the initial versions (released as 0.2.x) and that was fast . I used perf to profile with real-world traffic from Scribd, all of which were JSON logs, and the vast majority of time spent by the daemon was in parsing and serialization overhead. Since Rust does not have garbage collection or a “runtime” per se, there is very little standing between the code and the work it has to do. When using an async runtime such as async-std, smol, or tokio, there is however some other code running around behind the scenes to be aware of. My profiling against async-std 1.5.0 did indicate some CPU time being burned while polling on Futures, but I considered that more than likely to be “my bug” rather than “async-std’s bug.”

I was shocked at how little there was to actually optimize!

Since I was curious and had time to kill, I rapidly adopted async-std 1.6.0 when it was published. The 1.6.0 release removed the entire async-std runtime in favor of smol a new (small) async runtime for Rust. Having followed the development of smol, I was giddy at the potential of seeing an even faster hotdog after the upgrade was complete. After my rudimentary local testing, I cut a release and deployed it to production.

Performance dropped like a rock.

I was stumped. Stuck, I moved on to other projects and kept an eye on smol’s issue tracker to see if anybody else might replicate the issue.

Sometimes it is however more important to be lucky than smart.

I managed to catch the author of smol on Discord, and between them and the author of async-std I was able to solicit some help in understanding how performance had cratered so dramatically. @stjepang shared this gist which allowed for wrapping futures in Inspect() , printing out debug information when futures take far too long to execute. With their help, we were able to identify a couple of tightly bound CPU-only loops within hotdog that through some fluke had not caused issues under async-std 1.5.0. The more efficient smol under the hood exposed the performance problems, those very same ones which I had observed before as seemingly excessive CPU time spent on polling Futures.

The “trick” to resolving the issues is seemingly as old as the cooperative multi-tasking world itself: throw some yield s on it. In async-std this means task::yield_now().await; , which gives the async reactor a breather to let another task run.

Once the fix ( 0.3.3 ) had been deployed to production, I finally got the giddy excitement I had originally hoped for: the cluster scaled down to levels not previously seen.

In my opinion, Rust’s async runtimes make building high performance applications relatively straightforward. Unfortunately I don’t think they’re easily debuggable at this point. When everything goes great, they’re wonderful. When you find yourself inexplicably blocking somewhere it’s tricky to isolate. I’m sure there will be improvements in this area as time goes on, but the sharp edges can be a little sharper than somebody coming from Node or Java might expect.

hotdog is happily running along processing hundreds of thousands of log lines per minute.

That said, the number of times in my career where a simple yield addressed pesky performance issues is incalculable. :scream_cat:


以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

程序设计语言理论基础

程序设计语言理论基础

米切尔 / 电子工业出版社 / 2006-11 / 68.00元

本书提出了一个框架,用于分析程序设计语言的语法、操作和语义性质,该框架基于称为类型化λ演算的数学系统。λ演算的主要特色是对于函数和其他可计算的值的一种记法,以及一个等式逻辑和用于表达式求值的一组规则。本书中最简单的系统是称为泛代数的一个等式系统,它可以用来公理化和分析通常用于程序设计的许多数据类型。可作为理论计算机科学、软件系统和数学专业的大学本科高年级或者研究生初始学习阶段的教材,同时也适合用于......一起来看看 《程序设计语言理论基础》 这本书的介绍吧!

RGB转16进制工具
RGB转16进制工具

RGB HEX 互转工具

html转js在线工具
html转js在线工具

html转js在线工具

RGB CMYK 转换工具
RGB CMYK 转换工具

RGB CMYK 互转工具