CREATE REPOSITORY创建minio快照仓库失败

【StarRocks版本】 2.5.22
【集群规模】3fe+3be(fe与be混部)

mysql> CREATE READ ONLY REPOSITORY sr_snapshot_bucket_2
    ->  WITH BROKER
    ->  ON LOCATION "s3a://sr-snapshot-bucket/backup"
    ->  PROPERTIES(
    ->      "aws.s3.enable_ssl"="false",
    ->      "aws.s3.access_key" = "admin",
    ->      "aws.s3.secret_key" = "3E2QFtQoCwKNGpxe",
    ->      "aws.s3.endpoint" = "10.252.128.1:8800"
    ->  );
ERROR 1064 (HY000): Unexpected exception: Failed to create repository: write exception: could not open file s3a://sr-snapshot-bucket/backup/__starrocks_repository_sr_snapshot_bucket_2/__repo_info
mysql> CREATE REPOSITORY sr_snapshot_bucket_2
    -> WITH BROKER
    -> ON LOCATION "s3a://sr-snapshot-bucket/backup"
    -> PROPERTIES(
    ->     "aws.s3.enable_ssl"="false",
    ->     "aws.s3.access_key" = "admin",
    ->     "aws.s3.secret_key" = "3E2QFtQoCwKNGpxe",
    ->     "aws.s3.endpoint" = "10.252.128.1:8800"
    -> );
ERROR 1064 (HY000): Unexpected exception: Failed to create repository: write exception: could not open file s3a://sr-snapshot-bucket/backup/__starrocks_repository_sr_snapshot_bucket_2/__repo_info

minio的桶目录已存在,为什么会失败?

有大佬帮忙看下不?