Advertisement
fedorm

fedorm

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