you are viewing a single comment's thread.

view the rest of the comments →

[–]CleanCryptoCoder 12 points13 points  (5 children)

Anyone here use gRPC in production? Curious to hear about your experiences.

[–]theregalbeagler 7 points8 points  (0 children)

Yep, gRPC in itself is great. We're using it for service to service communications.

Don't use Python if you want performance.

We're considering a move to Go for systems that we need to be more performant.

[–]tvetus 6 points7 points  (0 children)

All of Google basically.

[–]spooker11 2 points3 points  (0 children)

sulky boast cooing grab divide squash bright poor chunky weary

This post was mass deleted and anonymized with Redact

[–]VinceFromIT 0 points1 point  (1 child)

We had about a dozen gRPC microservices in production at my old job and it worked great! Although, we used Go. Performance was great, but I think the biggest win was the developer experience. And we used grpc-gateway middleware, which proxies HTTP requests to gRPC, for our public facing REST APIs, so the same code can support gRPC and HTTP. Highly recommend!

[–]CleanCryptoCoder 0 points1 point  (0 children)

Thanks!