You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`HASURA_GRAPHQL_CACHE_MAX_ENTRY_TTL`|`--query-cache-max-ttl`| Maximum TTL allowed in seconds. Clients can request TTL via the `@cached` directive. But an upper limit can be set using this setting. Default: 3600 seconds |
72
-
|`HASURA_GRAPHQL_CACHE_MAX_ENTRY_SIZE`|`--query-cache-max-entry-size`| Maximum size of the response that is allowed to be cached (in MB). default: 1000 MB |
73
-
|`HASURA_GRAPHQL_CACHE_BUCKET_RATE`|`--query-cache-bucket-rate`| Recharge rate for the Query Response Cache token bucket. Default: 10,000,000 bytes/second (10 MB/s) |
74
-
|`HASURA_GRAPHQL_CACHE_BUCKET_SIZE`|`--query-cache-bucket-size`| Maximum capacity in bytes for the Query Response Cache token bucket algorithm. See https://hasura.io/docs/latest/queries/response-caching for more info. Default: 1000000000 bytes (1 GB) |
|`HASURA_GRAPHQL_CACHE_MAX_ENTRY_TTL`|`--query-cache-max-ttl`| Maximum TTL allowed in seconds. Clients can request TTL via the `@cached` directive. But an upper limit can be set using this setting. Default: 3600 seconds |
72
+
|`HASURA_GRAPHQL_CACHE_MAX_ENTRY_SIZE`|`--query-cache-max-entry-size`| Maximum size of the response that is allowed to be cached (in MB). default: 1000 MB |
73
+
|`HASURA_GRAPHQL_CACHE_BUCKET_RATE`|`--query-cache-bucket-rate`| Recharge rate for the Query Response Cache token bucket. Default: 10,000,000 bytes/second (10 MB/s) |
74
+
|`HASURA_GRAPHQL_CACHE_BUCKET_SIZE`|`--query-cache-bucket-size`| Maximum capacity in bytes for the Query Response Cache token bucket algorithm. See https://hasura.io/docs/latest/queries/response-caching for more info. Default: 1000000000 bytes (1 GB) |
75
+
|`HASURA_GRAPHQL_CACHING_REDIS_POOL_SIZE`|`--caching-redis-pool-size`| Maximum number of connections in the caching Redis connection pool. Default: 500 |
76
+
|`HASURA_GRAPHQL_RATE_LIMIT_REDIS_POOL_SIZE`|`--rate-limit-redis-pool-size`| Maximum number of connections in the rate-limiting Redis connection pool. Default: 500 |
Copy file name to clipboardExpand all lines: docs/docs/deployment/graphql-engine-flags/reference.mdx
+24Lines changed: 24 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1101,6 +1101,30 @@ The path to a shared CA store to use to connect to both (caching and rate-limiti
1101
1101
|**Default**|`null`|
1102
1102
|**Supported in**| Enterprise Edition only |
1103
1103
1104
+
### Caching Redis Pool Size
1105
+
1106
+
Maximum number of connections in the caching Redis connection pool. For high-traffic production environments, you may want to increase this value. For development or low-traffic environments, you can decrease it to conserve resources.
Maximum number of connections in the rate-limiting Redis connection pool. For high-traffic production environments with heavy rate-limiting usage, you may want to increase this value. For development or low-traffic environments, you can decrease it to conserve resources.
0 commit comments