mirror of
https://github.com/minio/minio.git
synced 2024-12-24 22:25:54 -05:00
This commit is contained in:
parent
36639b65a9
commit
f41faf96b7
@ -256,13 +256,14 @@ func (xl xlObjects) ListMultipartUploads(bucket, prefix, keyMarker, uploadIDMark
|
|||||||
}
|
}
|
||||||
|
|
||||||
// newMultipartUpload - wrapper for initializing a new multipart
|
// newMultipartUpload - wrapper for initializing a new multipart
|
||||||
// request, returns back a unique upload id.
|
// request; returns a unique upload id.
|
||||||
//
|
//
|
||||||
// Internally this function creates 'uploads.json' associated for the
|
// Internally this function creates 'uploads.json' associated for the
|
||||||
// incoming object at '.minio.sys/multipart/bucket/object/uploads.json' on
|
// incoming object at
|
||||||
// all the disks. `uploads.json` carries metadata regarding on going
|
// '.minio.sys/multipart/bucket/object/uploads.json' on all the
|
||||||
// multipart operation on the object.
|
// disks. `uploads.json` carries metadata regarding on-going multipart
|
||||||
func (xl xlObjects) newMultipartUpload(bucket string, object string, meta map[string]string) (uploadID string, err error) {
|
// operation(s) on the object.
|
||||||
|
func (xl xlObjects) newMultipartUpload(bucket string, object string, meta map[string]string) (string, error) {
|
||||||
xlMeta := newXLMetaV1(object, xl.dataBlocks, xl.parityBlocks)
|
xlMeta := newXLMetaV1(object, xl.dataBlocks, xl.parityBlocks)
|
||||||
// If not set default to "application/octet-stream"
|
// If not set default to "application/octet-stream"
|
||||||
if meta["content-type"] == "" {
|
if meta["content-type"] == "" {
|
||||||
@ -285,24 +286,31 @@ func (xl xlObjects) newMultipartUpload(bucket string, object string, meta map[st
|
|||||||
nsMutex.Lock(minioMetaBucket, pathJoin(mpartMetaPrefix, bucket, object), opsID)
|
nsMutex.Lock(minioMetaBucket, pathJoin(mpartMetaPrefix, bucket, object), opsID)
|
||||||
defer nsMutex.Unlock(minioMetaBucket, pathJoin(mpartMetaPrefix, bucket, object), opsID)
|
defer nsMutex.Unlock(minioMetaBucket, pathJoin(mpartMetaPrefix, bucket, object), opsID)
|
||||||
|
|
||||||
uploadID = getUUID()
|
uploadID := getUUID()
|
||||||
initiated := time.Now().UTC()
|
|
||||||
// Create 'uploads.json'
|
|
||||||
if err = xl.writeUploadJSON(bucket, object, uploadID, initiated); err != nil {
|
|
||||||
return "", err
|
|
||||||
}
|
|
||||||
uploadIDPath := path.Join(mpartMetaPrefix, bucket, object, uploadID)
|
uploadIDPath := path.Join(mpartMetaPrefix, bucket, object, uploadID)
|
||||||
tempUploadIDPath := path.Join(tmpMetaPrefix, uploadID)
|
tempUploadIDPath := path.Join(tmpMetaPrefix, uploadID)
|
||||||
// Write updated `xl.json` to all disks.
|
// Write updated `xl.json` to all disks.
|
||||||
if err = writeSameXLMetadata(xl.storageDisks, minioMetaBucket, tempUploadIDPath, xlMeta, xl.writeQuorum, xl.readQuorum); err != nil {
|
if err := writeSameXLMetadata(xl.storageDisks, minioMetaBucket, tempUploadIDPath, xlMeta, xl.writeQuorum, xl.readQuorum); err != nil {
|
||||||
return "", toObjectErr(err, minioMetaBucket, tempUploadIDPath)
|
return "", toObjectErr(err, minioMetaBucket, tempUploadIDPath)
|
||||||
}
|
}
|
||||||
rErr := renameObject(xl.storageDisks, minioMetaBucket, tempUploadIDPath, minioMetaBucket, uploadIDPath, xl.writeQuorum)
|
// delete the tmp path later in case we fail to rename (ignore
|
||||||
if rErr == nil {
|
// returned errors) - this will be a no-op in case of a rename
|
||||||
// Return success.
|
// success.
|
||||||
return uploadID, nil
|
defer xl.deleteObject(minioMetaBucket, tempUploadIDPath)
|
||||||
|
|
||||||
|
// Attempt to rename temp upload object to actual upload path
|
||||||
|
// object
|
||||||
|
if rErr := renameObject(xl.storageDisks, minioMetaBucket, tempUploadIDPath, minioMetaBucket, uploadIDPath, xl.writeQuorum); rErr != nil {
|
||||||
|
return "", toObjectErr(rErr, minioMetaBucket, uploadIDPath)
|
||||||
}
|
}
|
||||||
return "", toObjectErr(rErr, minioMetaBucket, uploadIDPath)
|
|
||||||
|
initiated := time.Now().UTC()
|
||||||
|
// Create or update 'uploads.json'
|
||||||
|
if err := xl.writeUploadJSON(bucket, object, uploadID, initiated); err != nil {
|
||||||
|
return "", err
|
||||||
|
}
|
||||||
|
// Return success.
|
||||||
|
return uploadID, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// NewMultipartUpload - initialize a new multipart upload, returns a
|
// NewMultipartUpload - initialize a new multipart upload, returns a
|
||||||
|
Loading…
Reference in New Issue
Block a user