Configuring Load Balancer Timeouts
The default values file (values.yml
) included in the AtScale Helm chart contains settings for configuring load balancing. By default, read timeouts for XMLA and SQL interfaces are set to one day:
atscale-engine:
gateway:
ingress:
annotations:
nginx.ingress.kubernetes.io/proxy-connect-timeout: "86400000"
nginx.ingress.kubernetes.io/proxy-send-timeout: "86400000"
nginx.ingress.kubernetes.io/proxy-read-timeout: "86400000"
If you need to update these values (for example, if you swap out a load balancer or use an additional load balancer in front of it), you can include the above properties in your values override file.
note
If you have a load balancer overriding the one included with AtScale, make sure its timeout settings match the ones specified here.