[RedisManager] block updating of too large docs in redis

This commit is contained in:
Jakob Ackermann 2021-05-06 17:30:50 +01:00
parent c707d0b345
commit 757e1e98c5

View file

@ -468,6 +468,13 @@ module.exports = RedisManager = {
logger.error({ err: error, doc_id, newDocLines }, error.message)
return callback(error)
}
// Do a cheap size check on the serialized blob.
if (newDocLines.length > Settings.max_doc_length) {
const err = new Error('blocking doc update: doc is too large')
const docSize = newDocLines.length
logger.error({ project_id, doc_id, err, docSize }, err.message)
return callback(err)
}
const newHash = RedisManager._computeHash(newDocLines)
const opVersions = appliedOps.map((op) => (op != null ? op.v : undefined))