-
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
Emulator Idempotency: Firestore #8780
Conversation
Vertex AI Mock Responses Check
|
|
Size Report 1Affected Products
Test Logs |
Size Analysis Report 1Affected Products
Test Logs |
@@ -494,4 +494,5 @@ export class WriteBatch { | |||
// @public | |||
export function writeBatch(firestore: Firestore): WriteBatch; | |||
|
|||
|
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 did not see this API proposal 😮
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 was a blank document. :)
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. However, the description says this fixes #6824, but that is related to Auth. Not a big deal because you're apply this to auth at the same time, but in a different PR.
Righto, removed that Fixes comment in the PR. Thanks for the review! |
Discussion
Update
connectFirestoreEmulator
to support its invocation more than once. If the Firestore instance is already in use, andconnectFirestoreEmulator
is invoked with the same configuration, then the invocation will now succeed instead of assert.The implementation takes the Data Connect implementation as inspiration. Data Connect stores the parameters passed to
connectDataConnectEmulator
on the instance of Data Connect itself, so that they can be quickly checked to see if subsequent invocations match. This PR implements a similar storage and compare process with the optionalemulatorOptions
parameter (host and port are already stored).This PR unlocks support for SSR frameworks which render the page numerous times with the same instances of Firestore. Before this PR customers were required to guard against calling
connectFirestoreEmulator
in their SSR logic, which added to code complexity. Now the Firebase SDK does that guarding logic so that our users' apps don't have to.Testing
CI, new tests added to
packages/firestore/test/integration/api/validation.test.ts
andpackages/firestore/test/unit/api/database.test.ts
.API Changes
N/A