I was trying to set up a file uploader to OCI Object Storage, it is working fine so far, but I am not able to tell the current progress of a upload.
My function looks like this:
uploadObjectStorage := func(filePath, fileName string) {
file, err := os.Open(filePath)
if err != nil {
panic("Could not open file for read")
}
ociUploadRequest := transfer.UploadRequest{
NamespaceName: oci_namespace,
BucketName: oci_bucketname,
ObjectName: common.String(fileName),
RequestMetadata: common.RequestMetadata{
RetryPolicy: &oci_retry,
},
}
req := transfer.UploadStreamRequest{
UploadRequest: ociUploadRequest,
StreamReader: file,
}
_, err = transfer.NewUploadManager().UploadStream(context.Background(), req)
if err != nil {
panic(err)
}
}
There is a type called transfer.UploadCallBack "that gets invoked after a Part is successuly uploaded", however I didn't manage to make it work.
- Go version go1.21.1
- windows/amd64
- oci-go-sdk version v65.49.1
I couldn't do it with
transfer.UploadCallBack
, but after some searching I found an example of how to track a download progress and it works for uploads too!Here is how I did it:
First create a struct to keep track of the current progress and the total file size, and a function to print the current percentage
After opening a file, pass the total file size to the struct
Then use
io.TeeReader
onStreamReader
field oftransfer.UploadStreamRequest