This message was deleted.
# ask-for-help
s
This message was deleted.
x
You can use this value to reduce the `maxOpenConns`: https://github.com/bentoml/Yatai/blob/main/helm/yatai/values.yaml#L94
a
Ya, I saw that. I was just wondering if there were any guidelines about changing that value
x
You can read the helm's official documentation: https://helm.sh/docs/helm/helm_upgrade/
a
Why would I look in helm docs for a yatai setting?
Basically, would decreasing that value cause any problems in yatai?
x
First of all, yatai is installed with helm, and then your question is essentially how to change the values when installing with helm, which is why I gave you the official helm documentation
What is the specific impact depends on how much traffic your yatai is going to carry, and different situations have different impacts
a
Alright nevermind, I'll figure it out
x
If you don't like reading helm's documentation, I can show you the easy way to set it up:
Copy code
helm get values yatai -n yatai-system > values.yaml
helm upgrade yatai bentoml/yatai -n yatai-system --values ./values.yaml --set postgresql.maxOpenConns=10
a
What is the specific impact depends on how much traffic your yatai is going to carry, and different situations have different impacts
This is what I'm asking about. Are there any docs or guidelines for how changing this value will affect yatai?
x
Sorry for my misunderstanding. What type of documentation do you need and do you have examples to refer to?
a
No problem, I'm sure I could have been clearer. I just want to know if there is a min value I should not go below and if there is anything specific to watch to make sure there are no problems
x
Here is a related benchmark article, I don't know if it will help you: https://www.alexedwards.net/blog/configuring-sqldb
gratitude thank you 1