Re: [grpc-io] v1.7.0 Not Found when installing via Composer for PHP

2017-11-15 Thread 'Stanley Cheung' via grpc.io
There is effectively no change to the composer package for 1.7.0. You can continue to use version 1.6.0 On Wed, Nov 15, 2017 at 8:14 AM, wrote: > Is it possible to update the php composer version so that v1.7.0 can be > installed via composer? The latest version is

[grpc-io] Packet reliability in gRPC - checksum?

2017-11-15 Thread agupta68
Hi, Does gRPC out of the box provide any guarantees for packet integrity over the network? Do we need to implement CRC or checksum as a field in the protobuf spec and use that to ensure that no packet corruption happened? This is in content of gRPC with Google cloud endpoints (ESP) if that

Re: [grpc-io] [grpc-java] Will Java 9 ALPN support lessen need for netty-tcnative?

2017-11-15 Thread scwingfield
Thanks, sounds promising! > -- You received this message because you are subscribed to the Google Groups "grpc.io" group. To unsubscribe from this group and stop receiving emails from it, send an email to grpc-io+unsubscr...@googlegroups.com. To post to this group, send email to

Re: [grpc-io] v1.7.0 Not Found when installing via Composer for PHP

2017-11-15 Thread mark
Thanks Stanley, at least I don't have to worry about changes. Would you consider uploading the new version, just so that composer repository doesn't appear out of sync with the package releases? Thanks, -MC On Wednesday, November 15, 2017 at 2:03:42 PM UTC-5, Stanley Cheung wrote: > > There is

Re: [grpc-io] Grpc server scaling(bidirectional streaming)

2017-11-15 Thread 'Nathaniel Manista' via grpc.io
On Mon, Nov 13, 2017 at 6:23 AM, sam reddy wrote: > We are building a grpc service in python which has a bidirectional > streaming endpoint and also a unary endpoint. > > we want the stream to live forever so we have no timeouts and streams are > working as

[grpc-io] gRPC 1.7.2 + OpenSSL 1.1.0

2017-11-15 Thread minyang . jung
It appears that the latest gRPC release (1.7.2) does not compile with OpenSSL 1.1.0g. Both packages are the latest releases as of now (Nov 15, 2017). A quick googling returned a couple github issues such as this one: https://github.com/grpc/grpc/issues/8801 gRPC build using cmake toolchain

Re: [grpc-io] v1.7.0 Not Found when installing via Composer for PHP

2017-11-15 Thread 'Stanley Cheung' via grpc.io
So composer package is based on tags on the Github repo. I have added the v1.7.0 tag to the repo but composer does not seem to want to pick this up as a separate release because a previous release (1.6.0) shares the same commit. On Wed, Nov 15, 2017 at 11:15 AM, wrote: >

[grpc-io] Received DATA frame for an unknown stream

2017-11-15 Thread Mani Balasubramanian
Hi, I am using Java client/server. And I am seeing this error for a lot of messages. Client : - Channel channel = ManagedChannelBuilder.forTarget(serviceName) .usePlaintext(true)

[grpc-io] v1.7.0 Not Found when installing via Composer for PHP

2017-11-15 Thread mark
Is it possible to update the php composer version so that v1.7.0 can be installed via composer? The latest version is v1.6.0: https://packagist.org/packages/grpc/grpc Thanks, -Mark -- You received this message because you are subscribed to the Google Groups "grpc.io" group. To unsubscribe

[grpc-io] Re: [C++/C#] Directly targeting grpclb

2017-11-15 Thread falco20019
I just finished implementing the grpclb resolver. Was pretty straight forward. Seems to work. But I don't receive any client stats. I defined a load_balance_token and set client_stats_reporting_interval to a duration of 5 seconds (for testing purpose). I see in the logs, that the token is used.

[grpc-io] Re: [C++/C#] Directly targeting grpclb

2017-11-15 Thread falco20019
I forgot to mention, I am using latest master (366e23b604d6458787ef8df77a2fed9c6d861f45) and based my changes on top of it. I don't think I have touched anything responsible for the reports. My changes can be seen here: