Google cloud load balancing: Difference between revisions

From 탱이의 잡동사니
Jump to navigation Jump to search
(Created page with "== Overview == Google load balancing 내용 정리. == Session affinity == * https://cloud.google.com/load-balancing/docs/internal#session_affinity * https://cloud.google.com...")
 
 
Line 3: Line 3:


== Session affinity ==
== 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 ===
* https://cloud.google.com/load-balancing/docs/internal#session_affinity
* https://cloud.google.com/load-balancing/docs/internal#session_affinity
* https://cloud.google.com/load-balancing/docs/target-pools
* https://cloud.google.com/load-balancing/docs/target-pools


[[category:google cloud]]
[[category:google cloud]]

Latest revision as of 13:57, 3 October 2021

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