Thrift client pool for Takumi
Project description
Thrift client pool for Takumi.
Install
$ pip install takumi-client
Usage
This module relies on takumi-config for settings.
- CLIENT_SETTINGS
- service: required, service name defined in thrift file
- thrift_file: required, existing thrift file path
- pool_size: optional, connection pool size, default 30
- timeout: optional, connection timeout, default 30s
- check_time: optional, time interval for checking failed connections, default 10s
- hosts: optional, a list of hosts: [(‘hostname’, port)]
- extra args: vary for different hosts extensions
Example settings:
CLIENT_SETTINGS = { 'demo': { 'service': 'PingService', 'thrift_file': 'ping.thrift', 'hosts': [ ('localhost', 1990), ('localhost', 8010), ('localhost', 1890) ] } }
To get a pool:
from takumi_client import clients pool = clients['demo']
To invoke an api:
with pool.client_ctx() as c: c.ping()
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
takumi_client-0.1.3.tar.gz
(4.8 kB
view hashes)
Built Distribution
Close
Hashes for takumi_client-0.1.3-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 12300842892fb8cd4bde58cda4406a5547a7ed8e62fc91b0898b6d3fc5b8bdf8 |
|
MD5 | 1673eedd68692e3944e0ad268dd32ee4 |
|
BLAKE2-256 | 5ae63a826c88bc80dfab6cea8b7ba891f7c6ac4a697e6fdfee26b08327566a4f |