[grpc-io] [Announcement] Public Preview of gRPC Observability on GCP

2022-12-13 Thread 李峰
We are pleased to announce the Public Preview of gRPC Observability on GCP (User Guide , GCP blog

[grpc-io] Re: Connect to a Go GRPC Server running with TLS enabled using node js grpc client

2022-12-13 Thread Vikas Garg
Hi , Could you please help - How did you resolve the issue? On Wednesday, 15 March 2017 at 17:08:56 UTC+5:30 ugues...@gmail.com wrote: > Thanks Guys for Replying. The Issue has been Resolved. > > > On Friday, March 10, 2017 at 10:06:00 AM UTC+5:30, Aakarshit Naga Sai > Batchu wrote: >> >> We

[grpc-io] Re: Posting example code for asynchronous streaming implementation [subscription based services]

2022-12-13 Thread Tom Mclean
Amazing. Thank you so much. On Thursday, April 27, 2017 at 7:10:56 AM UTC+1 kuldeepm...@gmail.com wrote: > While implementing asynchronous streaming grpc, there are no straight > forward examples that can be used, it was hard time for me to implement it. > Now that I have implemented the

[grpc-io] Re: How to use/distribute proto files in Python packages

2022-12-13 Thread Shareef Jalloq
I can hack this to work by prepending sys.path but that feels horrible: # __init__.py import os, sys sys.path.insert(0, os.path.dirname(__file__)) On Tuesday, 13 December 2022 at 14:09:26 UTC Shareef Jalloq wrote: > At the moment I've started with the following directory structure: > > repo/ >

[grpc-io] Re: How to use/distribute proto files in Python packages

2022-12-13 Thread Shareef Jalloq
At the moment I've started with the following directory structure: repo/ service/ cpp/ lib/ python/ service_pb2.py service_pb2_grpc.py service.proto CMakeLists.txt and I've just tried adding an __init__.py to that python/

[grpc-io] How to use/distribute proto files in Python packages

2022-12-13 Thread Shareef Jalloq
Hi all, this is more of a request for best practice advice. I'm trying to work out how to use proto files across projects. I've seen examples of people suggesting to submodule in the proto files to all projects that use them. That works nicely for most use cases where you have a pure Git

[grpc-io] Is there a way to install gRPC via CMake without requiring sudo?

2022-12-13 Thread Shareef Jalloq
I'm working in an environment where we don't always have sudo access, managed remote compute clusters, and trying to install locally via CMake. However, passing CMAKE_INSTALL_PREFIX works for all dependencies aside from zlib. Is that by design or is there a way to override it and force