https://github.com/socketry/async-container
Scalable multi-thread multi-process containers for Ruby.
https://github.com/socketry/async-container
containers processes scalability threads
Last synced: 26 days ago
JSON representation
Scalable multi-thread multi-process containers for Ruby.
- Host: GitHub
- URL: https://github.com/socketry/async-container
- Owner: socketry
- License: mit
- Created: 2017-06-15T13:31:54.000Z (almost 9 years ago)
- Default Branch: main
- Last Pushed: 2026-03-19T22:23:44.000Z (about 1 month ago)
- Last Synced: 2026-03-26T20:34:39.550Z (about 1 month ago)
- Topics: containers, processes, scalability, threads
- Language: Ruby
- Homepage:
- Size: 946 KB
- Stars: 93
- Watchers: 10
- Forks: 8
- Open Issues: 5
-
Metadata Files:
- Readme: readme.md
- License: license.md
Awesome Lists containing this project
README
# Async::Container
Provides containers which implement parallelism for clients and servers.
[](https://github.com/socketry/async-container/actions?workflow=Test)
## Features
- Supports multi-process, multi-thread and hybrid containers.
- Automatic scalability based on physical hardware.
- Direct integration with [systemd](https://www.freedesktop.org/software/systemd/man/sd_notify.html) using `$NOTIFY_SOCKET`.
- Internal process readiness protocol for handling state changes.
- Automatic restart of failed processes.
## Usage
Please see the [project documentation](https://socketry.github.io/async-container/) for more details.
- [Getting Started](https://socketry.github.io/async-container/guides/getting-started/index) - This guide explains how to use `async-container` to build basic scalable systems.
- [Container Policies](https://socketry.github.io/async-container/guides/policies/index) - This guide explains how to use policies to monitor container health and implement custom failure handling strategies.
- [Systemd Integration](https://socketry.github.io/async-container/guides/systemd-integration/index) - This guide explains how to use `async-container` with systemd to manage your application as a service.
- [Kubernetes Integration](https://socketry.github.io/async-container/guides/kubernetes-integration/index) - This guide explains how to use `async-container` with Kubernetes to manage your application as a containerized service.
## Releases
Please see the [project releases](https://socketry.github.io/async-container/releases/index) for all releases.
### v0.34.4
- Add missing `bake` and `context` files to the release.
### v0.34.3
- `Controller#restart` and `Controller#reload` now include a `status:` message in the `ready!` notification, so `systemctl status` shows "Running with N children." instead of the stale "Initializing controller..." message.
### v0.34.2
- Once a container is stopped, it stays stopped.
### v0.34.0
- Add `Async::Container::Generic#stopping?` so that policies can more accurately track the state of the container.
### v0.33.0
- Add `Policy#make_statistics` to allow policies to customize statistics initialization.
### v0.32.1
- Expose `Async::Container::Controller` `#notify`, `#container_class`, and `#graceful_stop` for testing.
### v0.32.0
- Minor **breaking** changes to `Async::Container::Policy` interface.
- Expose `Async::Container::Statistics::Rate#window`.
### v0.31.0
- Introduce `Async::Container::Policy` for managing child lifecycle events and implementing custom failure handling strategies.
- Add `Async::Container::Statistics::Rate` for tracking failure and restart rates over sliding time windows.
- Fix restart counter to only increment when actually restarting (check `@running` flag).
### v0.30.0
- `SIGTERM` is now graceful, the same as `SIGINT`, for better compatibility with Kubernetes and systemd.
- `ASYNC_CONTAINER_INTERRUPT_TIMEOUT` and `ASYNC_CONTAINER_TERMINATE_TIMEOUT` are removed and replaced by `ASYNC_CONTAINER_GRACEFUL_TIMEOUT`.
### v0.29.0
- Introduce `Client#healthy!` for sending health check messages.
## Contributing
We welcome contributions to this project.
1. Fork it.
2. Create your feature branch (`git checkout -b my-new-feature`).
3. Commit your changes (`git commit -am 'Add some feature'`).
4. Push to the branch (`git push origin my-new-feature`).
5. Create new Pull Request.
### Developer Certificate of Origin
In order to protect users of this project, we require all contributors to comply with the [Developer Certificate of Origin](https://developercertificate.org/). This ensures that all contributions are properly licensed and attributed.
### Community Guidelines
This project is best served by a collaborative and respectful environment. Treat each other professionally, respect differing viewpoints, and engage constructively. Harassment, discrimination, or harmful behavior is not tolerated. Communicate clearly, listen actively, and support one another. If any issues arise, please inform the project maintainers.