Google cloud load balancing

From 탱이의 잡동사니
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Overview

Google load balancing 내용 정리.

Session affinity

  • None (NONE): 5-tuple hash of source IP address, source port, protocol, destination IP address, and destination port
  • Client IP (CLIENT_IP): 2-tuple hash of source IP address and destination IP address. Network Load Balancing calls this session affinity option Client IP, Destination IP.
  • Client IP, Destination IP, Protocol (CLIENT_IP_PROTO): 3-tuple hash of source IP address, destination IP address, and protocol
  • Client IP, Client Port, Destination IP, Destination Port, Protocol (CLIENT_IP_PORT_PROTO): 5-tuple hash of source IP address, source port, protocol, destination IP address, and destination port

See more