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

Add storage queues #749

Open
wants to merge 12 commits into
base: main
Choose a base branch
from

Conversation

georeith
Copy link
Collaborator

@georeith georeith commented Nov 16, 2023

We store the document in multiple ways, we store the CRDT data in one location and a JSON snapshot in another.

We have different throttle requirements for each as one of our stores is rate-limited and the other isn't. Also we don't want one type of storage failing to skip the other.

So to combat this I've added the concept of separate storage queues. Nothing changes by default, but you can optionally assign a storage queue to an extension:

const myExtension = {
    storageQueue: 'myStorageQueue',
    async onStoreDocument() {},
    async afterStoreDocument() {},
}

And configure that storage queue to debounce separately at the top level:

new HocusPocus({
    extensions,
    debounce: 500,
    async onStoreDocument() {},
    storageQueues: {
        myStorageQueue: {
            debounce: 0
        }
    },
});

Now the onStoreDocument at the top level and in your extension run in two separate hook chains at their own throttled rate.

Multiple extensions can share the same storage queue by using the same string identifier. These will be chained off each other like usual.

@georeith georeith marked this pull request as ready for review November 16, 2023 11:36
@@ -32,7 +32,7 @@ export class DirectConnection implements DirectConnectionInterface {

transaction(this.document)

await this.instance.storeDocumentHooks(this.document, {
await this.instance.onStoreDocument(this.document, {
Copy link
Collaborator Author

@georeith georeith Nov 16, 2023

Choose a reason for hiding this comment

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

This means that DirectConnection saves will be debounced too, we can disable this by passing true as the final arg but I feel like this should be preferable if your debounce is for rate-limit reasons?

Is there a reason it wasn't part of the throttle previously?

@georeith georeith marked this pull request as draft November 16, 2023 12:12
@georeith georeith marked this pull request as ready for review November 16, 2023 12:15
@georeith
Copy link
Collaborator Author

@janthurau would love to get your thoughts on this.

@janthurau
Copy link
Collaborator

Thanks a lot for your PR! I've been thinking about this for some time, as I currently don't really see this fit in the Hocuspocus core, but as an extension. Having multiple different storage services where you need to debounce them separately sounds like a rather unique use case.

I haven't checked it now, but do you think this is possible to implement using an extension? You can probably either set debounce to 0 and then implement your own logic in onStoreDocument, or don't implement the hook at all and use a custom onChange hook? 🤔

@georeith
Copy link
Collaborator Author

@janthurau its of course possible to implement as an extension but it requires opting out of a large portion of the core and reimplementing a lot of the same concepts manually and loses the separation of onStoreDocument and afterStoreDocument, what makes HocusPocus so nice is that you can separate concerns in extensions and not tie things together. Reimplementing that on top would be clunky as it's duplicating the hook registry and chaining code effectively.

I imagine I'm not the only person who stores both CRDT and JSON snapshots of their data.

It is not just about the different debounce rates.

Currently if an earlier onStoreDocument fails then subsequent hooks are aborted which is not always ideal. It also means that if you do store both you can do so in parallel not in series, which is useful if your storage is slow.

It's a completely opt-in API, nothing changes if you don't use it but if you do want to store to multiple locations this gives you much greater control.

I understand where you're coming from but I think there's a lot of value in being able to support multiple storage locations better within the elegant HocusPocus extension API.

I would be open to altering the API to better fit your style, I just couldn't think of a neater way of describing it at the time. I thought about adding the per debounce settings to the extension level but "storage queues" have a one to many extension relationship.

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

Successfully merging this pull request may close these issues.

None yet

2 participants