Unverified Commit 30ff183a authored by Ge Jun's avatar Ge Jun Committed by GitHub

Merge pull request #981 from dyike/master

add zone for bili discovery in fetching server nodes
parents e784526a 0d9ae8f8
...@@ -41,6 +41,7 @@ DEFINE_string(discovery_api_addr, DEFAULT_DISCOVERY_API_ADDR, "The address of di ...@@ -41,6 +41,7 @@ DEFINE_string(discovery_api_addr, DEFAULT_DISCOVERY_API_ADDR, "The address of di
DEFINE_int32(discovery_timeout_ms, 3000, "Timeout for discovery requests"); DEFINE_int32(discovery_timeout_ms, 3000, "Timeout for discovery requests");
DEFINE_string(discovery_env, "prod", "Environment of services"); DEFINE_string(discovery_env, "prod", "Environment of services");
DEFINE_string(discovery_status, "1", "Status of services. 1 for ready, 2 for not ready, 3 for all"); DEFINE_string(discovery_status, "1", "Status of services. 1 for ready, 2 for not ready, 3 for all");
DEFINE_string(discovery_zone, "", "Zone of services");
DEFINE_int32(discovery_renew_interval_s, 30, "The interval between two consecutive renews"); DEFINE_int32(discovery_renew_interval_s, 30, "The interval between two consecutive renews");
DEFINE_int32(discovery_reregister_threshold, 3, "The renew error threshold beyond" DEFINE_int32(discovery_reregister_threshold, 3, "The renew error threshold beyond"
" which Register would be called again"); " which Register would be called again");
...@@ -348,9 +349,14 @@ int DiscoveryNamingService::GetServers(const char* service_name, ...@@ -348,9 +349,14 @@ int DiscoveryNamingService::GetServers(const char* service_name,
} }
servers->clear(); servers->clear();
Controller cntl; Controller cntl;
cntl.http_request().uri() = butil::string_printf( std::string uri_str = butil::string_printf(
"/discovery/fetchs?appid=%s&env=%s&status=%s", service_name, "/discovery/fetchs?appid=%s&env=%s&status=%s", service_name,
FLAGS_discovery_env.c_str(), FLAGS_discovery_status.c_str()); FLAGS_discovery_env.c_str(), FLAGS_discovery_status.c_str());
if (!FLAGS_discovery_zone.empty()) {
uri_str.append("&zone=");
uri_str.append(FLAGS_discovery_zone);
}
cntl.http_request().uri() = uri_str;
chan->CallMethod(NULL, &cntl, NULL, NULL, NULL); chan->CallMethod(NULL, &cntl, NULL, NULL, NULL);
if (cntl.Failed()) { if (cntl.Failed()) {
LOG(ERROR) << "Fail to get /discovery/fetchs: " << cntl.ErrorText(); LOG(ERROR) << "Fail to get /discovery/fetchs: " << cntl.ErrorText();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment