backups: add S3 part size configuration (#4382)
This commit is contained in:
parent
68e9100e57
commit
1ca4b08b48
2 changed files with 34 additions and 3 deletions
|
@ -12,6 +12,11 @@ return [
|
|||
// uses to upload backups to S3 storage. Value is in minutes, so this would default to an hour.
|
||||
'presigned_url_lifespan' => env('BACKUP_PRESIGNED_URL_LIFESPAN', 60),
|
||||
|
||||
// This value defines the maximal size of a single part for the S3 multipart upload during backups
|
||||
// The maximal part size must be given in bytes. The default value is 5GB.
|
||||
// Note that 5GB is the maximum for a single part when using AWS S3.
|
||||
'max_part_size' => env('BACKUP_MAX_PART_SIZE', 5 * 1024 * 1024 * 1024),
|
||||
|
||||
// The time to wait before automatically failing a backup, time is in minutes and defaults
|
||||
// to 6 hours. To disable this feature, set the value to `0`.
|
||||
'prune_age' => env('BACKUP_PRUNE_AGE', 360),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue