This is an automated email from the ASF dual-hosted git repository.
ningjiang pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/servicecomb-java-chassis.git.
from a8345e9 SCB-1218 Try to fix the CI build error
new 117e633 [SCB-1237] rollback compatible thread pool configuration logic
new 9211e7b [SCB-1237] enhance jdk thread pool
new e538f04 [SCB-1237] switch thread pool to new mechanism
new 00de293 [SCB-1237] add thread pool reject metrics
The 2194 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:
.../servicecomb/core/executor/GroupExecutor.java | 42 +++---
.../core/executor/LinkedBlockingQueueEx.java | 96 ++++++++++++++
.../core/executor/ThreadPoolExecutorEx.java | 69 ++++++++++
.../core/executor/TestGroupExecutor.java | 94 +++++---------
.../core/executor/TestThreadPoolExecutorEx.java | 143 +++++++++++++++++++++
.../ThreadPoolMonitorPublishModelFactory.java | 36 ++----
.../metrics/core/ThreadPoolMetersInitializer.java | 15 +++
.../metrics/core/publish/DefaultLogPublisher.java | 5 +-
.../core/publish/model/ThreadPoolPublishModel.java | 10 ++
.../core/publish/TestDefaultLogPublisher.java | 4 +-
.../publish/TestThreadPoolPublishModelFactory.java | 2 +-
11 files changed, 399 insertions(+), 117 deletions(-)
create mode 100644
core/src/main/java/org/apache/servicecomb/core/executor/LinkedBlockingQueueEx.java
create mode 100644
core/src/main/java/org/apache/servicecomb/core/executor/ThreadPoolExecutorEx.java
create mode 100644
core/src/test/java/org/apache/servicecomb/core/executor/TestThreadPoolExecutorEx.java