mirror of
				https://github.com/donnemartin/system-design-primer.git
				synced 2025-11-04 02:02:31 +03:00 
			
		
		
		
	Another VI update
This commit is contained in:
		@@ -844,12 +844,17 @@ Load balancers can be implemented with hardware (expensive) or with software suc
 | 
			
		||||
Cân bằng tải có thể được hiện thực hoá với phân cứng (đắt đỏ) hoặc với phần mềm như là HAProxy.
 | 
			
		||||
 | 
			
		||||
Additional benefits include:
 | 
			
		||||
Các lợi ích thêm:  # FIXME: bad translation
 | 
			
		||||
 | 
			
		||||
* **SSL termination** - Decrypt incoming requests and encrypt server responses so backend servers do not have to perform these potentially expensive operations
 | 
			
		||||
* **Triệt tiêu SSL** - Giải mã các requests đi đến và mã hoá responses từ máy chủ, để các máy chủ không phải thực hiện các thao tác chi chí (tính toán) cao này.
 | 
			
		||||
    * Removes the need to install [X.509 certificates](https://en.wikipedia.org/wiki/X.509) on each server
 | 
			
		||||
    * Bớt đi nhu cầu phải cài đặt [chứng thực X.509](https://en.wikipedia.org/wiki/X.509) trên mỗi máy chủ
 | 
			
		||||
* **Session persistence** - Issue cookies and route a specific client's requests to same instance if the web apps do not keep track of sessions
 | 
			
		||||
* **Lưu phiên** - Cấp phát cookie và dẫn yêu cầu của máy khách đến đúng bản máy chủ nếu ứng dụng web không phiên  # FIXME: bad translation
 | 
			
		||||
 | 
			
		||||
To protect against failures, it's common to set up multiple load balancers, either in [active-passive](#active-passive) or [active-active](#active-active) mode.
 | 
			
		||||
Để bảo vệ failure, thường sẽ nhiều cân bằng tải sẽ được dựng, hoặc dùng mô hình [active-passive](#active-passive) hoặc [active-active](#active-active).
 | 
			
		||||
 | 
			
		||||
Load balancers can route traffic based on various metrics, including:
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user