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
When a file is drag-and-dropped to SPARQLgraph for uploading, it reads the whole thing into memory instead of streaming it.
This precludes large imports.
Also precludes using dropping zip files with manifests (which are usually big).
see uploadtab.js function onDropData() which is bound to the dropZones.
It seems like we ought to be able to use FormData something like stackoverflow example to stream a multipart file.
The text was updated successfully, but these errors were encountered:
When a file is drag-and-dropped to SPARQLgraph for uploading, it reads the whole thing into memory instead of streaming it.
This precludes large imports.
Also precludes using dropping zip files with manifests (which are usually big).
see uploadtab.js function onDropData() which is bound to the dropZones.
It seems like we ought to be able to use FormData something like stackoverflow example to stream a multipart file.
The text was updated successfully, but these errors were encountered: