This project is mirrored from https://gitee.com/NQL886/vault.git. Pull mirroring failed .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer.
  1. 07 Jun, 2017 5 commits
  2. 06 Jun, 2017 4 commits
  3. 05 Jun, 2017 25 commits
  4. 03 Jun, 2017 4 commits
  5. 01 Jun, 2017 2 commits
    • Brian Kassouf's avatar
      changelog++ · 4c9ea2ec
      Brian Kassouf authored
      4c9ea2ec
    • Igor Katson's avatar
      Add max_parallel parameter to MySQL backend. (#2760) · 32c7efe7
      Igor Katson authored
      * Add max_parallel parameter to MySQL backend.
      
      This limits the number of concurrent connections, so that vault does not die
      suddenly from "Too many connections".
      
      This can happen when e.g. vault starts up, and tries to load all the
      existing leases in parallel. At the time of writing this, the value
      ExpirationRestoreWorkerCount in vault/helper/consts/const.go is set to
      64, meaning that if there are enough leases in the vault's DB, it will
      generate AT LEAST 64 concurrent connections to MySQL when loading the
      data during start-up. On certain configurations, e.g. smaller AWS
      RDS/Aurora instances, this will cause Vault to fail startup.
      
      * Fix a typo in mysql storage readme
      32c7efe7