Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/avito-tech/bioyino
High performance and high-precision multithreaded StatsD server
https://github.com/avito-tech/bioyino
Last synced: 3 months ago
JSON representation
High performance and high-precision multithreaded StatsD server
- Host: GitHub
- URL: https://github.com/avito-tech/bioyino
- Owner: avito-tech
- License: unlicense
- Created: 2017-10-02T15:35:24.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-03-11T11:43:22.000Z (11 months ago)
- Last Synced: 2024-08-02T00:21:52.368Z (6 months ago)
- Language: Rust
- Size: 523 KB
- Stars: 225
- Watchers: 10
- Forks: 22
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome-rust - avito-tech/bioyino - performance scalable StatsD compatible server. (Applications / Observability)
- awesome-rust - avito-tech/bioyino - A high-performance scalable StatsD compatible server. (Applications / Observability)
- fucking-awesome-rust - avito-tech/bioyino - A high-performance scalable StatsD compatible server. (Applications / Observability)
- fucking-awesome-rust - avito-tech/bioyino - A high-performance scalable StatsD compatible server. (Applications / Observability)
- awesome-rust-cn - avito-tech/bioyino
README
# Bioyino #
The StatsD server written in Rust# Description #
Bioyino is a distributed statsd-protocol server with carbon backend.# Features #
* all basic metric types supported (gauge, counter, diff-counter, timer), new types are easy to be added
* fault tolerant: metrics are replicated to all nodes in the cluster
* clustering: all nodes gather and replicate metrics, but only leader sends metrics to backend
* precise: 64-bit floats, full metric set is stored in memory (for metric types that require post-processing), no approximation algorithms involved
* standalone: can work without external services
* safety and security: written in memory-safe language
* networking tries to do it's best to avoid dropping UDP packets as much as possible
* networking is asynchronous
* small memory footprint and low CPU consumption# Status #
Currently works in production at Avito, processing production-grade metric stream (~4M metrics per second on 3 nodes)# Installing #
One of Bioyino's most powerful features - multimessage mode - require it to be working on GNU/Linux.* Install [capnp compiler tool](https://capnproto.org/install.html) to generate schemas. It's usually downloaded using your distribution's package manager.
* Do the usual Rust-program build-install cycle. Please note, that building is always tested on latest stable version of Rust. Rust 2018 edition is required.```
$ git clone
$ cargo build --release && strip target/release/bioyno
```
# Build RPM package (for systemd-based distro)1. Install requirements (as root or with sudo)
```
yum install -y cargo capnproto capnproto-devel
yum install -y ruby-devel
gem install fpm
```2. Build
```
bash contrib/fpm/create_package_rpm.sh
```# Build DEB package (for systemd-based distro)
1. Install requirements (as root or with sudo)
```
apt-get install -y capnproto libcapnp-dev
apt-get install -y ruby-dev
gem install fpm
```2. Build
```
bash contrib/fpm/create_package_deb.sh
```# Configuring #
To configure, please, see config.toml, all the options are listed there and all of them are commented.# Contributing #
You can help project by doing the following:
* find TODOs/FIXMEs and unwraps in the code fix them and create a PR
* solve issues
* create issues to request new features
* add new features, like new metric types
* test the server on your environment and creating new issues if/when bugs found