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
Hey, Is There A Way To Disable Going To The Demo Server

Hey, is there a way to disable going to the demo server not from the env variable? from code or something.

  
  
Posted 3 years ago
Votes Newest

Answers 6


SharpDove45 FYI:
if you set the environment variable CLEARML_NO_DEFAULT_SERVER=1 , it will make sure never to default to the demo server

  
  
Posted 3 years ago

Yea, i tried CLEARML_NO_DEFAULT_SERVER=True and it didn’t work, i assumed it had something to do with my env setup which is a bit problematic, anyhow, assuming True is a valid value, i can see. what FrothyDog40 suggested about how it fails on bad/missing credentials 🙂

  
  
Posted 3 years ago

If the credentials don't provide access, the calls should fail (there's no fallback - just default values in place of empty configuration).
Notice you explicitly configure all hosts values, so you don't end up using a specific server for API access, and the default demo server for File server access...

  
  
Posted 3 years ago

I know, but if there’s an issue with the provided credentials, will it default to the demo server?

  
  
Posted 3 years ago

Hi SharpDove45

what 

 suggested about how it fails on bad/missing credentials

Yes, this is correct, since you specifically set the hosts worst case you will end up with wrong credentials 🙂

  
  
Posted 3 years ago