application-local.yml 1.03 KB
Newer Older
Administrator committed
1 2 3 4 5
spring:
  http:
    multipart:
      enabled: true
      max-file-size: 300MB
6 7 8
      max-request-size: 300MB

ribbon:
9 10 11
  ReadTimeout: 50000
  ConnectTimeout: 50000
  MaxAutoRetries: 1
12 13 14
  MaxAutoRetriesNextServer: 1
  eureka:
    enabled: false
15 16 17 18
  Httpclient:
    enabled: false
  OkHttp:
    enabled: true
19 20 21 22 23
  eager-load:
    enabled: true
    clients: techhero-framework-config, techhero-framework-eureka, techhero-framework-auth,techhero-platform-exam,techhero-platform-system

hystrix:
24 25 26 27 28 29 30 31
  command:
    default:
      execution:
        timeout:
          enabled: true
        isolation:
          thread:
            timeoutInMilliseconds: 60000
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
  threadpool:
    default:
      coreSize: 10
      maxQueueSize: 1000
      queueSizeRejectionThreshold: 800
    circuitBreaker:
      requestVolumeThreshold: 100 #熔断失败个数 超过既发生短路 默认20个
    fallback:
      isolation:
        semaphore:
          maxConcurrentRequests: 50 #回退线程数量
tomcat:
  max-connections: 500
  max-threads: 30
  min-spare-threads: 3
  accept-count: 10