Uploading Files to Object Storage using Multipart in VBCS
Object Storage has become a go to alternative to store large amounts of data, hence uploading huge chunks of file has become a common requirement in Cloud. Anyone who has tried to upload a huge file to server knows the drawbacks and shortcomings of such approach, this is where the MultiPart Upload approach comes in handy. Below I try to explain the steps to achieve the same MultiPart upload to Object Storage is done in 3 phases Phase 1: Create a multi part upload request Phase 2: Upload Parts Phase 3: Commit Upload Note: Before you start building the VBCS application, make sure your object storage instance is setup and you have the bucket name for the same Let’s start into building the VBCS application 1. Build a VBCS application and drag and drop a File upload component to the same 2. Set up below properties for File Picker component a. Selection Mode : Single 3. ...