You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Are you reporting a bug? Use github issues for bug reports and feature requests. For general questions, please use https://discuss.yjs.dev/
Try to report your issue in the correct repository. Yjs consists of many modules. When in doubt, report it to https://github.com/yjs/yjs/issues/
Describe the bug
So recently I had to debug a rather complicated bug in my yjs server. What happens is, I am loading updates from DB but the list is only partial. Which maybe wouldn't be so bad except that the client keeps generating extraneous updates on full reload thus overwriting the document in the DB.
This is a rough rundown of what's happening:
Client sends syncstep1 & awareness
Server fetches the updates, when doc is loaded sends syncstep2 & awareness
Client applies the update and sets itself synced
this.doc.on('update', this._updateHandler) triggers but the update is skipped since origin is the provider
However, at this point the Y.Doc generates three additional updates with origin == null which are sent to the server
Server receives them and happily commits them to the DB
Doc has been overwritten
What makes this bad even when I am fetching the complete list are the three additional updates which are inserted every time the doc is loaded. The line in question is here
for which I added a check in my own fork of y-websocket where I skip them if (origin !== this && origin) {. However, this has introduced another bug - inconsistent state between client and the server.
I am not necessarily sure if this is a problem with core "yjs" package but I hope this is addressed regardless. I think it is quite serious issue with rather hard to debug complications. Also, as a side-note, adding "type": "module" to the package.json would be nice since Vite really doesn't like importing y-websocket otherwise.
Open browser console, sometimes the extraneous updates with origin == null don't appear but doing a full refresh (Shift+Cmd+R in macOS) should cause it
EDIT: it appears to happen more often with older "yjs" version (13.4.x) and now, as I updated both the client and server to latest 13.6.8, it happens every second or so regular refresh Cmd+R and every hard refresh Shift+Cmd+R
Expected behavior
When doc is loaded, the client should not generate any more updates than necessary
Tested with 2 year older versions and it seems to be happening with them as well. My server is using yrs so I am highly confident the bug is with the client-side code.
The text was updated successfully, but these errors were encountered:
Checklist
Describe the bug
So recently I had to debug a rather complicated bug in my yjs server. What happens is, I am loading updates from DB but the list is only partial. Which maybe wouldn't be so bad except that the client keeps generating extraneous updates on full reload thus overwriting the document in the DB.
This is a rough rundown of what's happening:
this.doc.on('update', this._updateHandler)
triggers but the update is skipped since origin is the providerWhat makes this bad even when I am fetching the complete list are the three additional updates which are inserted every time the doc is loaded. The line in question is here
y-websocket/src/y-websocket.js
Line 260 in 02f691d
if (origin !== this && origin) {
. However, this has introduced another bug - inconsistent state between client and the server.I am not necessarily sure if this is a problem with core "yjs" package but I hope this is addressed regardless. I think it is quite serious issue with rather hard to debug complications. Also, as a side-note, adding
"type": "module"
to the package.json would be nice since Vite really doesn't like importingy-websocket
otherwise.To Reproduce
git clone https://github.com/TeemuKoivisto/yjs-demos
cd demo-server && npm i && npm start
cd prosemirror-versions && npm i && npm start
Shift+Cmd+R
in macOS) should cause itEDIT: it appears to happen more often with older "yjs" version (13.4.x) and now, as I updated both the client and server to latest 13.6.8, it happens every second or so regular refresh
Cmd+R
and every hard refreshShift+Cmd+R
Expected behavior
When doc is loaded, the client should not generate any more updates than necessary
Environment Information
Tested with 2 year older versions and it seems to be happening with them as well. My server is using
yrs
so I am highly confident the bug is with the client-side code.The text was updated successfully, but these errors were encountered: