1
我們使用清漆3.02與緩存服務器,並有6個,服務器與不同重量的後端,所以循環可能不適合我們,光油後端健康輪詢
我們使用隨機主任低於健康檢查,但似乎不工作
probe apachehealthcheck {
.url = "/test/test.php";
.interval = 3s;
.timeout = 3 s;
.window = 5;
.threshold = 3;
.initial = 3;
.expected_response = 200; }
backend passport backend passport1 {
.host = "192.168.2.192";
.port = "80";
.connect_timeout = 10s;
.first_byte_timeout = 50s;
.between_bytes_timeout = 30s;
.probe = apachehealthcheck; }
director passport_cluster random {
{.backend = flpassport1;.weight = 1;}
{.backend = flpassport2;.weight = 2;}
... }
我看到下面的線爲https://www.varnish-cache.org/trac/wiki/BackendPolling
隨機導演將不考慮後端它們是不健康的 部分池。
這是否意味着當我在清漆使用隨機導演,當一些後端壞掉時,它仍然將請求轉發給?