gRPC extensions for Google Cloud Platform
Project description
Package for gRPC-GCP Python.
Installation
gRPC-GCP Python is available wherever gRPC is available.
From PyPI
If you are installing locally…
$ pip install grpcio-gcp
Else system wide (on Ubuntu)…
$ sudo pip install grpcio-gcp
Usage
Create a config file (e.g. spanner.grpc.config) defining API configuration, with ChannelPoolConfig and MethodConfig.
channel_pool: { max_size: 10 max_concurrent_streams_low_watermark: 1 } method: { name: "/google.spanner.v1.Spanner/CreateSession" affinity: { command: BIND affinity_key: "name" } } method: { name: "/google.spanner.v1.Spanner/GetSession" affinity: { command: BOUND affinity_key: "name" } } method: { name: "/google.spanner.v1.Spanner/DeleteSession" affinity: { command: UNBIND affinity_key: "name" } }
Load configuration file to ApiConfig object.
import google.protobuf.text_format
config = grpc_gcp.api_config_from_text_pb(
pkg_resources.resource_string(__name__, 'spanner.grpc.config'))
Create channel pool using grpc_gcp.
import grpc_gcp
import grpc
credentials = grpc.ssl_channel_credentials()
# Add api config key-value pair to options
options = [(grpc_gcp.GRPC_GCP_CHANNEL_ARG_API_CONFIG, config)]
channel_pool = grpc_gcp.secure_channel(target, credentials, options)
The generated channel pool is a wrapper of the original grpc.Channel, and has the same APIs.
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
grpcio-gcp-0.2.1.tar.gz
(13.3 kB
view hashes)
Built Distribution
Close
Hashes for grpcio_gcp-0.2.1-py2-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2baa9d86f1187775e650d8cc68cc377e39c14d623a1faff6a7c3f390be437927 |
|
MD5 | 5bf83148042232ca5ab9818108d2f7ef |
|
BLAKE2b-256 | 16613e09b1a5402141a6d5f5a411282148aaea6ed69645ff3fe5f05b2e86cd00 |