Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/legal-parrots-own.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'hive': patch
---

Increase default schema worker memory by 15% to handle larger schemas
2 changes: 1 addition & 1 deletion deployment/services/environment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export function prepareEnvironment(input: {
},
},
schemaService: {
memoryLimit: isProduction || isStaging ? '3584Mi' : '1Gi',
memoryLimit: isProduction || isStaging ? '4Gi' : '1Gi',
replicas: isProduction || isStaging ? 6 : 1,
},
usageService: {
Expand Down
2 changes: 1 addition & 1 deletion deployment/services/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export function deploySchema({
SCHEMA_CACHE_POLL_INTERVAL_MS: '150',
SCHEMA_CACHE_TTL_MS: '65000' /* 65s */,
SCHEMA_CACHE_SUCCESS_TTL_MS: String(hourInMS * 2),
COMPOSITION_WORKER_MAX_OLD_GENERATION_SIZE_MB: '716',
COMPOSITION_WORKER_MAX_OLD_GENERATION_SIZE_MB: '832',
Comment thread
jdolle marked this conversation as resolved.
Outdated
OPENTELEMETRY_COLLECTOR_ENDPOINT:
observability.enabled && observability.tracingEndpoint
? observability.tracingEndpoint
Expand Down
Loading