Google cloud load balancing

From 탱이의 잡동사니
Jump to navigation Jump to search

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