grpc python asyncio_aiogrpc: asyncio wrapper for grpc.io

aiogrpc

asyncio wrapper for grpc.io. Currently, only client-side interfaces are supported.

Interfaces

aiogrpc has exactly the same interface as grpc.io (https://grpc.io/grpc/python/grpc.html#module-grpc), except:

All callbacks are called with call_soon_threadsafe() to run in the same thread with the event loop

All futures are asyncio futures (i.e. awaitable)

All blocking interfaces (__call__ for unary methods, code(), details(), ...) become coroutines

Stream input/output are async iterators

Usage

Compile your proto file with protoc to generate stub files

Use the stub files with aiogrpc.Channel, instead of grpc.Channel:

from aiogrpc import insecure_channel

import asyncio

from mystub import MyStub

channel = insecure_channel('ipv4:///127.0.0.1:8080')

mystub = MyStub(channel)

async def test_call():

return await mystub.mymethod(...)

async def test_call_stream():

async for v in mystub.my_stream_method(...):

...

Balancing

Same as the original grpc.io, balancing (fail over) between multiple servers are supported:

Use multiple IPv4 or IPv6 addresses for balancing - use target like: "ipv4:///1.2.3.4:9999,1.2.3.5:9999,1.2.3.6:9999"

or "ipv6:///[1::2]:9999,[1::3]:9999,[1::4]:9999"

Specify ONE DNS name which resolves to multiple addresses. GRPC will balance between the resolved addresses, and try

to update the resolving result in interval. Example: "dns:///myserver:9999"

Notice that you cannot mix up IPv4, IPv6 and DNS addresses; only addresses with the same type

can be balanced. Also, when using DNS target, only one DNS name can be specified.

The default load balancing strategy is "pick_first" (fail-over). Set "grpc.lb_policy_name" option to "round_robin" for

round-robin load balancing: channel = insecure_channel('ipv4:///1.2.3.4:9999,1.2.3.5:9999,1.2.3.6:9999', [('grpc.lb_policy_name', 'round_robin')])

Copyright Notice

All code are published under Apache 2.0 License

Some code and docstrings are modified from grpc.io (https://grpc.io/grpc/python/grpc.html#module-grpc)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值