Tag

Network Model

0 views collected around this technical thread.

Selected Java Interview Questions
Selected Java Interview Questions
Jul 16, 2023 · Cloud Native

Kubernetes Network Models: Underlay, Overlay, CNI Plugins, and Virtual Networking Techniques

This article examines Kubernetes networking by defining underlay and overlay models, describing how underlay networks like flannel host‑gw and Calico BGP operate, explaining IPVLAN/MACVLAN virtualization, and reviewing common tunnel protocols such as VxLAN and IPIP used by various CNI plugins.

CNINetwork ModelOverlay
0 likes · 12 min read
Kubernetes Network Models: Underlay, Overlay, CNI Plugins, and Virtual Networking Techniques
Architect's Guide
Architect's Guide
Dec 14, 2022 · Cloud Native

Understanding Underlay and Overlay Network Models in Kubernetes

This article explains Kubernetes networking models, detailing the underlay network infrastructure, overlay techniques, and common CNI implementations such as Flannel, Calico, IPVLAN, and VxLAN, while comparing their architectures, protocols, and configuration considerations.

CNICalicoFlannel
0 likes · 12 min read
Understanding Underlay and Overlay Network Models in Kubernetes
Top Architect
Top Architect
Nov 21, 2022 · Cloud Native

Understanding Underlay and Overlay Network Models in Kubernetes

This article provides a comprehensive overview of Kubernetes networking by explaining the concepts of underlay and overlay network models, describing their implementations such as flannel host‑gw, Calico BGP, IPVLAN/MACVLAN, and tunneling technologies like VxLAN and IPIP, and offering practical references for each approach.

CNICalicoFlannel
0 likes · 14 min read
Understanding Underlay and Overlay Network Models in Kubernetes
Tencent Cloud Developer
Tencent Cloud Developer
Feb 22, 2021 · Databases

Deep Dive into Redis Multi-Threaded Network Model: From Single-Threaded Reactor to I/O Threading

The article traces Redis’s shift from its original single‑threaded reactor model to the I/O‑threaded architecture introduced in version 6, explaining how atomic operations and round‑robin client distribution let separate threads handle network I/O and parsing while the main thread executes commands, yielding roughly a two‑fold throughput boost but retaining a single‑threaded command core and incurring brief CPU spikes from busy‑wait synchronization.

Event LoopI/O multiplexingMulti-threading
0 likes · 34 min read
Deep Dive into Redis Multi-Threaded Network Model: From Single-Threaded Reactor to I/O Threading