James Newton-King

Results 320 comments of James Newton-King

Because I'm doing it in a loop: `while($true) { dotnet test --diag:log.txt }` In the example of the logs I attached it freezes after 3 runs. Have you tried reproing...

~Running test projects individually has fixed this problem for us - https://github.com/grpc/grpc-dotnet/commit/152255ec5419c1360819788d7911f4957c8e4e2c~

I've narrowed down my hanging issue. It is caused by something with how vstest writes to the console. If no tests fail then vstest completes without any problems. If a...

3.0.100-preview8-013532 https://travis-ci.org/grpc/grpc-dotnet/builds/565363470?utm_source=github_status&utm_medium=notification

@jtattermusch When is Grpc.Core going to get a new release with the changes there? We should make sure the change in Grpc.Core.Api isn't publically available before Grpc.Core is. I don't...

Blocking inside Task.Run is still blocking a thread pool thread.

Perhaps it has a limit on the number of concurrent open sockets for parallel HTTP/1.1 requests in HttpClient? You could try creating an app that makes concurrent requests but doesn't...

There are lots of ways it could be slow: thread pool starvation, exceeding maximum number of concurrent streams on a connection, GC overhead because of client GC mode. And there...

`grpc-dotnet\examples\Greeter\Client > dotnet run -c Release` 100 parallel tasks making 10,000 requests each: ``` Requests sent: 1000000 Total time: 6.0929658 seconds Average request time: 0.6073 ms Shutting down Press any...

If I change it to 10 tasks sending 100,000 requests each then total runtime increases but latency per request improves. ``` Requests sent: 1000000 Total time: 20.9581808 seconds Average request...