grpc-dotnet icon indicating copy to clipboard operation
grpc-dotnet copied to clipboard

gRPC for .NET

Results 162 grpc-dotnet issues
Sort by recently updated
recently updated
newest added

I have mentioned the similar problem in another issue. ["Resource temporarily unavailable" can not recover](https://github.com/grpc/grpc-dotnet/issues/2252) ### What version of gRPC and what language are you using? grpc client 2.59 ###...

bug

I'm getting an intermittent error that is causing my one client to crash. This client is running as a background service calling the gRPC server using Parallel.ForEach. This client is...

question

Compression creates a stream on the server because compression APIs are stream based. e.g. https://github.com/grpc/grpc-dotnet/blob/1625f8942791c82d700802fc7278c543025f0fd3/src/Grpc.AspNetCore.Server/Internal/HttpContextSerializationContext.cs#L239-L248 Right now, a memory stream is created which can allocate a large buffer. We could...

enhancement

Communication between the Kestrel Http-2 gRPC server and the .NET gRPC HttpClient is carried out smoothly. However, communication between the Kestrel Http-3 gRPC server and the .NET gRPC HttpClient(`HttpVersion.Version30`) could...

question

### What version of gRPC and what language are you using? gRPC 2.47.0, C# ### What operating system (Linux, Windows,...) and version? Windows 11 (10.0.22621) ### What runtime / compiler...

bug

I have console applications using WCF that I want to migrate from .Net Framework to .Net 6 (or later). Microsoft recommends that gRPC shall be used. But all tutorials I...

question

Hi, Have a case with MS regarding keepalives on our client/server and they proposed tuning the following settings from https://grpc.io/docs/guides/keepalive/: * KEEPALIVE_TIMEOUT on both client and server * KEEPALIVE_WITHOUT_CALLS on...

question

In C#, the raw message payload are being deserialized/serialized using contextual marshallers (which are instantiated directly from the generated code of protobuf services). Currently there is no way to provide...

lang/C#
priority/P2
kind/enhancement
api

### What version of gRPC and what language are you using? **dotnet** - Grpc.AspNetCore.Server: 2.58.0 - Grpc.Core.Api: 2.58.0 - Grpc.Net.Common: 2.58.0 - Grpc.Tools: 2.59.0 **python3** - grpcio: 1.59.0 - grpcio-tools:...

bug

I am implementing a demo server and client with GRPC, where client send a single request and receive the multiple responses. # Proto: ``` rpc Test (HelloRequest1) returns (stream HelloReply1);...

question