Advertisement
fedorm

fedorm

Dec 27th, 2018
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.28 KB | None | 0 0
  1. ribbon:
  2.   MaxHttpConnectionsPerHost: 700
  3.   ReadTimeout: 20000
  4.   ConnectTimeout: 20000
  5.   ServerListRefreshInterval: 1000
  6.   MaxAutoRetries: 2
  7.   MaxAutoRetriesNextServer: 4
  8.   OkToRetryOnAllOperations: true
  9.   okToRetryOnAllErrors: true
  10.   eager-load:
  11.     clients: true
  12. hystrix:
  13.   command.default.execution.isolation.strategy: SEMAPHORE
  14.   command.default.circuitBreaker.sleepWindowInMilliseconds: 300
  15.   command.default.execution.isolation.thread.timeoutInMilliseconds: 180000
  16.   command.default.execution.isolation.semaphore.maxConcurrentRequests: 100
  17.   command.default.circuitBreaker.enabled: false
  18.   command.default.execution.timeout.enabled: false
  19. zuul:
  20.   ribbonIsolationStrategy: THREAD
  21.   semaphore.max-semaphores: 2000
  22.   host:
  23.     max-total-connections: 2000
  24.     max-per-route-connections: 1000
  25.     socket-timeout-millis: 2000000
  26.     connect-timeout-millis: 10000
  27.   retryable: true
  28.   ribbon:
  29.     eager-load:
  30.       clients: true
  31.   routes:
  32.     coupon-processing-crud-service:
  33.       path: /processing/coupon/crud/**
  34.       stripPrefix: true
  35.       serviceId: coupon-processing-crud-service
  36.     coupon-processing-import-service:
  37.       path: /processing/coupon/import/**
  38.       stripPrefix: true
  39.       serviceId: coupon-processing-import-service
  40. server:
  41.   port: 8090
  42.  
  43. spring:
  44.   servlet:
  45.     multipart:
  46.       enabled: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement