-
Notifications
You must be signed in to change notification settings - Fork 4.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add permitPool support to S3 #2466
Conversation
@@ -55,6 +55,9 @@ cause Vault to attempt to retrieve credentials from the AWS metadata service. | |||
- `session_token` `(string: "")` – Specifies the AWS session token. This can | |||
also be provided via the environment variable `AWS_SESSION_TOKEN`. | |||
|
|||
- `max_parallel` `(int: 128)` – Specifies The maximum number of concurrent | |||
requests to S3. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's actually a string :-/ All storage parameters are.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Okay, easy enough to fix. Should I fix all the other ones that list it as an int as well? I copied this from the Azure docs, but Consul etc also list it as an int.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If you don't mind, that would be fantastic :-)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
S3 performance falls off after a certain number of connections so allow limiting it.