1. 22 12月, 2017 1 次提交
  2. 21 12月, 2017 2 次提交
  3. 20 12月, 2017 1 次提交
  4. 19 12月, 2017 3 次提交
  5. 15 12月, 2017 1 次提交
  6. 14 12月, 2017 3 次提交
  7. 13 12月, 2017 4 次提交
  8. 12 12月, 2017 1 次提交
  9. 11 12月, 2017 1 次提交
  10. 09 12月, 2017 1 次提交
  11. 08 12月, 2017 2 次提交
    • B
      Move the circuitbreaker check out in a separate process · f1ae1e39
      Bob Van Landuyt 提交于
      Moving the check out of the general requests, makes sure we don't have
      any slowdown in the regular requests.
      
      To keep the process performing this checks small, the check is still
      performed inside a unicorn. But that is called from a process running
      on the same server.
      
      Because the checks are now done outside normal request, we can have a
      simpler failure strategy:
      
      The check is now performed in the background every
      `circuitbreaker_check_interval`. Failures are logged in redis. The
      failures are reset when the check succeeds. Per check we will try
      `circuitbreaker_access_retries` times within
      `circuitbreaker_storage_timeout` seconds.
      
      When the number of failures exceeds
      `circuitbreaker_failure_count_threshold`, we will block access to the
      storage.
      
      After `failure_reset_time` of no checks, we will clear the stored
      failures. This could happen when the process that performs the checks
      is not running.
      f1ae1e39
    • P
      Update prometheus-client-mmap gem to highly optimized version · ee22a47d
      Pawel Chojnacki 提交于
      + change string concatenation to help with GC pressure.
      + fix metric producing incompatible label sets
      ee22a47d
  12. 07 12月, 2017 1 次提交
  13. 05 12月, 2017 5 次提交
  14. 04 12月, 2017 1 次提交
  15. 03 12月, 2017 4 次提交
  16. 29 11月, 2017 1 次提交
  17. 28 11月, 2017 1 次提交
  18. 24 11月, 2017 3 次提交
  19. 23 11月, 2017 2 次提交
  20. 22 11月, 2017 2 次提交