Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
2
22a7f0099
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Summer2022
22a7f0099
Commits
dd052534
Commit
dd052534
authored
5 years ago
by
YGrylls
Browse files
Options
Downloads
Patches
Plain Diff
fmt the code
parent
b485e8d8
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
config/consumer_config.go
+1
-1
1 addition, 1 deletion
config/consumer_config.go
config/provider_config.go
+1
-1
1 addition, 1 deletion
config/provider_config.go
filter/impl/hystrix_filter.go
+42
-49
42 additions, 49 deletions
filter/impl/hystrix_filter.go
with
44 additions
and
51 deletions
config/consumer_config.go
+
1
−
1
View file @
dd052534
...
...
@@ -52,7 +52,7 @@ type ConsumerConfig struct {
Registries
map
[
string
]
*
RegistryConfig
`yaml:"registries" json:"registries,omitempty" property:"registries"`
References
map
[
string
]
*
ReferenceConfig
`yaml:"references" json:"references,omitempty" property:"references"`
ProtocolConf
interface
{}
`yaml:"protocol_conf" json:"protocol_conf,omitempty" property:"protocol_conf"`
FilterConf
interface
{}
`yaml:"filter_conf" json:"filter_conf,omitempty" property:"filter_conf" `
FilterConf
interface
{}
`yaml:"filter_conf" json:"filter_conf,omitempty" property:"filter_conf" `
}
func
(
*
ConsumerConfig
)
Prefix
()
string
{
...
...
This diff is collapsed.
Click to expand it.
config/provider_config.go
+
1
−
1
View file @
dd052534
...
...
@@ -46,7 +46,7 @@ type ProviderConfig struct {
Services
map
[
string
]
*
ServiceConfig
`yaml:"services" json:"services,omitempty" property:"services"`
Protocols
map
[
string
]
*
ProtocolConfig
`yaml:"protocols" json:"protocols,omitempty" property:"protocols"`
ProtocolConf
interface
{}
`yaml:"protocol_conf" json:"protocol_conf,omitempty" property:"protocol_conf" `
FilterConf
interface
{}
`yaml:"filter_conf" json:"filter_conf,omitempty" property:"filter_conf" `
FilterConf
interface
{}
`yaml:"filter_conf" json:"filter_conf,omitempty" property:"filter_conf" `
}
func
(
*
ProviderConfig
)
Prefix
()
string
{
...
...
This diff is collapsed.
Click to expand it.
filter/impl/hystrix_filter.go
+
42
−
49
View file @
dd052534
...
...
@@ -12,16 +12,14 @@ import (
"gopkg.in/yaml.v2"
)
const
(
HYSTRIX
=
"hystrix"
TIMEOUT_KEY
=
"timeout"
MAXCONCURRENTREQUESTS_KEY
=
"maxconcurrentrequests"
SLEEPWINDOW_KEY
=
"sleepwindow"
ERRORPERCENTTHRESHOLD_KEY
=
"errorpercentthreshold"
HYSTRIX
=
"hystrix"
TIMEOUT_KEY
=
"timeout"
MAXCONCURRENTREQUESTS_KEY
=
"maxconcurrentrequests"
SLEEPWINDOW_KEY
=
"sleepwindow"
ERRORPERCENTTHRESHOLD_KEY
=
"errorpercentthreshold"
)
var
(
//Timeout
//MaxConcurrentRequests
...
...
@@ -29,36 +27,34 @@ var (
//SleepWindow
//ErrorPercentThreshold
isConfigLoaded
=
false
conf
=
&
HystrixFilterConfig
{}
conf
=
&
HystrixFilterConfig
{}
//
)
func
init
(){
extension
.
SetFilter
(
HYSTRIX
,
GetHystrixFilter
)
func
init
()
{
extension
.
SetFilter
(
HYSTRIX
,
GetHystrixFilter
)
}
type
HystrixFilter
struct
{
type
HystrixFilter
struct
{
}
func
(
hf
*
HystrixFilter
)
Invoke
(
invoker
protocol
.
Invoker
,
invocation
protocol
.
Invocation
)
protocol
.
Result
{
func
(
hf
*
HystrixFilter
)
Invoke
(
invoker
protocol
.
Invoker
,
invocation
protocol
.
Invocation
)
protocol
.
Result
{
cmdName
:=
fmt
.
Sprintf
(
"%s&method=%s"
,
invoker
.
GetUrl
()
.
Key
(),
invocation
.
MethodName
())
cmdName
:=
fmt
.
Sprintf
(
"%s&method=%s"
,
invoker
.
GetUrl
()
.
Key
(),
invocation
.
MethodName
())
_
,
ifNew
,
err
:=
hystrix
.
GetCircuit
(
cmdName
)
if
err
!=
nil
{
logger
.
Errorf
(
"[Hystrix Filter]Errors occurred getting circuit for %s , will invoke without hystrix, error is: "
,
cmdName
,
err
)
_
,
ifNew
,
err
:=
hystrix
.
GetCircuit
(
cmdName
)
if
err
!=
nil
{
logger
.
Errorf
(
"[Hystrix Filter]Errors occurred getting circuit for %s , will invoke without hystrix, error is: "
,
cmdName
,
err
)
return
invoker
.
Invoke
(
invocation
)
}
// Do the configuration if the circuit breaker is created for the first time
if
ifNew
{
hystrix
.
ConfigureCommand
(
cmdName
,
getConfig
(
invoker
.
GetUrl
()
.
Service
(),
invocation
.
MethodName
()))
hystrix
.
ConfigureCommand
(
cmdName
,
getConfig
(
invoker
.
GetUrl
()
.
Service
(),
invocation
.
MethodName
()))
}
logger
.
Infof
(
"[Hystrix Filter]Using hystrix filter: %s"
,
cmdName
)
logger
.
Infof
(
"[Hystrix Filter]Using hystrix filter: %s"
,
cmdName
)
var
result
protocol
.
Result
_
=
hystrix
.
Do
(
cmdName
,
func
()
error
{
result
=
invoker
.
Invoke
(
invocation
)
...
...
@@ -75,51 +71,50 @@ func (hf *HystrixFilter) Invoke(invoker protocol.Invoker, invocation protocol.In
return
result
}
func
(
hf
*
HystrixFilter
)
OnResponse
(
result
protocol
.
Result
,
invoker
protocol
.
Invoker
,
invocation
protocol
.
Invocation
)
protocol
.
Result
{
func
(
hf
*
HystrixFilter
)
OnResponse
(
result
protocol
.
Result
,
invoker
protocol
.
Invoker
,
invocation
protocol
.
Invocation
)
protocol
.
Result
{
return
result
}
func
GetHystrixFilter
()
filter
.
Filter
{
func
GetHystrixFilter
()
filter
.
Filter
{
//When first called, load the config in
if
!
isConfigLoaded
{
if
err
:=
initHystrixConfig
();
err
!=
nil
{
logger
.
Warnf
(
"[Hystrix Filter]Config load failed, error is: %v , will use default"
,
err
)
if
!
isConfigLoaded
{
if
err
:=
initHystrixConfig
();
err
!=
nil
{
logger
.
Warnf
(
"[Hystrix Filter]Config load failed, error is: %v , will use default"
,
err
)
}
isConfigLoaded
=
true
isConfigLoaded
=
true
}
return
&
HystrixFilter
{}
}
func
getConfig
(
service
string
,
method
string
)
hystrix
.
CommandConfig
{
func
getConfig
(
service
string
,
method
string
)
hystrix
.
CommandConfig
{
//Find method level config
getConf
:=
conf
.
Configs
[
conf
.
Services
[
service
]
.
Methods
[
method
]]
if
getConf
!=
nil
{
logger
.
Infof
(
"[Hystrix Filter]Found method-level config for %s - %s"
,
service
,
method
)
getConf
:=
conf
.
Configs
[
conf
.
Services
[
service
]
.
Methods
[
method
]]
if
getConf
!=
nil
{
logger
.
Infof
(
"[Hystrix Filter]Found method-level config for %s - %s"
,
service
,
method
)
return
*
getConf
}
//Find service level config
getConf
=
conf
.
Configs
[
conf
.
Services
[
service
]
.
ServiceConfig
]
if
getConf
!=
nil
{
logger
.
Infof
(
"[Hystrix Filter]Found service-level config for %s - %s"
,
service
,
method
)
getConf
=
conf
.
Configs
[
conf
.
Services
[
service
]
.
ServiceConfig
]
if
getConf
!=
nil
{
logger
.
Infof
(
"[Hystrix Filter]Found service-level config for %s - %s"
,
service
,
method
)
return
*
getConf
}
//Find default config
getConf
=
conf
.
Configs
[
conf
.
Default
]
if
getConf
!=
nil
{
logger
.
Infof
(
"[Hystrix Filter]Found global default config for %s - %s"
,
service
,
method
)
getConf
=
conf
.
Configs
[
conf
.
Default
]
if
getConf
!=
nil
{
logger
.
Infof
(
"[Hystrix Filter]Found global default config for %s - %s"
,
service
,
method
)
return
*
getConf
}
getConf
=
&
hystrix
.
CommandConfig
{}
logger
.
Infof
(
"[Hystrix Filter]No config found for %s - %s, using default"
,
service
,
method
)
getConf
=
&
hystrix
.
CommandConfig
{}
logger
.
Infof
(
"[Hystrix Filter]No config found for %s - %s, using default"
,
service
,
method
)
return
*
getConf
}
func
initHystrixConfig
()
error
{
func
initHystrixConfig
()
error
{
filterConfig
:=
config
.
GetConsumerConfig
()
.
FilterConf
.
(
map
[
interface
{}]
interface
{})[
HYSTRIX
]
if
filterConfig
==
nil
{
if
filterConfig
==
nil
{
return
perrors
.
Errorf
(
"no config for hystrix"
)
}
hystrixConfByte
,
err
:=
yaml
.
Marshal
(
filterConfig
)
...
...
@@ -133,14 +128,12 @@ func initHystrixConfig() error{
return
nil
}
type
HystrixFilterConfig
struct
{
Configs
map
[
string
]
*
hystrix
.
CommandConfig
Default
string
Services
map
[
string
]
ServiceHystrixConfig
Configs
map
[
string
]
*
hystrix
.
CommandConfig
Default
string
Services
map
[
string
]
ServiceHystrixConfig
}
type
ServiceHystrixConfig
struct
{
ServiceConfig
string
`yaml:"service_config,omitempty"`
Methods
map
[
string
]
string
type
ServiceHystrixConfig
struct
{
ServiceConfig
string
`yaml:"service_config,omitempty"`
Methods
map
[
string
]
string
}
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment