-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Allow hooking into the filesystem and providing a persistent backend (like absurd-sql) #481
base: master
Are you sure you want to change the base?
Conversation
Nice @jlongster What do you think @lovasoa? I'm excited about this PR on principle. |
Hello everyone! |
@lovasoa Any luck getting a new maintainer or a chance to review this? Would be a great to get these changes in so absurd sql could be used without using a forked version of sql.js |
@lovasoa could you please review it? This change will make a big move in using of sql.js for the web 🙏 |
Hey @lovasoa - is there any way I can help here? I can do a cursory review but I'm not deeply familiar with the internals of I'm interested in the future of |
considering that we now have https://github.com/whatwg/fs then i think indexeddb is rather 👎 |
@jimmywarting any idea on when This sounds extremely promising but I need mobile support. I couldn't find any mention of this in Chrome Platform Status or Issues - chromium. StorageManager API: getDirectory | Can I use... Support tables for HTML5, CSS3, etc |
i don't know. safari is actively working on whatwg fs behind a expe flag, but it sucks pretty much right now. You can only create folders and empty files. you can't read or write data to/from files atm. i haven't heard anything from FF yet. Anyway. i just learned that the benefit of using |
you probably want to close this as dupl of https://crbug.com/1011535 |
also have a look at https://github.com/WICG/file-system-access/issues |
I considered closing it as a duplicate but then I realized that as the Origin Private File System requires no user interactions nor permission granting that it might be best to track it separately. I had not found that other crbug though. Thank you for all the links! |
I've built SQLite filesystems with both Origin Private File System access handles and IndexedDB. In my benchmarks OPFS was somewhat slower. This may in part be because I used non-synchronous access handles for reading database files (and synchronous handles for writing) to allow concurrent read access from multiple database connections, but is also because atomic commit and optional durability settings provide some implementation advantages for IndexedDB. That said, unless performance or browser support is the overriding priority, I would much rather write code for OPFS than IndexedDB. |
The file system standard looks like, but as far as I can tell from reading around the web, Firefox has no plans to implement support. For the moment, anyway, IDB seems to be the most compatible backend for SQL.js. Is this PR held up on review because of the file system access standard? |
Firefox has objections to the full File System Access API proposal, but has been more encouraging on the parts used for Origin Private File System, including the AccessHandle API (which is what Safari has implemented). Their implementation activity has stepped up in the last few weeks so it looks like they are actively working on at least trial support. |
Well that's very encouraging! |
Any news on this? https://caniuse.com/?search=opfs Apparently OPFS is avaliable on most browsers now and one intended use case is actually as storage for sqlite-wasm databases in web workers |
Both IndexedDB and OPFS access handles can be used for persistent SQLite storage in the browser. At the moment it appears that neither is clearly better than the other for this purpose; it depends on your application requirements.
|
Oh, that reminds me. I just recently wanted to port something NodeJS-ish that used sync But it was to annoying to switch the entire codebase to be async-ified and breaking all the existing tests so i built i think you @rhashimoto would maybe find this interesting and perhaps useful to transform async code to sync more easily. (a bit off topic, but i wanted to share it...) |
Following this one |
This is (finally) a follow-up to my absurd-sql project I talked about here: #447 (comment)
These are the changes so far required to make it work. It's not a lot of changes, but there are several small things:
filename
to theDatabase
constructor which is a boolean specifying that you've passed in a filename, not a buffer. Open to a better API here.blockDeviceCharacteristics
which might improve performance characteristics. The bigger reason is to hook into the lock/unlock methods of the vfs and override them. Unfortunately, this requires some ugly code inapi.js
to map the internal sqlite file to a filename and then call into our FS to handle them.Normally, we could handle the
fcntl
system call at the FS layer. Unfortunately, right now emscripten doesn't provide a way to do that. If it did, we wouldn't need the last point. We might still want to overrideblockDeviceCharacteristics
, but that could be an optional stop to improve performance. Right now it's critical so we get locking.I've filed an issue with emscripten: emscripten-core/emscripten#15070. This PR could be simplified once we have that. Not sure if you want to wait on that to land this PR or now.
Anyway, I'm open to how you want to proceed. While absurd-sql is robust and ready for production (I'm using it in prod), the API and implementation here is somewhat proof of concept. Let me know what you think.