Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escaping: Escape characters +-&|!(){}[]^"~*?:\ with \, e.g. \+
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Answered
Hello! Is It Possible To Use Different Credentials For Different S3 Buckets On Different Hosts? When I Try To Do Like So:

Hello! Is it possible to use different credentials for different s3 buckets on different hosts?

When I try to do like so:

s3 {
            region: "us-east-2"
            key: "***"
            secret: "***"

            credentials: [
                {
                    host: "my_own_minio_s3_api_host:port"
                    secret: "***"
                    key: "***"
                    bucket: "specific-bucket"
                    secure: false
                }
            ]
        }

I got this error:
Could not list/find remote file(s) when adding None

But it all works good for the "general" creds.

  
  
Posted one month ago
Votes Newest

Answers


nvm, just saw it has to have a different signature for aws/non-aws addresses
image

  
  
Posted one month ago