Networking & Protocols
Operational semantics for HTTP, TLS, and load balancing.
8 topics in this category.
About this category
This section collects production-verified specifications, implementation standards, and operational guidelines for networking & protocols. Each specification provides clear compliance levels (Required, Recommended, Optional, or Avoid) alongside concrete testing methods and platform considerations.
Topics
Service mesh basics
RecommendedA dedicated infrastructure layer for managing, securing, and observing service-to-service communication within a microservices architecture.
TLS certificate rotation
RequiredThe automated process of replacing cryptographic certificates before they expire to maintain secure HTTP connections without downtime.
HTTP retry-after semantics
RecommendedThe standardized HTTP header used by servers to explicitly tell clients exactly how long to wait before attempting a failed request again, preventing thundering herds.
TCP Keepalive: Preventing Silent Connection Drops
RecommendedHow TCP keepalive probes work at the OS level, why cloud firewalls silently drop idle connections before the default 2-hour timeout, and how to configure tcp_keepalive_time to prevent application deadlocks.
webhook delivery
RecommendedAn event-driven architectural pattern where one service sends automated HTTP POST requests to another service the moment an event occurs, replacing continuous polling.
Identity and access management for infrastructure (IAM/RBAC)
RecommendedThe principles of authenticating entities (users and machines) and authorizing their specific permissions across cloud environments and clusters.
PKI and certificate authority fundamentals
RecommendedThe cryptographic trust framework that enables secure communication over untrusted networks via digital certificates and mathematical proof of identity.
Idempotency keys in distributed systems
RecommendedThe architectural mechanism for ensuring that retrying a failed network request never results in a duplicated action, such as charging a customer's credit card twice.