Networking & Protocols
Operational semantics for HTTP, TLS, and load balancing.
8 topics in this category.
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
RecommendedA mechanism at the transport layer that periodically sends empty probe packets across an idle connection to ensure the peer is still reachable and to prevent firewalls from dropping the connection.
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.