dubbo 调整线程池配置

,项目是springbot  依赖中用的是


    com.alibaba.boot
    dubbo-spring-boot-starter
    0.2.0

网上找到的很多配置都没有用,研究了一下

dubbo 默认线程池大小是200

调整线程池大小配置是

dubbo.protocol.threads = 5000

调整线程池类型配置是
 

dubbo.protocol.threadpool = cached

调整事件处理方式配置是
 

dubbo.protocol.dispatcher = message

 

你可能感兴趣的:(springboot,dubbo)