Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

More performant handling of out of order updates. #8608

Draft
wants to merge 7 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
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
60 changes: 49 additions & 11 deletions packages/firestore/src/remote/watch_change.ts
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,7 @@ export class WatchChangeAggregator {

/** Keeps track of the documents to update since the last raised snapshot. */
private pendingDocumentUpdates = mutableDocumentMap();
private pendingDocumentUpdatesByTarget = documentTargetMap();

/** A mapping of document keys to their set of target IDs. */
private pendingDocumentTargetMapping = documentTargetMap();
Expand Down Expand Up @@ -587,16 +588,16 @@ export class WatchChangeAggregator {
if (targetState.current && targetIsDocumentTarget(targetData.target)) {
// Document queries for document that don't exist can produce an empty
// result set. To update our local cache, we synthesize a document
// delete if we have not previously received the document. This
// resolves the limbo state of the document, removing it from
// limboDocumentRefs.
// delete if we have not previously received the document for this
// target. This resolves the limbo state of the document, removing it
// from limboDocumentRefs.
//
// TODO(dimond): Ideally we would have an explicit lookup target
// instead resulting in an explicit delete message and we could
// remove this special logic.
const key = new DocumentKey(targetData.target.path);
if (
this.pendingDocumentUpdates.get(key) === null &&
!this.ensureDocumentUpdateByTarget(key).has(targetId) &&
!this.targetContainsDocument(targetId, key)
) {
this.removeDocumentFromTarget(
Expand Down Expand Up @@ -655,6 +656,7 @@ export class WatchChangeAggregator {
);

this.pendingDocumentUpdates = mutableDocumentMap();
this.pendingDocumentUpdatesByTarget = documentTargetMap();
this.pendingDocumentTargetMapping = documentTargetMap();
this.pendingTargetResets = new SortedMap<TargetId, TargetPurpose>(
primitiveComparator
Expand All @@ -680,10 +682,22 @@ export class WatchChangeAggregator {
const targetState = this.ensureTargetState(targetId);
targetState.addDocumentChange(document.key, changeType);

this.pendingDocumentUpdates = this.pendingDocumentUpdates.insert(
document.key,
document
);
const pendingDocumentUpdate = this.pendingDocumentUpdates.get(document.key);
if (
pendingDocumentUpdate === null ||
document.version.compareTo(pendingDocumentUpdate.version) > 0
) {
this.pendingDocumentUpdates = this.pendingDocumentUpdates.insert(
document.key,
document
);
}

this.pendingDocumentUpdatesByTarget =
this.pendingDocumentUpdatesByTarget.insert(
document.key,
this.ensureDocumentUpdateByTarget(document.key).add(targetId)
);

this.pendingDocumentTargetMapping =
this.pendingDocumentTargetMapping.insert(
Expand Down Expand Up @@ -724,11 +738,23 @@ export class WatchChangeAggregator {
this.ensureDocumentTargetMapping(key).delete(targetId)
);

if (updatedDocument) {
this.pendingDocumentUpdates = this.pendingDocumentUpdates.insert(
this.pendingDocumentTargetMapping =
this.pendingDocumentTargetMapping.insert(
key,
updatedDocument
this.ensureDocumentTargetMapping(key).add(targetId)
);

if (updatedDocument) {
const pendingDocumentUpdate = this.pendingDocumentUpdates.get(key);
if (
pendingDocumentUpdate === null ||
updatedDocument.version.compareTo(pendingDocumentUpdate.version) > 0
) {
this.pendingDocumentUpdates = this.pendingDocumentUpdates.insert(
key,
updatedDocument
);
}
}
}

Expand Down Expand Up @@ -782,6 +808,18 @@ export class WatchChangeAggregator {
return targetMapping;
}

private ensureDocumentUpdateByTarget(key: DocumentKey): SortedSet<TargetId> {
let targetMapping = this.pendingDocumentUpdatesByTarget.get(key);

if (!targetMapping) {
targetMapping = new SortedSet<TargetId>(primitiveComparator);
this.pendingDocumentUpdatesByTarget =
this.pendingDocumentUpdatesByTarget.insert(key, targetMapping);
}

return targetMapping;
}

/**
* Verifies that the user is still interested in this target (by calling
* `getTargetDataForTarget()`) and that we are not waiting for pending ADDs
Expand Down
2 changes: 1 addition & 1 deletion packages/firestore/test/unit/remote/remote_event.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ describe('RemoteEvent', () => {
const targets = listens(1, 2);

const doc1a = doc('docs/1', 1, { value: 1 });
const doc1b = doc('docs/1', 1, { value: 2 });
const doc1b = doc('docs/1', 2, { value: 2 });

const change1 = new DocumentWatchChange([1], [2], doc1a.key, doc1a);
const change2 = new DocumentWatchChange([2], [1], doc1b.key, doc1b);
Expand Down
Loading
Loading