Skip to content

Commit 84cb784

Browse files
committed
Added "Increase memory limits for query request for performance boost" to Production Best Practices Guide
1 parent ed7db12 commit 84cb784

File tree

1 file changed

+14
-1
lines changed
  • site/content/en/docs/Guides/Production

1 file changed

+14
-1
lines changed

site/content/en/docs/Guides/Production/_index.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,4 +91,17 @@ helm install my-release -n open-match open-match/open-match -f values-production
9191
```
9292

9393
## Use Envoy or other load balancing solution if you plan to connect to Open Match via an out-of-cluster client
94-
The above load balancing solution is sufficient if you have both the client and the server deployment within the same cluster. However, some game architectures may requires connecting to Open Match services from an out-of-cluster client. We recommend [Envoy](https://www.envoyproxy.io/) as a solution. Alternatives like Kubernetes Ingress or platform specific L7 Load Balancer can also work.
94+
The above load balancing solution is sufficient if you have both the client and the server deployment within the same cluster. However, some game architectures may requires connecting to Open Match services from an out-of-cluster client. We recommend [Envoy](https://www.envoyproxy.io/) as a solution. Alternatives like Kubernetes Ingress or platform specific L7 Load Balancer can also work.
95+
96+
## Increase memory limits for query request for performance boost
97+
When querying Tickets in Open Match, there is a possibility of requests being larger or smaller than configured. Open Match comes default with the following configuration:
98+
```yaml
99+
resources:
100+
limits:
101+
cpu: 100m
102+
memory: 100Mi
103+
requests:
104+
cpu: 100m
105+
memory: 100Mi
106+
```
107+
We recommend increasing the limit for memory to accomodate larger than expected query requests. For more information on Kubernetes Best Practices, please consult the following [Blog Post](https://cloud.google.com/blog/products/gcp/kubernetes-best-practices-resource-requests-and-limits) as a reference.

0 commit comments

Comments
 (0)