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
b485e8d8
Commit
b485e8d8
authored
5 years ago
by
YGrylls
Browse files
Options
Downloads
Patches
Plain Diff
config for hystrix filter added
parent
a828482a
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
-0
1 addition, 0 deletions
config/consumer_config.go
config/provider_config.go
+1
-0
1 addition, 0 deletions
config/provider_config.go
filter/impl/hystrix_filter.go
+44
-31
44 additions, 31 deletions
filter/impl/hystrix_filter.go
with
46 additions
and
31 deletions
config/consumer_config.go
+
1
−
0
View file @
b485e8d8
...
...
@@ -52,6 +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" `
}
func
(
*
ConsumerConfig
)
Prefix
()
string
{
...
...
This diff is collapsed.
Click to expand it.
config/provider_config.go
+
1
−
0
View file @
b485e8d8
...
...
@@ -46,6 +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" `
}
func
(
*
ProviderConfig
)
Prefix
()
string
{
...
...
This diff is collapsed.
Click to expand it.
filter/impl/hystrix_filter.go
+
44
−
31
View file @
b485e8d8
...
...
@@ -5,13 +5,11 @@ import (
"github.com/afex/hystrix-go/hystrix"
"github.com/apache/dubbo-go/common/extension"
"github.com/apache/dubbo-go/common/logger"
"github.com/apache/dubbo-go/config"
"github.com/apache/dubbo-go/filter"
"github.com/apache/dubbo-go/protocol"
perrors
"github.com/pkg/errors"
"gopkg.in/yaml.v2"
"io/ioutil"
"os"
"path"
)
...
...
@@ -21,7 +19,6 @@ const (
MAXCONCURRENTREQUESTS_KEY
=
"maxconcurrentrequests"
SLEEPWINDOW_KEY
=
"sleepwindow"
ERRORPERCENTTHRESHOLD_KEY
=
"errorpercentthreshold"
CONF_HYSTRIXFILTER_FILE_PATH
=
"CONF_HYSTRIXFILTER_FILE_PATH"
)
...
...
@@ -32,11 +29,9 @@ var (
//SleepWindow
//ErrorPercentThreshold
isConfigLoaded
=
false
conf
=
&
HystrixFilterConfig
{}
//
methodLevelConfigMap
=
make
(
map
[
string
]
hystrix
.
CommandConfig
)
serviceLevelConfigMap
=
make
(
map
[
string
]
hystrix
.
CommandConfig
)
defaultConfig
hystrix
.
CommandConfig
)
...
...
@@ -60,9 +55,7 @@ func (hf *HystrixFilter) Invoke(invoker protocol.Invoker, invocation protocol.In
// Do the configuration if the circuit breaker is created for the first time
if
ifNew
{
hystrix
.
ConfigureCommand
(
cmdName
,
hystrix
.
CommandConfig
{
})
hystrix
.
ConfigureCommand
(
cmdName
,
getConfig
(
invoker
.
GetUrl
()
.
Service
(),
invocation
.
MethodName
()))
}
logger
.
Infof
(
"[Hystrix Filter]Using hystrix filter: %s"
,
cmdName
)
...
...
@@ -91,7 +84,6 @@ func GetHystrixFilter() filter.Filter{
if
err
:=
initHystrixConfig
();
err
!=
nil
{
logger
.
Warnf
(
"[Hystrix Filter]Config load failed, error is: %v , will use default"
,
err
)
}
isConfigLoaded
=
true
}
...
...
@@ -99,12 +91,51 @@ func GetHystrixFilter() filter.Filter{
return
&
HystrixFilter
{}
}
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
)
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
)
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
)
return
*
getConf
}
getConf
=&
hystrix
.
CommandConfig
{}
logger
.
Infof
(
"[Hystrix Filter]No config found for %s - %s, using default"
,
service
,
method
)
return
*
getConf
}
func
initHystrixConfig
()
error
{
filterConfig
:=
config
.
GetConsumerConfig
()
.
FilterConf
.
(
map
[
interface
{}]
interface
{})[
HYSTRIX
]
if
filterConfig
==
nil
{
return
perrors
.
Errorf
(
"no config for hystrix"
)
}
hystrixConfByte
,
err
:=
yaml
.
Marshal
(
filterConfig
)
if
err
!=
nil
{
panic
(
err
)
}
err
=
yaml
.
Unmarshal
(
hystrixConfByte
,
conf
)
if
err
!=
nil
{
panic
(
err
)
}
return
nil
}
type
HystrixFilterConfig
struct
{
Configs
map
[
string
]
hystrix
.
CommandConfig
Configs
map
[
string
]
*
hystrix
.
CommandConfig
Default
string
Services
map
[
string
]
ServiceHystrixConfig
}
...
...
@@ -112,22 +143,4 @@ type ServiceHystrixConfig struct{
ServiceConfig
string
`yaml:"service_config,omitempty"`
Methods
map
[
string
]
string
}
func
initHystrixConfig
()
error
{
confHystrixFile
:=
os
.
Getenv
(
CONF_HYSTRIXFILTER_FILE_PATH
)
if
confHystrixFile
==
""
{
return
perrors
.
Errorf
(
"hystrix filter config file is nil"
)
}
if
path
.
Ext
(
confHystrixFile
)
!=
".yml"
{
return
perrors
.
Errorf
(
"hystrix filter config file suffix must be .yml"
)
}
confStream
,
err
:=
ioutil
.
ReadFile
(
confHystrixFile
)
if
err
!=
nil
{
return
perrors
.
Errorf
(
"ioutil.ReadFile(file:%s) = error:%v"
,
confHystrixFile
,
perrors
.
WithStack
(
err
))
}
hystrixConfig
:=&
HystrixFilterConfig
{}
if
err
=
yaml
.
Unmarshal
(
confStream
,
hystrixConfig
);
err
!=
nil
{
return
perrors
.
Errorf
(
"yaml.Unmarshal() = error:%v"
,
perrors
.
WithStack
(
err
))
}
return
nil
}
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