Skip to main content

Thrift client pool for Takumi

Project description

https://travis-ci.org/elemepi/takumi-client.svg?branch=master

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.2.tar.gz (4.5 kB view hashes)

Uploaded Source

Built Distribution

takumi_client-0.1.2-py2.py3-none-any.whl (6.9 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page