You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by al...@apache.org on 2019/10/29 06:14:11 UTC

[dubbo-go] branch develop updated (e53f2a2 -> d39a57d)

This is an automated email from the ASF dual-hosted git repository.

alexstocks pushed a change to branch develop
in repository https://gitbox.apache.org/repos/asf/dubbo-go.git.


    from e53f2a2  Merge pull request #244 from fangyincheng/develop
     new ab228d9  Feature: ExecuteLimit Support
     new 3a93341  Update README.md and README_CN.md
     new a5f005b  Fix UT
     new 624c3d6  Fix Reveiw
     new 27cee24  Removde Count Filter from README.md
     new 32f8233  Add more comments for RejectedExecutionHandler
     new d39a57d  Merge pull request #246 from flycash/feature/ExecuteLimitFilter

The 1039 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 README.md                                          |   3 +-
 README_CN.md                                       |   3 +-
 common/constant/default.go                         |   2 +-
 common/constant/key.go                             |  43 ++++---
 common/extension/filter.go                         |  17 ++-
 common/extension/tps_limit.go                      |  18 +--
 config/method_config.go                            |  20 +--
 config/service_config.go                           |  63 +++++----
 config/testdata/provider_config.yml                |  10 ++
 .../impl/rejected_execution_handler_mock.go        |   0
 .../impl/rejected_execution_handler_only_log.go    |  10 +-
 .../rejected_execution_handler_only_log_test.go    |   0
 .../tps => common}/rejected_execution_handler.go   |  18 +--
 filter/impl/execute_limit_filter.go                | 141 +++++++++++++++++++++
 filter/impl/execute_limit_filter_test.go           |  83 ++++++++++++
 filter/impl/tps_limit_filter.go                    |   5 +-
 filter/impl/tps_limit_filter_test.go               |   6 +-
 17 files changed, 345 insertions(+), 97 deletions(-)
 rename filter/{impl/tps => common}/impl/rejected_execution_handler_mock.go (100%)
 rename filter/{impl/tps => common}/impl/rejected_execution_handler_only_log.go (82%)
 rename filter/{impl/tps => common}/impl/rejected_execution_handler_only_log_test.go (100%)
 rename filter/{impl/tps => common}/rejected_execution_handler.go (70%)
 create mode 100644 filter/impl/execute_limit_filter.go
 create mode 100644 filter/impl/execute_limit_filter_test.go