You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: go/flags/endtoend/vtbackup.txt
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -196,6 +196,7 @@ Flags:
196
196
--remote_operation_timeout duration time to wait for a remote operation (default 15s)
197
197
--restart_before_backup Perform a mysqld clean/full restart after applying binlogs, but before taking the backup. Only makes sense to work around xtrabackup bugs.
198
198
--s3_backup_aws_endpoint string endpoint of the S3 backend (region must be provided).
199
+
--s3_backup_aws_min_partsize int Minimum part size to use, defaults to 5MiB but can be increased due to the dataset size. (default 5242880)
199
200
--s3_backup_aws_region string AWS region to use. (default "us-east-1")
200
201
--s3_backup_aws_retries int AWS request retries. (default -1)
201
202
--s3_backup_force_path_style force the s3 path style.
Copy file name to clipboardExpand all lines: go/flags/endtoend/vttablet.txt
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -312,6 +312,7 @@ Flags:
312
312
--restore_from_backup_ts string (init restore parameter) if set, restore the latest backup taken at or before this timestamp. Example: '2021-04-29.133050'
313
313
--retain_online_ddl_tables duration How long should vttablet keep an old migrated table before purging it (default 24h0m0s)
314
314
--s3_backup_aws_endpoint string endpoint of the S3 backend (region must be provided).
315
+
--s3_backup_aws_min_partsize int Minimum part size to use, defaults to 5MiB but can be increased due to the dataset size. (default 5242880)
315
316
--s3_backup_aws_region string AWS region to use. (default "us-east-1")
316
317
--s3_backup_aws_retries int AWS request retries. (default -1)
317
318
--s3_backup_force_path_style force the s3 path style.
fs.BoolVar(&tlsSkipVerifyCert, "s3_backup_tls_skip_verify_cert", false, "skip the 'certificate is valid' check for SSL connections.")
96
108
fs.StringVar(&requiredLogLevel, "s3_backup_log_level", "LogOff", "determine the S3 loglevel to use from LogOff, LogDebug, LogDebugWithSigning, LogDebugWithHTTPBody, LogDebugWithRequestRetries, LogDebugWithRequestErrors.")
fs.Int64Var(&minPartSize, "s3_backup_aws_min_partsize", manager.MinUploadPartSize, "Minimum part size to use, defaults to 5MiB but can be increased due to the dataset size.")
98
111
}
99
112
100
113
funcinit() {
@@ -108,7 +121,22 @@ type logNameToLogLevel map[string]aws.ClientLogMode
0 commit comments