aiocluster
Project description
aiocluster
aiocluster is a Python 3.11+ module for distributed systems management, enabling cluster membership tracking, failure detection, configuration sharing, and metadata management. It facilitates scalable and fault-tolerant application sharding through robust cluster coordination capabilities.
References
- ScuttleButt paper: https://www.cs.cornell.edu/home/rvr/papers/flowgossip.pdf
- Phi Accrual error detection: https://www.researchgate.net/publication/29682135_The_ph_accrual_failure_detector
- chitchat https://github.com/quickwit-oss/chitchat/blob/main/README.md
Requirements
- Python 3.11+.
- protobuf
Usage
import asyncio
import logging
from aiocluster import Cluster
from aiocluster import Config
from aiocluster import NodeId
async def main():
node1_id = NodeId(name="simple1", gossip_advertise_addr=("127.0.0.1", 7000))
node2_id = NodeId(name="simple2", gossip_advertise_addr=("127.0.0.1", 7001))
node3_id = NodeId(name="simple3", gossip_advertise_addr=("127.0.0.1", 7002))
config1 = Config(
node_id=node1_id,
gossip_interval=1,
seed_nodes=[("127.0.0.1", 7002)],
cluster_id="simple-aiocluster",
)
config2 = Config(
node_id=node2_id,
gossip_interval=1,
seed_nodes=[("127.0.0.1", 7000)],
cluster_id="simple-aiocluster",
)
config3 = Config(
node_id=node3_id,
gossip_interval=1,
seed_nodes=[("127.0.0.1", 7001)],
cluster_id="simple-aiocluster",
)
cluster1 = Cluster(config1, initial_key_values={"cluster": "1"})
cluster2 = Cluster(config2, initial_key_values={"cluster": "2"})
cluster3 = Cluster(config3, initial_key_values={"cluster": "3"})
async with cluster1, cluster2, cluster3:
await asyncio.sleep(10)
if __name__ == "__main__":
logging.basicConfig(level=logging.DEBUG)
asyncio.run(main())
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file aiocluster-1.0.1.tar.gz.
File metadata
- Download URL: aiocluster-1.0.1.tar.gz
- Upload date:
- Size: 28.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
16985b7b61d7ed67910f5077cff7e7595208fdde9ee26280365c90c58a2c4e18
|
|
| MD5 |
4155a89c5171b72f348885e33f2b00f4
|
|
| BLAKE2b-256 |
7f9ca1ec44707e61b3425817ae4752921854c937d0db004d33655f951a4164c7
|
File details
Details for the file aiocluster-1.0.1-py3-none-any.whl.
File metadata
- Download URL: aiocluster-1.0.1-py3-none-any.whl
- Upload date:
- Size: 22.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e3bc6dce74a4892591673ad9d332d1374e6b5738b6a7cf83fdab773adf669475
|
|
| MD5 |
71c60e53e7a09dacd8670f6df48e7865
|
|
| BLAKE2b-256 |
c2dbe8ce52d871ae69080b815e86aaa80404709ed52df0e1663b2ebd9c7f7248
|