mirror of https://github.com/longtai-cn/hippo4j
parent
7c184f28ad
commit
e9f4d9b6bf
@ -0,0 +1,53 @@
|
||||
package cn.hippo4j.core.config;
|
||||
|
||||
/**
|
||||
* Bootstrap properties interface.
|
||||
*
|
||||
* @author chen.ma
|
||||
* @date 2022/2/25 19:01
|
||||
*/
|
||||
public interface BootstrapPropertiesInterface {
|
||||
|
||||
/**
|
||||
* Get enable.
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
Boolean getEnable();
|
||||
|
||||
/**
|
||||
* Get username.
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
String getUsername();
|
||||
|
||||
/**
|
||||
* Get password.
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
String getPassword();
|
||||
|
||||
/**
|
||||
* Get namespace.
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
String getNamespace();
|
||||
|
||||
/**
|
||||
* Get item id.
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
String getItemId();
|
||||
|
||||
/**
|
||||
* Get server addr.
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
String getServerAddr();
|
||||
|
||||
}
|
@ -1,4 +1,4 @@
|
||||
package cn.hippo4j.starter.core;
|
||||
package cn.hippo4j.core.config;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
@ -1,4 +1,4 @@
|
||||
package cn.hippo4j.starter.config;
|
||||
package cn.hippo4j.core.config;
|
||||
|
||||
import cn.hippo4j.core.toolkit.inet.InetUtils;
|
||||
import cn.hippo4j.core.toolkit.inet.InetUtilsProperties;
|
@ -1,4 +1,4 @@
|
||||
package cn.hippo4j.starter.enable;
|
||||
package cn.hippo4j.core.enable;
|
||||
|
||||
import org.springframework.context.annotation.Import;
|
||||
|
@ -1,4 +1,4 @@
|
||||
package cn.hippo4j.starter.enable;
|
||||
package cn.hippo4j.core.enable;
|
||||
|
||||
import org.springframework.context.annotation.Bean;
|
||||
import org.springframework.context.annotation.Configuration;
|
@ -1,4 +1,4 @@
|
||||
package cn.hippo4j.starter.core;
|
||||
package cn.hippo4j.core.executor;
|
||||
|
||||
import java.lang.annotation.ElementType;
|
||||
import java.lang.annotation.Retention;
|
@ -1,4 +1,4 @@
|
||||
package cn.hippo4j.starter.toolkit;
|
||||
package cn.hippo4j.core.toolkit.inet;
|
||||
|
||||
import cn.hippo4j.common.config.ApplicationContextHolder;
|
||||
import org.springframework.beans.factory.ListableBeanFactory;
|
@ -1,21 +0,0 @@
|
||||
package cn.hippo4j.example;
|
||||
|
||||
import cn.hippo4j.starter.enable.EnableDynamicThreadPool;
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
|
||||
/**
|
||||
* Example application.
|
||||
*
|
||||
* @author chen.ma
|
||||
* @date 2022/01/23 21:06
|
||||
*/
|
||||
@SpringBootApplication
|
||||
@EnableDynamicThreadPool
|
||||
public class ExampleApplication {
|
||||
|
||||
public static void main(String[] args) {
|
||||
SpringApplication.run(ExampleApplication.class, args);
|
||||
}
|
||||
|
||||
}
|
@ -1 +0,0 @@
|
||||
cn.hippo4j.example.handler.ErrorLogRejectedExecutionHandler
|
@ -1,25 +0,0 @@
|
||||
package cn.hippo4j.example;
|
||||
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
import org.springframework.test.context.junit4.SpringRunner;
|
||||
|
||||
/**
|
||||
* Example application.
|
||||
*
|
||||
* @author chen.ma
|
||||
* @date 2022/1/25 21:34
|
||||
*/
|
||||
@Slf4j
|
||||
@RunWith(SpringRunner.class)
|
||||
@SpringBootTest(classes = ExampleApplication.class)
|
||||
public class ExampleApplication {
|
||||
|
||||
@Test
|
||||
public void test() {
|
||||
log.info("test success.");
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,47 @@
|
||||
package cn.hippo4j.core.starter.config;
|
||||
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
import org.springframework.boot.context.properties.ConfigurationProperties;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* Bootstrap properties.
|
||||
*
|
||||
* @author chen.ma
|
||||
* @date 2022/2/25 00:35
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
@ConfigurationProperties(prefix = BootstrapCoreProperties.PREFIX)
|
||||
public class BootstrapCoreProperties {
|
||||
|
||||
public static final String PREFIX = "spring.dynamic.thread-pool";
|
||||
|
||||
/**
|
||||
* Enabled banner
|
||||
*/
|
||||
private Boolean enableBanner;
|
||||
|
||||
/***
|
||||
* Enabled collect
|
||||
*/
|
||||
private Boolean enabledCollect;
|
||||
|
||||
/**
|
||||
* Check state interval
|
||||
*/
|
||||
private String checkStateInterval;
|
||||
|
||||
/**
|
||||
* Notify platforms.
|
||||
*/
|
||||
private List<NotifyPlatformProperties> notifyPlatforms;
|
||||
|
||||
/**
|
||||
* Executors
|
||||
*/
|
||||
private List<ExecutorProperties> executors;
|
||||
|
||||
}
|
@ -0,0 +1,87 @@
|
||||
package cn.hippo4j.core.starter.config;
|
||||
|
||||
import cn.hippo4j.common.config.ApplicationContextHolder;
|
||||
import cn.hippo4j.common.notify.*;
|
||||
import cn.hippo4j.common.notify.platform.DingSendMessageHandler;
|
||||
import cn.hippo4j.common.notify.platform.LarkSendMessageHandler;
|
||||
import cn.hippo4j.common.notify.platform.WeChatSendMessageHandler;
|
||||
import cn.hippo4j.core.config.UtilAutoConfiguration;
|
||||
import cn.hippo4j.core.executor.ThreadPoolNotifyAlarmHandler;
|
||||
import cn.hippo4j.core.refresh.ThreadPoolDynamicRefresh;
|
||||
import cn.hippo4j.core.starter.notify.CoreNotifyConfigBuilder;
|
||||
import cn.hippo4j.core.starter.support.DynamicThreadPoolPostProcessor;
|
||||
import lombok.AllArgsConstructor;
|
||||
import org.springframework.boot.autoconfigure.ImportAutoConfiguration;
|
||||
import org.springframework.boot.context.properties.EnableConfigurationProperties;
|
||||
import org.springframework.context.annotation.Bean;
|
||||
import org.springframework.context.annotation.Configuration;
|
||||
import org.springframework.core.Ordered;
|
||||
import org.springframework.core.annotation.Order;
|
||||
|
||||
/**
|
||||
* Dynamic thread pool auto configuration.
|
||||
*
|
||||
* @author chen.ma
|
||||
* @date 2022/2/25 00:21
|
||||
*/
|
||||
@Configuration
|
||||
@AllArgsConstructor
|
||||
@EnableConfigurationProperties(BootstrapCoreProperties.class)
|
||||
@ImportAutoConfiguration({UtilAutoConfiguration.class})
|
||||
public class DynamicThreadPoolCoreAutoConfiguration {
|
||||
|
||||
private final BootstrapCoreProperties bootstrapCoreProperties;
|
||||
|
||||
@Bean
|
||||
@Order(Ordered.HIGHEST_PRECEDENCE)
|
||||
public ApplicationContextHolder hippo4JApplicationContextHolder() {
|
||||
return new ApplicationContextHolder();
|
||||
}
|
||||
|
||||
@Bean
|
||||
public AlarmControlHandler alarmControlHandler() {
|
||||
return new AlarmControlHandler();
|
||||
}
|
||||
|
||||
@Bean
|
||||
public NotifyConfigBuilder notifyConfigBuilder(AlarmControlHandler alarmControlHandler) {
|
||||
return new CoreNotifyConfigBuilder(alarmControlHandler, bootstrapCoreProperties);
|
||||
}
|
||||
|
||||
@Bean
|
||||
public HippoSendMessageService hippoSendMessageService(NotifyConfigBuilder notifyConfigBuilder,
|
||||
AlarmControlHandler alarmControlHandler) {
|
||||
return new BaseSendMessageServiceImpl(notifyConfigBuilder, alarmControlHandler);
|
||||
}
|
||||
|
||||
@Bean
|
||||
public ThreadPoolNotifyAlarmHandler threadPoolNotifyAlarmHandler(HippoSendMessageService hippoSendMessageService) {
|
||||
return new ThreadPoolNotifyAlarmHandler(hippoSendMessageService);
|
||||
}
|
||||
|
||||
@Bean
|
||||
public SendMessageHandler dingSendMessageHandler() {
|
||||
return new DingSendMessageHandler();
|
||||
}
|
||||
|
||||
@Bean
|
||||
public SendMessageHandler larkSendMessageHandler() {
|
||||
return new LarkSendMessageHandler();
|
||||
}
|
||||
|
||||
@Bean
|
||||
public SendMessageHandler weChatSendMessageHandler() {
|
||||
return new WeChatSendMessageHandler();
|
||||
}
|
||||
|
||||
@Bean
|
||||
public ThreadPoolDynamicRefresh threadPoolDynamicRefresh(ThreadPoolNotifyAlarmHandler threadPoolNotifyAlarmHandler) {
|
||||
return new ThreadPoolDynamicRefresh(threadPoolNotifyAlarmHandler);
|
||||
}
|
||||
|
||||
@Bean
|
||||
public DynamicThreadPoolPostProcessor dynamicThreadPoolPostProcessor(ApplicationContextHolder hippo4JApplicationContextHolder) {
|
||||
return new DynamicThreadPoolPostProcessor(bootstrapCoreProperties);
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,65 @@
|
||||
package cn.hippo4j.core.starter.config;
|
||||
|
||||
import cn.hippo4j.common.notify.ThreadPoolNotifyAlarm;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* Executor properties.
|
||||
*
|
||||
* @author chen.ma
|
||||
* @date 2022/2/25 00:40
|
||||
*/
|
||||
@Data
|
||||
public class ExecutorProperties {
|
||||
|
||||
/**
|
||||
* threadPoolId
|
||||
*/
|
||||
private String threadPoolId;
|
||||
|
||||
/**
|
||||
* corePoolSize
|
||||
*/
|
||||
private Integer corePoolSize;
|
||||
|
||||
/**
|
||||
* maximumPoolSize
|
||||
*/
|
||||
private Integer maximumPoolSize;
|
||||
|
||||
/**
|
||||
* queueCapacity
|
||||
*/
|
||||
private Integer queueCapacity;
|
||||
|
||||
/**
|
||||
* blockingQueue
|
||||
*/
|
||||
private String blockingQueue;
|
||||
|
||||
/**
|
||||
* rejectedHandler
|
||||
*/
|
||||
private String rejectedHandler;
|
||||
|
||||
/**
|
||||
* keepAliveTime
|
||||
*/
|
||||
private Long keepAliveTime;
|
||||
|
||||
/**
|
||||
* allowCoreThreadTimeOut
|
||||
*/
|
||||
private Boolean allowCoreThreadTimeOut;
|
||||
|
||||
/**
|
||||
* threadNamePrefix
|
||||
*/
|
||||
private String threadNamePrefix;
|
||||
|
||||
/**
|
||||
* Notify
|
||||
*/
|
||||
private ThreadPoolNotifyAlarm notify;
|
||||
|
||||
}
|
@ -0,0 +1,29 @@
|
||||
package cn.hippo4j.core.starter.config;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* Notify platform properties.
|
||||
*
|
||||
* @author chen.ma
|
||||
* @date 2022/2/25 19:29
|
||||
*/
|
||||
@Data
|
||||
public class NotifyPlatformProperties {
|
||||
|
||||
/**
|
||||
* platform
|
||||
*/
|
||||
private String platform;
|
||||
|
||||
/**
|
||||
* secretKey
|
||||
*/
|
||||
private String secretKey;
|
||||
|
||||
/**
|
||||
* Default configuration
|
||||
*/
|
||||
private String receives;
|
||||
|
||||
}
|
@ -0,0 +1,89 @@
|
||||
package cn.hippo4j.core.starter.notify;
|
||||
|
||||
import cn.hippo4j.common.notify.AlarmControlHandler;
|
||||
import cn.hippo4j.common.notify.NotifyConfigBuilder;
|
||||
import cn.hippo4j.common.notify.NotifyConfigDTO;
|
||||
import cn.hippo4j.core.starter.config.BootstrapCoreProperties;
|
||||
import cn.hippo4j.core.starter.config.ExecutorProperties;
|
||||
import cn.hippo4j.core.starter.config.NotifyPlatformProperties;
|
||||
import cn.hutool.core.util.StrUtil;
|
||||
import com.google.common.collect.Lists;
|
||||
import com.google.common.collect.Maps;
|
||||
import lombok.AllArgsConstructor;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* Core notify config builder.
|
||||
*
|
||||
* @author chen.ma
|
||||
* @date 2022/2/25 00:24
|
||||
*/
|
||||
@AllArgsConstructor
|
||||
public class CoreNotifyConfigBuilder implements NotifyConfigBuilder {
|
||||
|
||||
private final AlarmControlHandler alarmControlHandler;
|
||||
|
||||
private final BootstrapCoreProperties bootstrapCoreProperties;
|
||||
|
||||
@Override
|
||||
public Map<String, List<NotifyConfigDTO>> buildNotify() {
|
||||
Map<String, List<NotifyConfigDTO>> resultMap = Maps.newHashMap();
|
||||
|
||||
List<ExecutorProperties> executors = bootstrapCoreProperties.getExecutors();
|
||||
for (ExecutorProperties executor : executors) {
|
||||
String threadPoolId = executor.getThreadPoolId();
|
||||
String alarmBuildKey = threadPoolId + "+ALARM";
|
||||
List<NotifyConfigDTO> alarmNotifyConfigs = Lists.newArrayList();
|
||||
|
||||
List<NotifyPlatformProperties> notifyPlatforms = bootstrapCoreProperties.getNotifyPlatforms();
|
||||
for (NotifyPlatformProperties platformProperties : notifyPlatforms) {
|
||||
NotifyConfigDTO notifyConfig = new NotifyConfigDTO();
|
||||
notifyConfig.setPlatform(platformProperties.getPlatform());
|
||||
notifyConfig.setThreadPoolId(threadPoolId);
|
||||
notifyConfig.setType("ALARM");
|
||||
notifyConfig.setSecretKey(platformProperties.getSecretKey());
|
||||
notifyConfig.setInterval(executor.getNotify().getInterval());
|
||||
Map<String, String> receives = executor.getNotify().getReceives();
|
||||
String receive = receives.get(platformProperties.getPlatform());
|
||||
if (StrUtil.isBlank(receive)) {
|
||||
receive = platformProperties.getReceives();
|
||||
}
|
||||
notifyConfig.setReceives(receive);
|
||||
alarmNotifyConfigs.add(notifyConfig);
|
||||
}
|
||||
|
||||
resultMap.put(alarmBuildKey, alarmNotifyConfigs);
|
||||
|
||||
String changeBuildKey = threadPoolId + "+CONFIG";
|
||||
List<NotifyConfigDTO> changeNotifyConfigs = Lists.newArrayList();
|
||||
|
||||
for (NotifyPlatformProperties platformProperties : notifyPlatforms) {
|
||||
NotifyConfigDTO notifyConfig = new NotifyConfigDTO();
|
||||
notifyConfig.setPlatform(platformProperties.getPlatform());
|
||||
notifyConfig.setThreadPoolId(threadPoolId);
|
||||
notifyConfig.setType("CONFIG");
|
||||
notifyConfig.setSecretKey(platformProperties.getSecretKey());
|
||||
|
||||
Map<String, String> receives = executor.getNotify().getReceives();
|
||||
String receive = receives.get(platformProperties.getPlatform());
|
||||
if (StrUtil.isBlank(receive)) {
|
||||
receive = platformProperties.getReceives();
|
||||
}
|
||||
notifyConfig.setReceives(receive);
|
||||
changeNotifyConfigs.add(notifyConfig);
|
||||
}
|
||||
|
||||
resultMap.put(changeBuildKey, changeNotifyConfigs);
|
||||
}
|
||||
|
||||
resultMap.forEach((key, val) ->
|
||||
val.stream().filter(each -> StrUtil.equals("ALARM", each.getType()))
|
||||
.forEach(each -> alarmControlHandler.initCacheAndLock(each.getThreadPoolId(), each.getPlatform(), each.getInterval()))
|
||||
);
|
||||
|
||||
return resultMap;
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,147 @@
|
||||
package cn.hippo4j.core.starter.support;
|
||||
|
||||
import cn.hippo4j.common.config.ApplicationContextHolder;
|
||||
import cn.hippo4j.common.notify.ThreadPoolNotifyAlarm;
|
||||
import cn.hippo4j.core.executor.DynamicThreadPool;
|
||||
import cn.hippo4j.core.executor.DynamicThreadPoolExecutor;
|
||||
import cn.hippo4j.core.executor.DynamicThreadPoolWrapper;
|
||||
import cn.hippo4j.core.executor.manage.GlobalNotifyAlarmManage;
|
||||
import cn.hippo4j.core.executor.manage.GlobalThreadPoolManage;
|
||||
import cn.hippo4j.core.executor.support.*;
|
||||
import cn.hippo4j.core.starter.config.BootstrapCoreProperties;
|
||||
import cn.hippo4j.core.starter.config.ExecutorProperties;
|
||||
import cn.hippo4j.core.toolkit.inet.DynamicThreadPoolAnnotationUtil;
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.springframework.beans.BeansException;
|
||||
import org.springframework.beans.factory.config.BeanPostProcessor;
|
||||
import org.springframework.core.task.TaskDecorator;
|
||||
|
||||
import java.util.Objects;
|
||||
import java.util.concurrent.BlockingQueue;
|
||||
import java.util.concurrent.ThreadPoolExecutor;
|
||||
import java.util.concurrent.TimeUnit;
|
||||
|
||||
/**
|
||||
* Dynamic threadPool post processor.
|
||||
*
|
||||
* @author chen.ma
|
||||
* @date 2021/8/2 20:40
|
||||
*/
|
||||
@Slf4j
|
||||
@AllArgsConstructor
|
||||
public final class DynamicThreadPoolPostProcessor implements BeanPostProcessor {
|
||||
|
||||
private final BootstrapCoreProperties bootstrapCoreProperties;
|
||||
|
||||
@Override
|
||||
public Object postProcessBeforeInitialization(Object bean, String beanName) {
|
||||
return bean;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Object postProcessAfterInitialization(Object bean, String beanName) throws BeansException {
|
||||
if (bean instanceof DynamicThreadPoolExecutor) {
|
||||
DynamicThreadPool dynamicThreadPool;
|
||||
try {
|
||||
dynamicThreadPool = ApplicationContextHolder.findAnnotationOnBean(beanName, DynamicThreadPool.class);
|
||||
if (Objects.isNull(dynamicThreadPool)) {
|
||||
// 适配低版本 SpringBoot
|
||||
dynamicThreadPool = DynamicThreadPoolAnnotationUtil.findAnnotationOnBean(beanName, DynamicThreadPool.class);
|
||||
if (Objects.isNull(dynamicThreadPool)) {
|
||||
return bean;
|
||||
}
|
||||
}
|
||||
} catch (Exception ex) {
|
||||
log.error("Failed to create dynamic thread pool in annotation mode.", ex);
|
||||
return bean;
|
||||
}
|
||||
|
||||
DynamicThreadPoolExecutor dynamicExecutor = (DynamicThreadPoolExecutor) bean;
|
||||
DynamicThreadPoolWrapper wrap = new DynamicThreadPoolWrapper(dynamicExecutor.getThreadPoolId(), dynamicExecutor);
|
||||
ThreadPoolExecutor remoteExecutor = fillPoolAndRegister(wrap);
|
||||
return remoteExecutor;
|
||||
}
|
||||
|
||||
if (bean instanceof DynamicThreadPoolWrapper) {
|
||||
DynamicThreadPoolWrapper wrap = (DynamicThreadPoolWrapper) bean;
|
||||
registerAndSubscribe(wrap);
|
||||
}
|
||||
|
||||
return bean;
|
||||
}
|
||||
|
||||
/**
|
||||
* Register and subscribe.
|
||||
*
|
||||
* @param dynamicThreadPoolWrap
|
||||
*/
|
||||
protected void registerAndSubscribe(DynamicThreadPoolWrapper dynamicThreadPoolWrap) {
|
||||
fillPoolAndRegister(dynamicThreadPoolWrap);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fill the thread pool and register.
|
||||
*
|
||||
* @param dynamicThreadPoolWrap
|
||||
*/
|
||||
protected ThreadPoolExecutor fillPoolAndRegister(DynamicThreadPoolWrapper dynamicThreadPoolWrap) {
|
||||
String threadPoolId = dynamicThreadPoolWrap.getTpId();
|
||||
ThreadPoolExecutor newDynamicPoolExecutor = dynamicThreadPoolWrap.getExecutor();
|
||||
|
||||
ExecutorProperties executorProperties = bootstrapCoreProperties.getExecutors()
|
||||
.stream()
|
||||
.filter(each -> Objects.equals(threadPoolId, each.getThreadPoolId()))
|
||||
.findFirst()
|
||||
.orElse(null);
|
||||
if (executorProperties != null) {
|
||||
try {
|
||||
// 使用相关参数创建线程池
|
||||
BlockingQueue workQueue = QueueTypeEnum.createBlockingQueue(executorProperties.getBlockingQueue(), executorProperties.getQueueCapacity());
|
||||
newDynamicPoolExecutor = ThreadPoolBuilder.builder()
|
||||
.dynamicPool()
|
||||
.workQueue(workQueue)
|
||||
.threadFactory(threadPoolId)
|
||||
.poolThreadSize(executorProperties.getCorePoolSize(), executorProperties.getMaximumPoolSize())
|
||||
.keepAliveTime(executorProperties.getKeepAliveTime(), TimeUnit.SECONDS)
|
||||
.rejected(RejectedTypeEnum.createPolicy(executorProperties.getRejectedHandler()))
|
||||
.allowCoreThreadTimeOut(executorProperties.getAllowCoreThreadTimeOut())
|
||||
.build();
|
||||
|
||||
// 设置动态线程池增强参数
|
||||
ThreadPoolNotifyAlarm notify = executorProperties.getNotify();
|
||||
if (dynamicThreadPoolWrap.getExecutor() instanceof AbstractDynamicExecutorSupport) {
|
||||
ThreadPoolNotifyAlarm threadPoolNotifyAlarm = new ThreadPoolNotifyAlarm(
|
||||
notify.getIsAlarm(),
|
||||
notify.getCapacityAlarm(),
|
||||
notify.getActiveAlarm()
|
||||
);
|
||||
|
||||
threadPoolNotifyAlarm.setInterval(notify.getInterval());
|
||||
threadPoolNotifyAlarm.setReceives(notify.getReceives());
|
||||
GlobalNotifyAlarmManage.put(threadPoolId, threadPoolNotifyAlarm);
|
||||
|
||||
TaskDecorator taskDecorator = ((DynamicThreadPoolExecutor) dynamicThreadPoolWrap.getExecutor()).getTaskDecorator();
|
||||
((DynamicThreadPoolExecutor) newDynamicPoolExecutor).setTaskDecorator(taskDecorator);
|
||||
|
||||
long awaitTerminationMillis = ((DynamicThreadPoolExecutor) dynamicThreadPoolWrap.getExecutor()).awaitTerminationMillis;
|
||||
boolean waitForTasksToCompleteOnShutdown = ((DynamicThreadPoolExecutor) dynamicThreadPoolWrap.getExecutor()).waitForTasksToCompleteOnShutdown;
|
||||
((DynamicThreadPoolExecutor) newDynamicPoolExecutor).setSupportParam(awaitTerminationMillis, waitForTasksToCompleteOnShutdown);
|
||||
}
|
||||
|
||||
dynamicThreadPoolWrap.setExecutor(newDynamicPoolExecutor);
|
||||
} catch (Exception ex) {
|
||||
log.error("Failed to initialize thread pool configuration. error message :: {}", ex.getMessage());
|
||||
} finally {
|
||||
if (Objects.isNull(dynamicThreadPoolWrap.getExecutor())) {
|
||||
dynamicThreadPoolWrap.setExecutor(CommonDynamicThreadPool.getInstance(threadPoolId));
|
||||
}
|
||||
}
|
||||
|
||||
GlobalThreadPoolManage.registerPool(dynamicThreadPoolWrap.getTpId(), dynamicThreadPoolWrap);
|
||||
}
|
||||
|
||||
return newDynamicPoolExecutor;
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,202 @@
|
||||
|
||||
Apache License
|
||||
Version 2.0, January 2004
|
||||
https://www.apache.org/licenses/
|
||||
|
||||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||
|
||||
1. Definitions.
|
||||
|
||||
"License" shall mean the terms and conditions for use, reproduction,
|
||||
and distribution as defined by Sections 1 through 9 of this document.
|
||||
|
||||
"Licensor" shall mean the copyright owner or entity authorized by
|
||||
the copyright owner that is granting the License.
|
||||
|
||||
"Legal Entity" shall mean the union of the acting entity and all
|
||||
other entities that control, are controlled by, or are under common
|
||||
control with that entity. For the purposes of this definition,
|
||||
"control" means (i) the power, direct or indirect, to cause the
|
||||
direction or management of such entity, whether by contract or
|
||||
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||
|
||||
"You" (or "Your") shall mean an individual or Legal Entity
|
||||
exercising permissions granted by this License.
|
||||
|
||||
"Source" form shall mean the preferred form for making modifications,
|
||||
including but not limited to software source code, documentation
|
||||
source, and configuration files.
|
||||
|
||||
"Object" form shall mean any form resulting from mechanical
|
||||
transformation or translation of a Source form, including but
|
||||
not limited to compiled object code, generated documentation,
|
||||
and conversions to other media types.
|
||||
|
||||
"Work" shall mean the work of authorship, whether in Source or
|
||||
Object form, made available under the License, as indicated by a
|
||||
copyright notice that is included in or attached to the work
|
||||
(an example is provided in the Appendix below).
|
||||
|
||||
"Derivative Works" shall mean any work, whether in Source or Object
|
||||
form, that is based on (or derived from) the Work and for which the
|
||||
editorial revisions, annotations, elaborations, or other modifications
|
||||
represent, as a whole, an original work of authorship. For the purposes
|
||||
of this License, Derivative Works shall not include works that remain
|
||||
separable from, or merely link (or bind by name) to the interfaces of,
|
||||
the Work and Derivative Works thereof.
|
||||
|
||||
"Contribution" shall mean any work of authorship, including
|
||||
the original version of the Work and any modifications or additions
|
||||
to that Work or Derivative Works thereof, that is intentionally
|
||||
submitted to Licensor for inclusion in the Work by the copyright owner
|
||||
or by an individual or Legal Entity authorized to submit on behalf of
|
||||
the copyright owner. For the purposes of this definition, "submitted"
|
||||
means any form of electronic, verbal, or written communication sent
|
||||
to the Licensor or its representatives, including but not limited to
|
||||
communication on electronic mailing lists, source code control systems,
|
||||
and issue tracking systems that are managed by, or on behalf of, the
|
||||
Licensor for the purpose of discussing and improving the Work, but
|
||||
excluding communication that is conspicuously marked or otherwise
|
||||
designated in writing by the copyright owner as "Not a Contribution."
|
||||
|
||||
"Contributor" shall mean Licensor and any individual or Legal Entity
|
||||
on behalf of whom a Contribution has been received by Licensor and
|
||||
subsequently incorporated within the Work.
|
||||
|
||||
2. Grant of Copyright License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
copyright license to reproduce, prepare Derivative Works of,
|
||||
publicly display, publicly perform, sublicense, and distribute the
|
||||
Work and such Derivative Works in Source or Object form.
|
||||
|
||||
3. Grant of Patent License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
(except as stated in this section) patent license to make, have made,
|
||||
use, offer to sell, sell, import, and otherwise transfer the Work,
|
||||
where such license applies only to those patent claims licensable
|
||||
by such Contributor that are necessarily infringed by their
|
||||
Contribution(s) alone or by combination of their Contribution(s)
|
||||
with the Work to which such Contribution(s) was submitted. If You
|
||||
institute patent litigation against any entity (including a
|
||||
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
||||
or a Contribution incorporated within the Work constitutes direct
|
||||
or contributory patent infringement, then any patent licenses
|
||||
granted to You under this License for that Work shall terminate
|
||||
as of the date such litigation is filed.
|
||||
|
||||
4. Redistribution. You may reproduce and distribute copies of the
|
||||
Work or Derivative Works thereof in any medium, with or without
|
||||
modifications, and in Source or Object form, provided that You
|
||||
meet the following conditions:
|
||||
|
||||
(a) You must give any other recipients of the Work or
|
||||
Derivative Works a copy of this License; and
|
||||
|
||||
(b) You must cause any modified files to carry prominent notices
|
||||
stating that You changed the files; and
|
||||
|
||||
(c) You must retain, in the Source form of any Derivative Works
|
||||
that You distribute, all copyright, patent, trademark, and
|
||||
attribution notices from the Source form of the Work,
|
||||
excluding those notices that do not pertain to any part of
|
||||
the Derivative Works; and
|
||||
|
||||
(d) If the Work includes a "NOTICE" text file as part of its
|
||||
distribution, then any Derivative Works that You distribute must
|
||||
include a readable copy of the attribution notices contained
|
||||
within such NOTICE file, excluding those notices that do not
|
||||
pertain to any part of the Derivative Works, in at least one
|
||||
of the following places: within a NOTICE text file distributed
|
||||
as part of the Derivative Works; within the Source form or
|
||||
documentation, if provided along with the Derivative Works; or,
|
||||
within a display generated by the Derivative Works, if and
|
||||
wherever such third-party notices normally appear. The contents
|
||||
of the NOTICE file are for informational purposes only and
|
||||
do not modify the License. You may add Your own attribution
|
||||
notices within Derivative Works that You distribute, alongside
|
||||
or as an addendum to the NOTICE text from the Work, provided
|
||||
that such additional attribution notices cannot be construed
|
||||
as modifying the License.
|
||||
|
||||
You may add Your own copyright statement to Your modifications and
|
||||
may provide additional or different license terms and conditions
|
||||
for use, reproduction, or distribution of Your modifications, or
|
||||
for any such Derivative Works as a whole, provided Your use,
|
||||
reproduction, and distribution of the Work otherwise complies with
|
||||
the conditions stated in this License.
|
||||
|
||||
5. Submission of Contributions. Unless You explicitly state otherwise,
|
||||
any Contribution intentionally submitted for inclusion in the Work
|
||||
by You to the Licensor shall be under the terms and conditions of
|
||||
this License, without any additional terms or conditions.
|
||||
Notwithstanding the above, nothing herein shall supersede or modify
|
||||
the terms of any separate license agreement you may have executed
|
||||
with Licensor regarding such Contributions.
|
||||
|
||||
6. Trademarks. This License does not grant permission to use the trade
|
||||
names, trademarks, service marks, or product names of the Licensor,
|
||||
except as required for reasonable and customary use in describing the
|
||||
origin of the Work and reproducing the content of the NOTICE file.
|
||||
|
||||
7. Disclaimer of Warranty. Unless required by applicable law or
|
||||
agreed to in writing, Licensor provides the Work (and each
|
||||
Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||
implied, including, without limitation, any warranties or conditions
|
||||
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
||||
PARTICULAR PURPOSE. You are solely responsible for determining the
|
||||
appropriateness of using or redistributing the Work and assume any
|
||||
risks associated with Your exercise of permissions under this License.
|
||||
|
||||
8. Limitation of Liability. In no event and under no legal theory,
|
||||
whether in tort (including negligence), contract, or otherwise,
|
||||
unless required by applicable law (such as deliberate and grossly
|
||||
negligent acts) or agreed to in writing, shall any Contributor be
|
||||
liable to You for damages, including any direct, indirect, special,
|
||||
incidental, or consequential damages of any character arising as a
|
||||
result of this License or out of the use or inability to use the
|
||||
Work (including but not limited to damages for loss of goodwill,
|
||||
work stoppage, computer failure or malfunction, or any and all
|
||||
other commercial damages or losses), even if such Contributor
|
||||
has been advised of the possibility of such damages.
|
||||
|
||||
9. Accepting Warranty or Additional Liability. While redistributing
|
||||
the Work or Derivative Works thereof, You may choose to offer,
|
||||
and charge a fee for, acceptance of support, warranty, indemnity,
|
||||
or other liability obligations and/or rights consistent with this
|
||||
License. However, in accepting such obligations, You may act only
|
||||
on Your own behalf and on Your sole responsibility, not on behalf
|
||||
of any other Contributor, and only if You agree to indemnify,
|
||||
defend, and hold each Contributor harmless for any liability
|
||||
incurred by, or claims asserted against, such Contributor by reason
|
||||
of your accepting any such warranty or additional liability.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
APPENDIX: How to apply the Apache License to your work.
|
||||
|
||||
To apply the Apache License to your work, attach the following
|
||||
boilerplate notice, with the fields enclosed by brackets "{}"
|
||||
replaced with your own identifying information. (Don't include
|
||||
the brackets!) The text should be enclosed in the appropriate
|
||||
comment syntax for the file format. We also recommend that a
|
||||
file or class name and description of purpose be included on the
|
||||
same "printed page" as the copyright notice for easier
|
||||
identification within third-party archives.
|
||||
|
||||
Copyright {yyyy} {name of copyright owner}
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
https://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
@ -0,0 +1 @@
|
||||
org.springframework.boot.autoconfigure.EnableAutoConfiguration=cn.hippo4j.core.starter.config.DynamicThreadPoolCoreAutoConfiguration
|
Loading…
Reference in new issue