Merge pull request #16877 from overleaf/em-history-ranges-support

Store in Redis whether docs support ranges in the history

GitOrigin-RevId: b6dd6ab269172c3ea7674179fdeb2f068f68b18f
This commit is contained in:
Eric Mc Sween 2024-02-07 10:00:29 -05:00 committed by Copybot
parent 652f0cb0b7
commit 2b76aa7df9
7 changed files with 222 additions and 107 deletions

View file

@ -29,7 +29,10 @@ const DocumentManager = {
ranges, ranges,
pathname, pathname,
projectHistoryId, projectHistoryId,
unflushedTime unflushedTime,
lastUpdatedAt,
lastUpdatedBy,
historyRangesSupport
) => { ) => {
if (error) { if (error) {
return callback(error) return callback(error)
@ -42,7 +45,15 @@ const DocumentManager = {
PersistenceManager.getDoc( PersistenceManager.getDoc(
projectId, projectId,
docId, docId,
(error, lines, version, ranges, pathname, projectHistoryId) => { (
error,
lines,
version,
ranges,
pathname,
projectHistoryId,
historyRangesSupport
) => {
if (error) { if (error) {
return callback(error) return callback(error)
} }
@ -54,6 +65,7 @@ const DocumentManager = {
version, version,
pathname, pathname,
projectHistoryId, projectHistoryId,
historyRangesSupport,
}, },
'got doc from persistence API' 'got doc from persistence API'
) )
@ -65,6 +77,7 @@ const DocumentManager = {
ranges, ranges,
pathname, pathname,
projectHistoryId, projectHistoryId,
historyRangesSupport,
error => { error => {
if (error) { if (error) {
return callback(error) return callback(error)
@ -77,7 +90,8 @@ const DocumentManager = {
pathname, pathname,
projectHistoryId, projectHistoryId,
null, null,
false false,
historyRangesSupport
) )
} }
) )
@ -92,7 +106,8 @@ const DocumentManager = {
pathname, pathname,
projectHistoryId, projectHistoryId,
unflushedTime, unflushedTime,
true true,
historyRangesSupport
) )
} }
} }
@ -698,6 +713,7 @@ module.exports.promises = promisifyAll(DocumentManager, {
'projectHistoryId', 'projectHistoryId',
'unflushedTime', 'unflushedTime',
'alreadyLoaded', 'alreadyLoaded',
'historyRangesSupport',
], ],
getDocWithLock: [ getDocWithLock: [
'lines', 'lines',
@ -707,6 +723,7 @@ module.exports.promises = promisifyAll(DocumentManager, {
'projectHistoryId', 'projectHistoryId',
'unflushedTime', 'unflushedTime',
'alreadyLoaded', 'alreadyLoaded',
'historyRangesSupport',
], ],
getDocAndFlushIfOld: ['lines', 'version'], getDocAndFlushIfOld: ['lines', 'version'],
getDocAndFlushIfOldWithLock: ['lines', 'version'], getDocAndFlushIfOldWithLock: ['lines', 'version'],

View file

@ -101,7 +101,8 @@ function getDoc(projectId, docId, options = {}, _callback) {
body.version, body.version,
body.ranges, body.ranges,
body.pathname, body.pathname,
body.projectHistoryId?.toString() body.projectHistoryId?.toString(),
body.historyRangesSupport || false
) )
} else if (res.statusCode === 404) { } else if (res.statusCode === 404) {
callback(new Errors.NotFoundError(`doc not not found: ${urlPath}`)) callback(new Errors.NotFoundError(`doc not not found: ${urlPath}`))
@ -186,6 +187,7 @@ module.exports = {
'ranges', 'ranges',
'pathname', 'pathname',
'projectHistoryId', 'projectHistoryId',
'historyRangesSupport',
]), ]),
setDoc: promisify(setDoc), setDoc: promisify(setDoc),
}, },

View file

@ -38,6 +38,7 @@ const RedisManager = {
ranges, ranges,
pathname, pathname,
projectHistoryId, projectHistoryId,
historyRangesSupport,
_callback _callback
) { ) {
const timer = new metrics.Timer('redis.put-doc') const timer = new metrics.Timer('redis.put-doc')
@ -89,8 +90,8 @@ const RedisManager = {
}) })
} }
rclient.mset( const multi = rclient.multi()
{ multi.mset({
[keys.docLines({ doc_id: docId })]: docLines, [keys.docLines({ doc_id: docId })]: docLines,
[keys.projectKey({ doc_id: docId })]: projectId, [keys.projectKey({ doc_id: docId })]: projectId,
[keys.docVersion({ doc_id: docId })]: version, [keys.docVersion({ doc_id: docId })]: version,
@ -98,9 +99,11 @@ const RedisManager = {
[keys.ranges({ doc_id: docId })]: ranges, [keys.ranges({ doc_id: docId })]: ranges,
[keys.pathname({ doc_id: docId })]: pathname, [keys.pathname({ doc_id: docId })]: pathname,
[keys.projectHistoryId({ doc_id: docId })]: projectHistoryId, [keys.projectHistoryId({ doc_id: docId })]: projectHistoryId,
}, })
callback if (historyRangesSupport) {
) multi.sadd(keys.historyRangesSupport(), docId)
}
multi.exec(callback)
} }
) )
}) })
@ -132,6 +135,7 @@ const RedisManager = {
keys.lastUpdatedAt({ doc_id: docId }), keys.lastUpdatedAt({ doc_id: docId }),
keys.lastUpdatedBy({ doc_id: docId }) keys.lastUpdatedBy({ doc_id: docId })
) )
multi.srem(keys.historyRangesSupport(), docId)
multi.exec((error, response) => { multi.exec((error, response) => {
if (error) { if (error) {
return callback(error) return callback(error)
@ -198,6 +202,12 @@ const RedisManager = {
lastUpdatedAt, lastUpdatedAt,
lastUpdatedBy, lastUpdatedBy,
] = result ] = result
rclient.sismember(keys.historyRangesSupport(), docId, (error, result) => {
if (error) {
return callback(error)
}
const historyRangesSupport = result === 1
const timeSpan = timer.done() const timeSpan = timer.done()
// check if request took too long and bail out. only do this for // check if request took too long and bail out. only do this for
// get, because it is the first call in each update, so if this // get, because it is the first call in each update, so if this
@ -258,9 +268,11 @@ const RedisManager = {
projectHistoryId, projectHistoryId,
unflushedTime, unflushedTime,
lastUpdatedAt, lastUpdatedAt,
lastUpdatedBy lastUpdatedBy,
historyRangesSupport
) )
}) })
})
}, },
getDocVersion(docId, callback) { getDocVersion(docId, callback) {
@ -631,6 +643,7 @@ module.exports.promises = promisifyAll(RedisManager, {
'unflushedTime', 'unflushedTime',
'lastUpdatedAt', 'lastUpdatedAt',
'lastUpdatedBy', 'lastUpdatedBy',
'historyRangesSupport',
], ],
getNextProjectToFlushAndDelete: [ getNextProjectToFlushAndDelete: [
'projectId', 'projectId',

View file

@ -140,6 +140,9 @@ module.exports = {
flushAndDeleteQueue() { flushAndDeleteQueue() {
return 'DocUpdaterFlushAndDeleteQueue' return 'DocUpdaterFlushAndDeleteQueue'
}, },
historyRangesSupport() {
return 'HistoryRangesSupport'
},
}, },
}, },
}, },

View file

@ -42,6 +42,7 @@ describe('DocumentManager', function () {
this.lastUpdatedAt = Date.now() this.lastUpdatedAt = Date.now()
this.lastUpdatedBy = 'last-author-id' this.lastUpdatedBy = 'last-author-id'
this.source = 'external-source' this.source = 'external-source'
this.historyRangesSupport = false
}) })
afterEach(function () { afterEach(function () {
@ -335,7 +336,10 @@ describe('DocumentManager', function () {
this.ranges, this.ranges,
this.pathname, this.pathname,
this.projectHistoryId, this.projectHistoryId,
this.unflushedTime this.unflushedTime,
this.lastUpdatedAt,
this.lastUpdatedBy,
this.historyRangesSupport
) )
this.DocumentManager.getDoc(this.project_id, this.doc_id, this.callback) this.DocumentManager.getDoc(this.project_id, this.doc_id, this.callback)
}) })
@ -356,7 +360,8 @@ describe('DocumentManager', function () {
this.pathname, this.pathname,
this.projectHistoryId, this.projectHistoryId,
this.unflushedTime, this.unflushedTime,
true true,
this.historyRangesSupport
) )
.should.equal(true) .should.equal(true)
}) })
@ -380,7 +385,8 @@ describe('DocumentManager', function () {
this.version, this.version,
this.ranges, this.ranges,
this.pathname, this.pathname,
this.projectHistoryId this.projectHistoryId,
this.historyRangesSupport
) )
this.RedisManager.putDocInMemory = sinon.stub().yields() this.RedisManager.putDocInMemory = sinon.stub().yields()
this.DocumentManager.getDoc(this.project_id, this.doc_id, this.callback) this.DocumentManager.getDoc(this.project_id, this.doc_id, this.callback)
@ -407,7 +413,8 @@ describe('DocumentManager', function () {
this.version, this.version,
this.ranges, this.ranges,
this.pathname, this.pathname,
this.projectHistoryId this.projectHistoryId,
this.historyRangesSupport
) )
.should.equal(true) .should.equal(true)
}) })
@ -422,7 +429,8 @@ describe('DocumentManager', function () {
this.pathname, this.pathname,
this.projectHistoryId, this.projectHistoryId,
null, null,
false false,
this.historyRangesSupport
) )
.should.equal(true) .should.equal(true)
}) })

View file

@ -32,6 +32,7 @@ describe('PersistenceManager', function () {
this.pathname = '/a/b/c.tex' this.pathname = '/a/b/c.tex'
this.lastUpdatedAt = Date.now() this.lastUpdatedAt = Date.now()
this.lastUpdatedBy = 'last-author-id' this.lastUpdatedBy = 'last-author-id'
this.historyRangesSupport = false
this.Settings.apis = { this.Settings.apis = {
web: { web: {
url: (this.url = 'www.example.com'), url: (this.url = 'www.example.com'),
@ -49,6 +50,7 @@ describe('PersistenceManager', function () {
ranges: this.ranges, ranges: this.ranges,
pathname: this.pathname, pathname: this.pathname,
projectHistoryId: this.projectHistoryId, projectHistoryId: this.projectHistoryId,
historyRangesSupport: this.historyRangesSupport,
} }
}) })
@ -94,7 +96,8 @@ describe('PersistenceManager', function () {
this.version, this.version,
this.ranges, this.ranges,
this.pathname, this.pathname,
this.projectHistoryId this.projectHistoryId,
this.historyRangesSupport
) )
.should.equal(true) .should.equal(true)
}) })

View file

@ -7,7 +7,7 @@ const tk = require('timekeeper')
describe('RedisManager', function () { describe('RedisManager', function () {
beforeEach(function () { beforeEach(function () {
this.multi = { exec: sinon.stub() } this.multi = { exec: sinon.stub().yields() }
this.rclient = { multi: () => this.multi } this.rclient = { multi: () => this.multi }
tk.freeze(new Date()) tk.freeze(new Date())
this.RedisManager = SandboxedModule.require(modulePath, { this.RedisManager = SandboxedModule.require(modulePath, {
@ -63,6 +63,9 @@ describe('RedisManager', function () {
lastUpdatedAt({ doc_id: docId }) { lastUpdatedAt({ doc_id: docId }) {
return `lastUpdatedAt:${docId}` return `lastUpdatedAt:${docId}`
}, },
historyRangesSupport() {
return 'HistoryRangesSupport'
},
}, },
}, },
}, },
@ -91,6 +94,7 @@ describe('RedisManager', function () {
this.docId = 'doc-id-123' this.docId = 'doc-id-123'
this.project_id = 'project-id-123' this.project_id = 'project-id-123'
this.projectHistoryId = '123' this.projectHistoryId = '123'
this.historyRangesSupport = false
this.callback = sinon.stub() this.callback = sinon.stub()
}) })
@ -123,6 +127,10 @@ describe('RedisManager', function () {
this.projectHistoryId.toString(), this.projectHistoryId.toString(),
this.unflushed_time, this.unflushed_time,
]) ])
this.rclient.sismember = sinon.stub()
this.rclient.sismember
.withArgs('HistoryRangesSupport', this.docId)
.yields(null, 0)
}) })
describe('successfully', function () { describe('successfully', function () {
@ -148,8 +156,7 @@ describe('RedisManager', function () {
}) })
it('should return the document', function () { it('should return the document', function () {
this.callback this.callback.should.have.been.calledWithExactly(
.calledWithExactly(
null, null,
this.lines, this.lines,
this.version, this.version,
@ -158,9 +165,9 @@ describe('RedisManager', function () {
this.projectHistoryId, this.projectHistoryId,
this.unflushed_time, this.unflushed_time,
this.lastUpdatedAt, this.lastUpdatedAt,
this.lastUpdatedBy this.lastUpdatedBy,
this.historyRangesSupport
) )
.should.equal(true)
}) })
it('should not log any errors', function () { it('should not log any errors', function () {
@ -247,6 +254,30 @@ describe('RedisManager', function () {
.should.equal(true) .should.equal(true)
}) })
}) })
describe('with history ranges support', function () {
beforeEach(function () {
this.rclient.sismember
.withArgs('HistoryRangesSupport', this.docId)
.yields(null, 1)
this.RedisManager.getDoc(this.project_id, this.docId, this.callback)
})
it('should return the document with the history ranges flag set', function () {
this.callback.should.have.been.calledWithExactly(
null,
this.lines,
this.version,
this.ranges,
this.pathname,
this.projectHistoryId,
this.unflushed_time,
this.lastUpdatedAt,
this.lastUpdatedBy,
true
)
})
})
}) })
describe('getPreviousDocOpsTests', function () { describe('getPreviousDocOpsTests', function () {
@ -765,7 +796,8 @@ describe('RedisManager', function () {
describe('putDocInMemory', function () { describe('putDocInMemory', function () {
beforeEach(function () { beforeEach(function () {
this.rclient.mset = sinon.stub().yields(null) this.multi.mset = sinon.stub()
this.multi.sadd = sinon.stub()
this.rclient.sadd = sinon.stub().yields() this.rclient.sadd = sinon.stub().yields()
this.lines = ['one', 'two', 'three', 'これは'] this.lines = ['one', 'two', 'three', 'これは']
this.version = 42 this.version = 42
@ -787,12 +819,13 @@ describe('RedisManager', function () {
this.ranges, this.ranges,
this.pathname, this.pathname,
this.projectHistoryId, this.projectHistoryId,
this.historyRangesSupport,
done done
) )
}) })
it('should set all the details in a single MSET call', function () { it('should set all the details in a single MSET call', function () {
this.rclient.mset this.multi.mset
.calledWith({ .calledWith({
[`doclines:${this.docId}`]: JSON.stringify(this.lines), [`doclines:${this.docId}`]: JSON.stringify(this.lines),
[`ProjectId:${this.docId}`]: this.project_id, [`ProjectId:${this.docId}`]: this.project_id,
@ -814,6 +847,10 @@ describe('RedisManager', function () {
it('should not log any errors', function () { it('should not log any errors', function () {
this.logger.error.calledWith().should.equal(false) this.logger.error.calledWith().should.equal(false)
}) })
it('should not add the document to the HistoryRangesSupport set in Redis', function () {
this.multi.sadd.should.not.have.been.calledWith('HistoryRangesSupport')
})
}) })
describe('with empty ranges', function () { describe('with empty ranges', function () {
@ -826,13 +863,13 @@ describe('RedisManager', function () {
{}, {},
this.pathname, this.pathname,
this.projectHistoryId, this.projectHistoryId,
this.historyRangesSupport,
done done
) )
}) })
it('should unset ranges', function () { it('should unset ranges', function () {
this.rclient.mset this.multi.mset.should.have.been.calledWith({
.calledWith({
[`doclines:${this.docId}`]: JSON.stringify(this.lines), [`doclines:${this.docId}`]: JSON.stringify(this.lines),
[`ProjectId:${this.docId}`]: this.project_id, [`ProjectId:${this.docId}`]: this.project_id,
[`DocVersion:${this.docId}`]: this.version, [`DocVersion:${this.docId}`]: this.version,
@ -841,7 +878,6 @@ describe('RedisManager', function () {
[`Pathname:${this.docId}`]: this.pathname, [`Pathname:${this.docId}`]: this.pathname,
[`ProjectHistoryId:${this.docId}`]: this.projectHistoryId, [`ProjectHistoryId:${this.docId}`]: this.projectHistoryId,
}) })
.should.equal(true)
}) })
}) })
@ -858,6 +894,7 @@ describe('RedisManager', function () {
this.ranges, this.ranges,
this.pathname, this.pathname,
this.projectHistoryId, this.projectHistoryId,
this.historyRangesSupport,
this.callback this.callback
) )
}) })
@ -890,6 +927,7 @@ describe('RedisManager', function () {
this.ranges, this.ranges,
this.pathname, this.pathname,
this.projectHistoryId, this.projectHistoryId,
this.historyRangesSupport,
this.callback this.callback
) )
}) })
@ -904,6 +942,30 @@ describe('RedisManager', function () {
.should.equal(true) .should.equal(true)
}) })
}) })
describe('with history ranges support', function () {
beforeEach(function (done) {
this.historyRangesSupport = true
this.RedisManager.putDocInMemory(
this.project_id,
this.docId,
this.lines,
this.version,
this.ranges,
this.pathname,
this.projectHistoryId,
this.historyRangesSupport,
done
)
})
it('should add the document to the HistoryRangesSupport set in Redis', function () {
this.multi.sadd.should.have.been.calledWith(
'HistoryRangesSupport',
this.docId
)
})
})
}) })
describe('removeDocFromMemory', function () { describe('removeDocFromMemory', function () {
@ -941,6 +1003,13 @@ describe('RedisManager', function () {
.calledWith(`DocsIn:${this.project_id}`, this.docId) .calledWith(`DocsIn:${this.project_id}`, this.docId)
.should.equal(true) .should.equal(true)
}) })
it('should remove the docId from the HistoryRangesSupport set', function () {
this.multi.srem.should.have.been.calledWith(
'HistoryRangesSupport',
this.docId
)
})
}) })
describe('clearProjectState', function () { describe('clearProjectState', function () {