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
cb46bd01
Commit
cb46bd01
authored
Dec 31, 2019
by
Soultz
Committed by
helei
Jan 21, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use pthread_once to initialize ignored_error_codes for cb
parent
33cd8c42
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
4 deletions
+17
-4
circuit_breaker.cpp
src/brpc/circuit_breaker.cpp
+17
-4
No files found.
src/brpc/circuit_breaker.cpp
View file @
cb46bd01
...
...
@@ -19,11 +19,13 @@
#include "brpc/circuit_breaker.h"
#include <pthread.h>
#include <cmath>
#include <set>
#include <mutex>
#include <gflags/gflags.h>
#include "butil/logging.h"
#include "butil/strings/string_number_conversions.h"
#include "butil/strings/string_split.h"
#include "butil/time.h"
...
...
@@ -68,12 +70,13 @@ namespace {
#define EPSILON (FLAGS_circuit_breaker_epsilon_value)
st
d
::
once_flag
g_init_ignored_error_codes_once
;
std
::
set
<
int
>
g_ignored_error_codes
;
st
atic
pthread_once_t
g_init_ignored_error_codes_once
;
std
::
set
<
int
>
*
g_ignored_error_codes
;
void
InitIgnoredErrorCodes
()
{
g_ignored_error_codes
=
new
std
::
set
<
int
>
;
std
::
vector
<
std
::
string
>
error_codes
;
SplitString
(
FLAGS_circuit_breaker_ignored_error_codes
,
','
,
&
error_codes
);
butil
::
SplitString
(
FLAGS_circuit_breaker_ignored_error_codes
,
','
,
&
error_codes
);
for
(
const
std
::
string
&
str
:
error_codes
)
{
int
error_code
=
0
;
if
(
!
butil
::
StringToInt
(
str
,
&
error_code
)
||
error_code
==
0
)
{
...
...
@@ -82,10 +85,15 @@ void InitIgnoredErrorCodes() {
<<
FLAGS_circuit_breaker_ignored_error_codes
;
continue
;
}
g_ignored_error_codes
.
insert
(
error_code
);
g_ignored_error_codes
->
insert
(
error_code
);
}
}
const
std
::
set
<
int
>*
GetOrNewIgnoredErrorCodes
()
{
::
pthread_once
(
&
g_init_ignored_error_codes_once
,
InitIgnoredErrorCodes
);
return
g_ignored_error_codes
;
}
}
// namepace
CircuitBreaker
::
EmaErrorRecorder
::
EmaErrorRecorder
(
int
window_size
,
...
...
@@ -201,8 +209,13 @@ CircuitBreaker::CircuitBreaker()
}
bool
CircuitBreaker
::
OnCallEnd
(
int
error_code
,
int64_t
latency
)
{
<<<<<<<
HEAD
std
::
call_once
(
g_init_ignored_error_codes_once
,
InitIgnoredErrorCodes
);
if
(
g_ignored_error_codes
.
find
(
error_code
)
!=
g_ignored_error_codes
.
end
())
{
=======
const
std
::
set
<
int
>*
ignored_error_codes
=
GetOrNewIgnoredErrorCodes
();
if
(
ignored_error_codes
->
find
(
error_code
)
!=
ignored_error_codes
->
end
())
{
>>>>>>>
use
pthread_once
to
initialize
ignored_error_codes
for
cb
return
true
;
}
if
(
_broken
.
load
(
butil
::
memory_order_relaxed
))
{
...
...
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