Description:
i use .aws/config file with the following content:
[profile backup]
output = json
region = us-west-2
s3 =
use_dualstack_endpoint = true
which works fine with awscli.
in mysql shell backup via:
util.dumpInstance("/mysql/sql1/2025-11-05", {threads: 8, compression: "zstd;level=15", s3Profile: "backup", s3BucketName: "myproject-backup"});
is not working, because the dualstack from config file is ignored.
Server setup is ipv6 only, i have to override endpoint to get it working:
util.dumpInstance("/mysql/sql1/2025-11-05", {threads: 8, compression: "zstd;level=15", s3Profile: "backup", s3BucketName: "myproject-backup", s3EndpointOverride: "https://myproject-backup.s3.dualstack.us-west-2.amazonaws.com"});
How to repeat:
see description
Description: i use .aws/config file with the following content: [profile backup] output = json region = us-west-2 s3 = use_dualstack_endpoint = true which works fine with awscli. in mysql shell backup via: util.dumpInstance("/mysql/sql1/2025-11-05", {threads: 8, compression: "zstd;level=15", s3Profile: "backup", s3BucketName: "myproject-backup"}); is not working, because the dualstack from config file is ignored. Server setup is ipv6 only, i have to override endpoint to get it working: util.dumpInstance("/mysql/sql1/2025-11-05", {threads: 8, compression: "zstd;level=15", s3Profile: "backup", s3BucketName: "myproject-backup", s3EndpointOverride: "https://myproject-backup.s3.dualstack.us-west-2.amazonaws.com"}); How to repeat: see description