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

firestore: improve documentation about CRUD promises and when they resolve #8887

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dconeybe
Copy link
Contributor

@dconeybe dconeybe commented Mar 31, 2025

Firestore: Improve documentation for setDoc, updateDoc, deleteDoc, and addDoc to clearly document that the returned Promise does not resolve/reject until the write is attempted against the remote Firestore backend, which could be an indefinite amount of time in the future.

Fixes: #8862

… clearly document that the returned Promise does not resolve/reject until the write is attempted against the remote Firestore backend, which could be an indefinite amount of time in the future.
@dconeybe dconeybe self-assigned this Mar 31, 2025
@dconeybe dconeybe requested review from a team as code owners March 31, 2025 19:45
Copy link

changeset-bot bot commented Mar 31, 2025

⚠️ No Changeset found

Latest commit: f1f2153

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@google-oss-bot
Copy link
Contributor

@google-oss-bot
Copy link
Contributor

Copy link
Contributor

@MarkDuckworth MarkDuckworth left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is great!

* time, for example until the client has gone back online. That being said,
* the given data _will_ be immediately saved to the local cache and will be
* incorporated into future "get" operations as if it had been successfully
* written to the remote Firestore server. The data will _eventually_ be written
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You could reference this behavior as latency compensation. We do use this term in public documentation, so giving it a name here may make it easier to search for.

Copy link

@bennbollay bennbollay left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

* rejected until the remote Firestore backend reports an error saving the given
* data. So if the client cannot reach the backend, for example due to being
* offline, then the returned `Promise` will not resolve for a potentially-long
* time, for example until the client has gone back online. That being said,

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Duplicate "for example" clauses in the language here.

* rejected until the remote Firestore backend reports an error saving the given
* data. So if the client cannot reach the backend, for example due to being
* offline, then the returned `Promise` will not resolve for a potentially-long
* time, for example until the client has gone back online. That being said,

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It might be worth also emphasizing, somewhere, that if the client is offline (for example via await disableNetwork(db);) attempting to await in test automation will cause the process to immediately exit because there is no pending network operation or timer to attempt the retry.

That's probably not suitable for this page, but it might be worth a highlight somewhere.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Documentation doesn't emphasize Promises don't resolve for offline writes
4 participants