-
Notifications
You must be signed in to change notification settings - Fork 918
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
[Feat] Add bundler implementation to Firestore SSR Serialization feature branch #8872
[Feat] Add bundler implementation to Firestore SSR Serialization feature branch #8872
Conversation
General type errors. Removed QualifiedResourcePath.
…ormat (#8855) Co-authored-by: Mark Duckworth <[email protected]>
Tested the results in loadBundle with a document consisting of all data types, and it succeeded.
name and parent fields aren't properly populated. Looks like we have extraneous "orderBy" fields, too, which might be harmless.
Also includes: - format - lint fixes. - Comments for bundler methods - Addition of DocumentSnapshotBundleData & QuerySnapshotBundleData types.
|
Size Report 1Affected Products
Test Logs |
Size Analysis Report 1This report is too large (770,132 characters) to be displayed here in a GitHub comment. Please use the below link to see the full report on Google Cloud Storage.Test Logs |
These were added to the API before I knew they could have been queried internally.
removed extraneous imports and private/protected changes.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Overall, this is looking good. I have a few comments that we may need to address
if ( | ||
!originalDocument || | ||
(!readTime && !originalDocument.metadata.readTime) || | ||
(readTime && originalDocument.metadata.readTime! < readTime) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what happens if originalDocument.metadata.readTime
is null|undefined?
Maybe this is a direct port from nodejs?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, I cleaned this up quite a bit. PTAL.
if (queryName) { | ||
const newDocument = this.documents.get(docBundleData.documentPath)!; | ||
newDocument.metadata.queries = originalQueries || []; | ||
if (queryName) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this will always be true because it's nested inside line 122
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Too right. Removed.
* QuerySnapshot. Note we cannot accept a QuerySnapshot directly due to a circular | ||
* dependency error. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nice fix for the circular dep
debugAssert( | ||
!docBundleData.documentData.hasLocalMutations, | ||
"Can't serialize documents with mutations." | ||
); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We will have to consider the impact of this assert on serializing documents with local mutations. This could be a breaking change if someone is already performing JSON.stringify(mutatedDoc)
. This is a use case that should not matter for SSR, but will matter because we are using toJSON
for serialization.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I guess there's also a case where someone writes or modifies a document on the server side, and then runs a query to get that document (with modifications) before the server gets a write ack from the backend. This means the documentsnapshot would be with mutations...
I'm not even sure how SSR should behave in this case.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a tricky situation for SSR. We will have to be clear that the server side code must use getDocumentsFromServer
to ensure that we don't get a document with local mutation.
Also, I'm beginning to wonder if we should only override toJSON for these snapshot types when running server side. This helps avoid dealing with edge cases of serialization in the client side. Thoughts?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We discussed this offline, and resolved to throw in these situations. I've updated the branch accordingly. PTAL.
* @param value The input to validate. | ||
* @param options Options that specify whether the string can be omitted. | ||
*/ | ||
export function validateString(arg: string | number, value: unknown): void { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it's not clear to me if any of the functions in this file are used or will be used?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh odd, I thought I had removed this source file. I must have messed up the git push. Will fix.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. One suggestion to correct the error message
throw new FirestoreError( | ||
Code.FAILED_PRECONDITION, | ||
'DocumentSnapshot.toJSON attempted to serialize a document with pending writes. ' + | ||
'Await `waitForPendingWrites()` before invoking `toJSON()`.' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it needs to be 'Await
waitForPendingWrites()` before getting documents.'
throw new FirestoreError( | ||
Code.FAILED_PRECONDITION, | ||
'QuerySnapshot.toJSON attempted to serialize a document with pending writes. ' + | ||
'Await `waitForPendingWrites()` before invoking `toJSON()`.' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same
b85747b
into
ddb-firestore-result-serialization
Discussion
Merge the initial bundler implementation into the Firestore Result Serialization feature branch.
Implementation includes the ability to invoke
toJSON()
onQuerySnapshot
andDocumentSnapshot
instances.Testing
Local tests to plumb the resulting bundle result into
loadBundle
on the client. ExecutedgetDocFromCache
to ensure that the document could be retrieved.Also tested a new instance of Firestore by storing the bundle string in a file and executing a different node application with the string. This ensured that the cache didn't already have the original document from the result of getDoc or getDocs server provided results.
Added unit and integration tests.
API Changes
Waiting for the full feature branch to be complete before submitting an API review doc. This change includes the new methods:
QuerySnapshot.toJSON()
DocumentSnapshot.toJSON()