Upload a File in Chunks to an ObjectStore (REST API: POST)

You can upload a large file in multiple data chunks to the ObjectStore. Each chunk of data is sent as a separate request. Chunk uploads also have the ability to resume the operation if the upload gets interrupted.

For example, to upload a large file of size 50 MB, you can send the file data as 1 MB chunks in each upload request. After uploading 10 data chunks, if the upload operation gets interrupted, you can resume the upload from the 11th data chunk.

To upload a file in chunks, perform the following operations:

  1. Initiate an Upload Session to the ObjectStore

  2. Upload a File Data Chunk

    Repeat this operation until all the data chunks are uploaded to the ObjectStore.

Loading...