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
Hi Community, We Are Having An Issue Connecting Our

Hi Community,
We are having an issue connecting our clearml server via code
When I connect via a web browser - there is no problem . When trying to connect via codefrom clearml import Task Task.init(project_name='test_project', task_name='test_experiment')A user (running Windows) is getting the following error

Retrying (Retry(total=239, connect=239, read=240, redirect=240, status=240)) after connection broken by 'ConnectTimeoutError(<urllib3.connection.HTTPSConnection object at 0x000001ED67B1F700>, 'Connection to app-clearml.XXXX.me timed out. (connect timeout=3.0)')': /auth.login

We have tried to increase the time out with
from clearml.backend_api import Session Session._session_initial_timeout = (15., 30.)But I'm still getting the same error.

Any suggestions would be greatly appreciated

  
  
Posted 2 years ago
Votes Newest

Answers 2


Do you have a custom certificate for SSL by chance? If this is the case please see the following:
https://github.com/allegroai/clearml/issues/7
The solution would be changing the following to false:
https://github.com/allegroai/clearml/blob/9624f2c715df933ff17ed5ae9bf3c0a0b5fd5a0e/docs/clearml.conf#L16

  
  
Posted 2 years ago

Hi CostlyOstrich36 ,
After verifying - I can confirm that there is no custom certificate .
any other ideas?

  
  
Posted 2 years ago