-
Notifications
You must be signed in to change notification settings - Fork 42
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
fetch sqlite databases from object storage #2643
Comments
as I was thinking about this, we might be fine to not have a size limit here: we don't have a size limit for any other kind of file, and say, JSON (non-new-line) and excel would all run into size limits in the same way (parquet and csv and ndjson and bson can all be streamed), so we might as well just download whatever now and solve the limited space issue separately. |
Beyond just being able to hit this in object storage from one of the major cloud providers, it would be nice to access this anywhere it's available, e.g. GitHub:
|
I think it makes sense to just use tempfiles tied to the lifetime of the SQLite Access object: if we get something that isn't a pathbuf, download it, write it to the tempfile and then go from there as "normal." Need to take extra care to avoid writing to these temporary databases. If/when we add support for |
How would that interact with the |
We'd have to prevent inserts in these cases |
Description
#2568 (comment)
The text was updated successfully, but these errors were encountered: