Comprehensive guide for designing and implementing production-grade gRPC services in Go. Covers contract standardization with Buf, transport layer security via mTLS, and deep observability with OpenTelemetry interceptors.
Use this skill when
Designing microservices communication with gRPC in Go.
Building high-performance internal APIs using Protobuf.
Implementing streaming workloads (unidirectional or bidirectional).
Standardizing API contracts using Protobuf and Buf.
Configuring mTLS for service-to-service authentication.
Do not use this skill when
Building pure REST/HTTP public APIs without gRPC requirements.
Modifying legacy
.proto
files without the ability to introduce a new API version (e.g.,
api.v2
) or ensure backward compatibility.
Managing service mesh traffic routing (e.g., Istio/Linkerd), which is outside the application code scope.
Step-by-Step Guide
Confirm Technical Context
Identify Go version, gRPC-Go version, and whether the project uses Buf or raw protoc.
Use Buf to standardize your toolchain and linting with
buf.yaml
and
buf.gen.yaml
.
✅
Do:
Always use semantic versioning in package paths (e.g.,
package api.v1
).
✅
Do:
Enforce mTLS for all internal service-to-service communication.
✅
Do:
Handle
ctx.Done()
in all streaming handlers to prevent resource leaks.
✅
Do:
Map domain errors to standard gRPC status codes (e.g.,
codes.NotFound
).
❌
Don't:
Return raw internal error strings or stack traces to gRPC clients.
❌
Don't:
Create a new
grpc.ClientConn
per request; always reuse connections.
Troubleshooting
Error: Inconsistent Gen
If the generated code does not match the schema, run
buf generate
and verify the
go_package
option.
Error: Context Deadline
Check client timeouts and ensure the server is not blocking infinitely in streaming handlers.
Error: mTLS Handshake
Ensure the CA certificate is correctly added to the
x509.CertPool
on both client and server sides.
Limitations
Does not cover service mesh traffic routing (Istio/Linkerd configuration).
Does not cover gRPC-Web or browser-based gRPC integration.
Assumes Go 1.21+ and gRPC-Go v1.60+; older versions may have different APIs (e.g.,
grpc.Dial
vs
grpc.NewClient
).
Does not cover L7 gRPC-aware load balancer configuration (e.g., Envoy, NGINX).
Does not address Protobuf schema registry or large-scale schema governance beyond Buf lint.
Resources
resources/implementation-playbook.md
for detailed patterns, code examples, and anti-patterns.
Google API Design Guide
Buf Docs
gRPC-Go Docs
OpenTelemetry Go Instrumentation