-
-
Notifications
You must be signed in to change notification settings - Fork 594
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
Parse.File Terminates when Encoding/Decoding Large Media File(s) with URI Constructor #2170
Comments
Thanks for opening this issue!
|
Does this error occur when you only init Parse.File, or when you actually save it? If you save the Parse.File, then it has to be downloaded from the external storage to store it in the Parse Server's storage provider, right? I classified this as a bug, but I'm not sure it is one at this point. If the file is ~very large, then this may be a resource limitation and there may be other ways (multi-part, streaming) to handle this. |
Thanks for the quick reply. This only occurs when you initialize a |
You want to save a Parse File with an external URL, without actually storing the file data in the Parse Server's storage? In other words, the file would point to an external storage that is not managed by Parse Server via a storage adapter, right? I don't think this is currently supported, because it would pose several questions, e.g. what happens if I'm not sure this should even be supported. Parse File is an object for storage managed by Parse Server. If you don't want Parse Server to manage the storage, then just store the URL as a string in a normal Parse Object. |
I already store the URL in an afterSave trigger request by retrieving the url() property of a Parse.File — it's just that one might still want to use What I'm alluding to is extending the For example, if you've got a mobile application that's handling large/small media files, the smaller ones could be sent to a cloud code function; the larger ones are written to GC or S3 then sent back to a cloud code function to save the URL as an attribute. |
To summarize: you create a Parse.File (for example from JSON) that points to a file that already exists in the Parse Server managed storage, and then save the Parse.File as property of a Parse.Object. And you observe that Parse Server downloads the whole file when saving the Parse.Object, but you want to avoid that. Is that it? I agree that Parse Server downloading the whole file is quite an expensive operation and somewhat unexpected. I assume it's to determine the MIME type. Did you take a look at the code to see why it's downloading? |
New Issue Checklist
Issue Description
For applications handling large media data, performing either chunked uploads or directly writing to an independent 3rd party storage provider via the client is advised. For the latter, assuming one's correctly retrieved the remote url of the uploaded media file, documentation implies it's possible to construct a new
Parse.File
object with the following:which can then be set on a
Parse.Object
. However,Parse.File
seems to automatically attempt to encode the data and terminates ParseServer withRangeError: Invalid string length
.Steps to reproduce
new Parse.File(fileName, {uri:
remoteURLToLargeMediaFile})
Parse.File
and set toParse.Object
Actual Outcome
ParseServer terminates with the following error:
Expected Outcome
Ideally, we should extend
Parse.File
to simply be initialized without attempting to encode/decode the data specified by the uri. For now, I've managed to define the file property of aParse.Object
with the following:Not sure if there's some further configuration one can do within the files adapter, but either way, I thought this was an issue to raise when handling memory allocation with large media data...
Server
7.0.0
MacOS
LocalHost/Google Cloud
Database
Postgres
16.3
Postgres
Client
5.1.0
The text was updated successfully, but these errors were encountered: