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
Please Tell Me, Is It Possible To Do Something So That You Can Indicate Some Other S3 Sources, Host And Providers Other Than

please tell me, is it possible to do something so that you can indicate some other s3 sources, host and providers other than s3.amazonaws.com ?

so as not to be hard-coded

upd2: what the hell , why are you confusing the host with the bucket,?
And this is with a URL starting with s3://

upd: None

def _get_fixed_url(url: Optional[str]) -> Optional[str]:
        if not (url and url.lower().startswith("s3://")):
            return url
        try:
            fixed = furl(url)
            fixed.scheme = "https"
            fixed.host += ".s3.amazonaws.com"
            return fixed.url
        except Exception as ex:
            print(f"Failed processing link {url}. " + str(ex))
            return url
  
  
Posted 2 months ago
Votes Newest

Answers 4


basket name all ok?
image

  
  
Posted 2 months ago

@<1523701070390366208:profile|CostlyOstrich36> @<1523701205467926528:profile|AgitatedDove14> maybe there is already a fix in some version?

  
  
Posted 2 months ago

Is that what the thing was called a bucket?

  
  
Posted 2 months ago

@<1523702932069945344:profile|CheerfulGorilla72> use the following bucket name when you are configuring your files/output uri

s3://<iphere>:<porthere>/<bucket_here>

From there everything should work as expected

  
  
Posted 2 months ago
127 Views
4 Answers
2 months ago
2 months ago
Tags