overleaf/services/history-v1/config/default.json
Jakob Ackermann 47820c61a0 Merge pull request #15409 from overleaf/jpa-history-v1-http-timeout
[history-v1] make http request timeout configurable

GitOrigin-RevId: b31b1c94563ddb5195f92af303e6b0f234856795
2023-10-25 08:04:50 +00:00

30 lines
614 B
JSON

{
"persistor": {
"backend": "s3",
"s3": {
"signedUrlExpiryInMs": "1800000",
"maxRetries": "1",
"httpOptions": {
"timeout": "8000"
}
},
"gcs": {
"signedUrlExpiryInMs": "1800000",
"deleteConcurrency": "50"
}
},
"chunkStore": {
"historyStoreConcurrency": "4"
},
"zipStore": {
"zipTimeoutMs": "360000"
},
"maxDeleteKeys": "1000",
"useDeleteObjects": "true",
"clusterWorkers": "1",
"maxFileUploadSize": "52428800",
"databasePoolMin": "2",
"databasePoolMax": "10",
"httpsOnly": "false",
"httpRequestTimeout": "300000"
}