Cleanup stale multipart uploads older than 3 days (#7424)

Fixes #6627
This commit is contained in:
Harshavardhana 2019-03-25 13:41:05 -07:00 committed by kannappanr
parent 7154b8a568
commit 0250f7de67
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ const (
globalMaxSkewTime = 15 * time.Minute // 15 minutes skew allowed. globalMaxSkewTime = 15 * time.Minute // 15 minutes skew allowed.
// GlobalMultipartExpiry - Expiry duration after which the multipart uploads are deemed stale. // GlobalMultipartExpiry - Expiry duration after which the multipart uploads are deemed stale.
GlobalMultipartExpiry = time.Hour * 24 * 14 // 2 weeks. GlobalMultipartExpiry = time.Hour * 24 * 3 // 3 days.
// GlobalMultipartCleanupInterval - Cleanup interval when the stale multipart cleanup is initiated. // GlobalMultipartCleanupInterval - Cleanup interval when the stale multipart cleanup is initiated.
GlobalMultipartCleanupInterval = time.Hour * 24 // 24 hrs. GlobalMultipartCleanupInterval = time.Hour * 24 // 24 hrs.