Skip to content

[Question] What does fluss need to be configured to support Minio's S3? #214

Answered by luoyuxia
biao-lvwan asked this question in Q&A
Discussion options

You must be logged in to vote

@biao-lvwan Thanks for reporting! You'll need to set in Fluss's to solve the excpetion as the doc said . But I have to remind you that when reading from s3, Fluss client requires to obtain STS token from S3 by the method: s3.regionserver.yaml ``

 AWSSecurityTokenService stsClient =
                AWSSecurityTokenServiceClientBuilder.standard()
                        .withRegion(region)
                        .withCredentials(
                                new AWSStaticCredentialsProvider(
                                        new BasicAWSCredentials(accessKey, secretKey)))
                        .build();

But unfortunately, it's not supported by Minio's s3....... So you may see…

Replies: 6 comments

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected by wuchong
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
question Further information is requested
2 participants
Converted from issue

This discussion was converted from issue #211 on December 17, 2024 13:25.