1 Star 0 Fork 8

cong_wa/kLoop

forked from Fantix King/kLoop 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README
MulanPSL-2.0
# <img src="docs/kloop@2x.png" height="96px" align="left"> kLoop - *asyncio on Linux kernel* [![中文](https://img.shields.io/badge/Zh-中文-informational?logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAQCAYAAAAWGF8bAAAAAXNSR0IArs4c6QAAAERlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAA6ABAAMAAAABAAEAAKACAAQAAAABAAAAFKADAAQAAAABAAAAEAAAAABHXVY9AAABc0lEQVQ4EaWSOy8EURTHd+wDEY94JVtgg9BI1B6dQqHiE1CrRasT30DpC2hVQimiFkJWVsSj2U1EsmQH4/ff3CO3WDuDk/zmf8/jnntm7qRSMRZFUQ4WYSimNFmaRlsgq8F83K6WuALyva4mixbc+kfJcGqa7CqU4AjaocNpG5oHsx7qB3EqQRC8K4g/gazAMbFTBdbgL1Zh0w2EbnMVHdMrd4LZNotZmIZJKMAemC2z0MS6oDlYhzOQ6c3yGR5Fec4OGPvEHCmn3np+kfyT51+QH8afcbFLTfjgFVS9tZrpwC4v1k9M39w3NTQrBxSM4127SAmNoBt0Ma3QyHRwGUIYdQUh0+c0wZsLPKKH8AwvoHgNlmABZLtwBdqnP0DD9IEG2If6N0oz5SbYSfW4PYhvgNmUxU1JZGEEAsUyjPmB7lhBA1Xe7NMWpuzXa39fnC7lN1b/mZttSNLQv9XXZs2US9LwzjU5R+/d+n/CBx9I2uELeXrRajeDqHwAAAAASUVORK5CYII=)](README.zh.md) [![build](https://img.shields.io/github/workflow/status/fantix/kloop/构建?label=build&logo=github)](https://github.com/fantix/kloop/actions/workflows/build.yml) [![downloads](https://img.shields.io/pypi/dm/kloop?logo=pypi&logoColor=white)](https://pypi.python.org/pypi/gino) [![code quality](https://img.shields.io/codacy/grade/f2e97d6eb2554e87b3cd15aae8f6b1e0?logo=codacy)](https://app.codacy.com/gh/fantix/kloop/dashboard) [![license](https://img.shields.io/badge/license-MulanPSL--2.0-success?logo=opensourceinitiative&logoColor=white)](http://license.coscl.org.cn/MulanPSL2/) kLoop is an implementation of the Python [asyncio](https://docs.python.org/3/library/asyncio.html) event loop written in [Cython](https://cython.org/), using [io_uring](https://unixism.net/loti/what_is_io_uring.html) and [kTLS](https://www.kernel.org/doc/html/latest/networking/tls-offload.html) features of the Linux kernel, therefore called k(ernel)Loop. kLoop is open-sourced and released under the [MulanPSL - 2.0 license](http://license.coscl.org.cn/MulanPSL2). **⚠️WARNING: THIS PROJECT IS IN PROOF-OF-CONCEPT STAGE!⚠️** ## Features * **Minimum syscalls** - all I/O calls are done in the kernel thanks to io_uring, and the only remaining syscall to `io_uring_enter()` is also optimized to be only called when necessary using the `SQPOLL` feature. That means most of the overhead of syscalls is gone; * **No GIL in the main-loop** - the hot-path is written in Cython without GIL, that means it's compiled into pure C code without Python structures, saving some memory and execution time. On the other hand, GIL is only taken before Python callbacks, so it's slightly more friendly to multithreading, which is still not recommended though. * **TLS offloading** - all symmetric-key encryption and decryption work is offloaded to the NIC if supported, or to the thread pool of io_uring otherwise. This allows us to free up CPU for more I/O, or leverage all the CPU cores even if the application is running single-threaded. * **Asynchronous DNS resolving** - we blended in the Rust [trust-dns](https://github.com/bluejekyll/trust-dns/) library with a custom I/O runtime bridging to io_uring in C (including reading the `/etc/resolv.conf` and `/etc/hosts` files), providing flexible APIs to manage the concurrency, cache and configuration in Python. ## Requirements * Python >= 3.10 * Linux >= 5.11 (enable kTLS with `modprobe tls`) * OpenSSL >= 3.0 (kTLS receive offloading on TLS 1.3 requires the latest development version) Development and testing is done on Ubuntu 22.04. ## Architecture Diagram <img src="docs/architecture.en.png" width="620px" alt="architecture.png"> Looks like the Lucky Charms factory, says @aaronbrighton ... ## Development ### Ubuntu 22.04 ```bash sudo apt update sudo apt install gcc libssl-dev python3-dev python3.10-venv curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh python3 -m venv path/to/env source path/to/env/bin/activate pip install cython KLOOP_DEBUG=1 python setup.py develop # or just run `make` ```

简介

用 io_uring 和 kTLS 实现的 Python asyncio 事件循环。 展开 收起
Python
MulanPSL-2.0
取消

发行版

暂无发行版

贡献者

全部

近期动态

加载更多
不能加载更多了
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/cong_wa/kloop.git
git@gitee.com:cong_wa/kloop.git
cong_wa
kloop
kLoop
main

搜索帮助