-
Notifications
You must be signed in to change notification settings - Fork 1
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: dataType.on('updated-docs') when docs update #396
Conversation
Emits an array of updated docs for the data type whenever the docs update (rather than emitting one doc at a time, it waits for indexing to complete, then emits all the docs that have been updated. If there are several updates to a particular docId, then only the resolved `head` version is returned). Attaching this listener to a data type that has many values / is frequently updated will have a performance impact, because large amounts of data could be read from the database and there is no limit, e.g. if this was attached to the `observation` dataType and a new device synced with a project with 10,000 observations, an attached listener would be called with 10,000 observations. The main reason for this feature is for internal use for capabilities, listening for changes and modifying permissions accordingly.
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. seems like you ran into some potentially gnarly TS issues - think you made the right choice to ignore them 😄
Co-authored-by: Andrew Chou <[email protected]>
Yeah, I wasted quite a lot of time trying to make TS happy, then just had a realization "why am I bothering". In the internals of functions like these dealing with complex data types, I don't think jumping through hoops to keep TS happy really gains us anything, especially we're hitting limitations of TS. The issue I keep getting frustrated by is trying to narrow a type with |
Emits an array of updated docs for the data type whenever the docs
update (rather than emitting one doc at a time, it waits for indexing to
complete, then emits all the docs that have been updated. If there are
several updates to a particular docId, then only the resolved
head
version is returned).
Attaching this listener to a data type that has many values / is
frequently updated will have a performance impact, because large amounts
of data could be read from the database and there is no limit, e.g. if
this was attached to the
observation
dataType and a new device syncedwith a project with 10,000 observations, an attached listener would be
called with 10,000 observations.
The main reason for this feature is for internal use for capabilities,
listening for changes and modifying permissions accordingly, initially in order to implement #268, which requires adding cores as device capabilities are updated.
This is implemented in a particular way with performance considerations in mind. My initial idea was to return all decoded indexed docs from the index writer, but this would have a high performance cost because:
So, the indexer now returns the docIds of the documents it indexed, then the DataStore de-dupes those and emits them for each schemaName (but only if a listener is attached) when indexing finishes, and the DataType class listens for updated doc ids (but only if a listener is attached) and looks up the docs by those docIds, and emits the
updated-docs
event.