Advertisement
Guest User

Untitled

a guest
Sep 20th, 2019
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.91 KB | None | 0 0
  1. executor {
  2.   shutdownTimeoutMs = 60000
  3.   retryWaitTimeMs = 5000
  4.   maxRetryNum = 3
  5.  
  6.   jobs = [
  7.     ${modules.mysqlBudgetMetricsPublisher},
  8.     ${modules.aerospikeBudgetMetricsPublisher},
  9.     ${modules.redshiftBudgetMetricsPublisher}
  10.   ]
  11. }
  12.  
  13. modules {
  14.   default {
  15.     implementation = ""
  16.     startDate = "2019-01-01T01:00"
  17.     timeInterval = 30
  18.     timeUnit = SECONDS
  19.     errorBehavior = SHUTDOWN_SERVICE
  20.     singleLaunch = false
  21.     start = true
  22.     tracked = true
  23.   }
  24.  
  25.   mysqlBudgetMetricsPublisher = ${modules.default}
  26.   mysqlBudgetMetricsPublisher = {
  27.     implementation = "com.bidmotion.module.MySqlBudgetRetriever"
  28.     conf = ${mysqlBudgetMetricsPublisher}
  29.     id = 1
  30.   }
  31.  
  32.   aerospikeBudgetMetricsPublisher = ${modules.default}
  33.   aerospikeBudgetMetricsPublisher = {
  34.     implementation = "com.bidmotion.module.AerospikeBudgetRetriever"
  35.     conf = ${aerospikeBudgetMetricsPublisher}
  36.     id = 2
  37.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement