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

Fix overlay patch mutation bug #6893

Merged
merged 6 commits into from
Jan 3, 2023
Merged
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
5 changes: 5 additions & 0 deletions .changeset/stupid-swans-fix.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@firebase/firestore": patch
---

Fix an issue that stops some performance optimization being applied.
4 changes: 4 additions & 0 deletions packages/firestore/src/local/local_documents_view.ts
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,10 @@ export class LocalDocumentsView {
overlay.mutation.getFieldMask(),
Timestamp.now()
);
} else {
// no overlay exists
// Using EMPTY to indicate there is no overlay for the document.
mutatedFields.set(doc.key, FieldMask.empty());
}
});

Expand Down
6 changes: 4 additions & 2 deletions packages/firestore/src/local/overlayed_document.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,10 @@ export class OverlayedDocument {
readonly overlayedDocument: Document,

/**
* The fields that are locally mutated by patch mutations. If the overlayed
* document is from set or delete mutations, this returns null.
* The fields that are locally mutated by patch mutations.
*
* If the overlayed document is from set or delete mutations, this is `null`.
* If there is no overlay (mutation) for the document, this is an empty `FieldMask`.
*/
readonly mutatedFields: FieldMask | null
) {}
Expand Down
1 change: 1 addition & 0 deletions packages/firestore/src/model/mutation_batch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,7 @@ export class MutationBatch {
if (overlay !== null) {
overlays.set(m.key, overlay);
}

if (!mutableDocument.isValidDocument()) {
mutableDocument.convertToNoDocument(SnapshotVersion.min());
}
Expand Down
155 changes: 54 additions & 101 deletions packages/firestore/test/unit/local/counting_query_engine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,43 +20,36 @@ import { SnapshotVersion } from '../../../src/core/snapshot_version';
import { DocumentOverlayCache } from '../../../src/local/document_overlay_cache';
import { IndexManager } from '../../../src/local/index_manager';
import { LocalDocumentsView } from '../../../src/local/local_documents_view';
import { MutationQueue } from '../../../src/local/mutation_queue';
import { PersistencePromise } from '../../../src/local/persistence_promise';
import { PersistenceTransaction } from '../../../src/local/persistence_transaction';
import { QueryEngine } from '../../../src/local/query_engine';
import { RemoteDocumentCache } from '../../../src/local/remote_document_cache';
import {
DocumentKeySet,
DocumentMap,
OverlayMap
} from '../../../src/model/collections';
import { DocumentKey } from '../../../src/model/document_key';
import { Overlay } from '../../../src/model/overlay';
import { ResourcePath } from '../../../src/model/path';
import { DocumentKeySet, DocumentMap } from '../../../src/model/collections';
import { MutationType } from '../../../src/model/mutation';

/**
* A test-only query engine that forwards all API calls and exposes the number
* of documents and mutations read.
*/
export class CountingQueryEngine extends QueryEngine {
/**
* The number of mutations returned by the MutationQueue's
* `getAllMutationBatchesAffectingQuery()` API (since the last call to
* The number of overlays returned by the DocumentOverlayCache's
* `getOverlaysByCollection(Group)` API (since the last call to
* `resetCounts()`)
*/
mutationsReadByCollection = 0;
overlaysReadByCollection = 0;

/**
* The number of mutations returned by the MutationQueue's
* `getAllMutationBatchesAffectingDocumentKey()` and
* `getAllMutationBatchesAffectingDocumentKeys()` APIs (since the last call
* to `resetCounts()`)
* The number of overlays returned by the DocumentOverlayCache's
* `getOverlay(s)` APIs (since the last call to `resetCounts()`)
*/
mutationsReadByKey = 0;
overlaysReadByKey = 0;

overlayTypes: { [k: string]: MutationType } = {};

/**
* The number of documents returned by the RemoteDocumentCache's
* `getAll()` API (since the last call to `resetCounts()`)
* `getAll()` API (since the last call to `resetCounts()`).
*/
documentsReadByCollection = 0;

Expand All @@ -66,25 +59,12 @@ export class CountingQueryEngine extends QueryEngine {
*/
documentsReadByKey = 0;

/**
* The number of documents returned by the OverlayCache's `getOverlays()`
* API (since the last call to `resetCounts()`)
*/
overlaysReadByCollection = 0;

/**
* The number of documents returned by the OverlayCache's `getOverlay()`
* APIs (since the last call to `resetCounts()`)
*/
overlaysReadByKey = 0;

resetCounts(): void {
this.mutationsReadByCollection = 0;
this.mutationsReadByKey = 0;
this.documentsReadByCollection = 0;
this.documentsReadByKey = 0;
this.overlaysReadByCollection = 0;
this.overlaysReadByKey = 0;
this.overlayTypes = {};
this.documentsReadByCollection = 0;
this.documentsReadByKey = 0;
}

getDocumentsMatchingQuery(
Expand All @@ -107,8 +87,8 @@ export class CountingQueryEngine extends QueryEngine {
): void {
const view = new LocalDocumentsView(
this.wrapRemoteDocumentCache(localDocuments.remoteDocumentCache),
this.wrapMutationQueue(localDocuments.mutationQueue),
this.wrapDocumentOverlayCache(localDocuments.documentOverlayCache),
localDocuments.mutationQueue,
this.wrapOverlayCache(localDocuments.documentOverlayCache),
localDocuments.indexManager
);
return super.initialize(view, indexManager);
Expand Down Expand Up @@ -168,88 +148,48 @@ export class CountingQueryEngine extends QueryEngine {
};
}

private wrapMutationQueue(subject: MutationQueue): MutationQueue {
private wrapOverlayCache(
subject: DocumentOverlayCache
): DocumentOverlayCache {
return {
addMutationBatch: subject.addMutationBatch,
checkEmpty: subject.checkEmpty,
getAllMutationBatches: transaction => {
return subject.getAllMutationBatches(transaction).next(result => {
this.mutationsReadByKey += result.length;
getOverlay: (transaction, key) => {
return subject.getOverlay(transaction, key).next(result => {
this.overlaysReadByKey += 1;
if (!!result) {
this.overlayTypes[key.toString()] = result.mutation.type;
}
return result;
});
},
getAllMutationBatchesAffectingDocumentKey: (transaction, documentKey) => {
return subject
.getAllMutationBatchesAffectingDocumentKey(transaction, documentKey)
.next(result => {
this.mutationsReadByKey += result.length;
return result;
});
},
getAllMutationBatchesAffectingDocumentKeys: (
transaction,
documentKeys
) => {
return subject
.getAllMutationBatchesAffectingDocumentKeys(transaction, documentKeys)
.next(result => {
this.mutationsReadByKey += result.length;
return result;
});
},
getAllMutationBatchesAffectingQuery: (transaction, query) => {
return subject
.getAllMutationBatchesAffectingQuery(transaction, query)
.next(result => {
this.mutationsReadByCollection += result.length;
return result;

getOverlays: (transaction, keys) => {
return subject.getOverlays(transaction, keys).next(result => {
this.overlaysReadByKey += keys.length;
result.forEach((key, overlay) => {
this.overlayTypes[key.toString()] = overlay.mutation.type;
});
return result;
});
},
getHighestUnacknowledgedBatchId: subject.getHighestUnacknowledgedBatchId,
getNextMutationBatchAfterBatchId:
subject.getNextMutationBatchAfterBatchId,
lookupMutationBatch: subject.lookupMutationBatch,
performConsistencyCheck: subject.performConsistencyCheck,
removeMutationBatch: subject.removeMutationBatch
};
}

private wrapDocumentOverlayCache(
subject: DocumentOverlayCache
): DocumentOverlayCache {
return {
getOverlay: (
transaction: PersistenceTransaction,
key: DocumentKey
): PersistencePromise<Overlay | null> => {
this.overlaysReadByKey++;
return subject.getOverlay(transaction, key);
},
getOverlays: (
transaction: PersistenceTransaction,
keys: DocumentKey[]
): PersistencePromise<OverlayMap> => {
this.overlaysReadByKey += keys.length;
return subject.getOverlays(transaction, keys);
},
getOverlaysForCollection: (
transaction: PersistenceTransaction,
collection: ResourcePath,
sinceBatchId: number
): PersistencePromise<OverlayMap> => {
getOverlaysForCollection: (transaction, collection, sinceBatchId) => {
return subject
.getOverlaysForCollection(transaction, collection, sinceBatchId)
.next(result => {
this.overlaysReadByCollection += result.size();
result.forEach((key, overlay) => {
this.overlayTypes[key.toString()] = overlay.mutation.type;
});
return result;
});
},

getOverlaysForCollectionGroup: (
transaction: PersistenceTransaction,
collectionGroup: string,
sinceBatchId: number,
count: number
): PersistencePromise<OverlayMap> => {
) => {
return subject
.getOverlaysForCollectionGroup(
transaction,
Expand All @@ -259,11 +199,24 @@ export class CountingQueryEngine extends QueryEngine {
)
.next(result => {
this.overlaysReadByCollection += result.size();
result.forEach((key, overlay) => {
this.overlayTypes[key.toString()] = overlay.mutation.type;
});
return result;
});
},
removeOverlaysForBatchId: subject.removeOverlaysForBatchId,
saveOverlays: subject.saveOverlays

saveOverlays: (transaction, largestBatchId, overlays) => {
return subject.saveOverlays(transaction, largestBatchId, overlays);
},

removeOverlaysForBatchId: (transaction, documentKeys, batchId) => {
return subject.removeOverlaysForBatchId(
transaction,
documentKeys,
batchId
);
}
};
}
}
Loading