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! Does The Sdk Have Default Timeout, In Case Endpoint Is Not Available Or Credentials Are Not Valid? Getting This Warning Messages, Sdk Fails To Communicate With The Clearml Server And Script Hangs, While Setting Up Client:

Hey!

does the SDK have default timeout, in case endpoint is not available or credentials are not valid?
getting this warning messages, SDK fails to communicate with the clearml server and script hangs, while setting up client:

from clearml.backend_api.session.client import APIClient
client = APIClient()

warning msg:

2025-08-19 10:54:31,269 - WARNING - Retrying (Retry(total=235, connect=235, read=240, redirect=240, status=240)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x11ad576b0>: Failed to establish a new connection: [Errno 61] Connection refused')': /auth.login

I tried couple of ways to set this using urllib3 flags, with no luck

any ideas?

  
  
Posted 12 days ago
Votes Newest

Answers 2


Hi @<1523701842515595264:profile|PleasantOwl46> , is it possible there is some issue with the network?

  
  
Posted 12 days ago

hey @<1523701070390366208:profile|CostlyOstrich36>
there are no issues, I had simulated one in order to see how my automation behaves when ClearML is down

I'm looking to see how to make sure my code behaves nicely in case ClearML is down
so I'm looking for why it does not times out gracefully, when for some reason ClearML server is unreachable (network issues or invalid credentials)

  
  
Posted 12 days ago
352 Views
2 Answers
12 days ago
11 days ago
Tags