Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
B
brpc
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
brpc
Commits
30ff183a
Unverified
Commit
30ff183a
authored
Dec 05, 2019
by
Ge Jun
Committed by
GitHub
Dec 05, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #981 from dyike/master
add zone for bili discovery in fetching server nodes
parents
e784526a
0d9ae8f8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
discovery_naming_service.cpp
src/brpc/policy/discovery_naming_service.cpp
+7
-1
No files found.
src/brpc/policy/discovery_naming_service.cpp
View file @
30ff183a
...
...
@@ -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_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_zone
,
""
,
"Zone of services"
);
DEFINE_int32
(
discovery_renew_interval_s
,
30
,
"The interval between two consecutive renews"
);
DEFINE_int32
(
discovery_reregister_threshold
,
3
,
"The renew error threshold beyond"
" which Register would be called again"
);
...
...
@@ -348,9 +349,14 @@ int DiscoveryNamingService::GetServers(const char* service_name,
}
servers
->
clear
();
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
,
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
);
if
(
cntl
.
Failed
())
{
LOG
(
ERROR
)
<<
"Fail to get /discovery/fetchs: "
<<
cntl
.
ErrorText
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment