Skip to content

Commit

Permalink
Increase max object size default to 100Mb for helm chart (#2692)
Browse files Browse the repository at this point in the history
  • Loading branch information
iainsproat authored Aug 19, 2024
1 parent 35d3942 commit 97321fd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/server/modules/core/services/objects.js
Original file line number Diff line number Diff line change
Expand Up @@ -698,7 +698,7 @@ function prepInsertionObject(streamId, obj) {
const objectByteSize = estimateStringMegabyteSize(stringifiedObj)
if (objectByteSize > MAX_OBJECT_SIZE_MB) {
throw new ObjectHandlingError(
`Object too large. (${objectByteSize} MB is > than limit, ${MAX_OBJECT_SIZE_MB} MB)`
`Object too large. Object ID: ${obj.id}. (${objectByteSize} MB is > than limit, ${MAX_OBJECT_SIZE_MB} MB)`
)
}
return {
Expand Down
2 changes: 1 addition & 1 deletion utils/helm/speckle-server/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -1313,7 +1313,7 @@
"max_object_size_mb": {
"type": "number",
"description": "The maximum size of an individual object which can be uploaded to the server",
"default": 10
"default": 100
},
"requests": {
"type": "object",
Expand Down
2 changes: 1 addition & 1 deletion utils/helm/speckle-server/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -814,7 +814,7 @@ objects:
port: '7000'

## @param objects.max_object_size_mb The maximum size of an individual object which can be uploaded to the server
max_object_size_mb: 10
max_object_size_mb: 100

requests:
## @param objects.requests.cpu The CPU that should be available on a node when scheduling this pod.
Expand Down

0 comments on commit 97321fd

Please sign in to comment.