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! I Have A Freshly Deployed Clearml Instance. In The Docs I Found A Phrase

Hi! I have a freshly deployed ClearML instance. In the docs I found a phrase

By default, the File Server is not secured even if

has been configured. Using an

that has built-in security is recommended.

So I deployed a MinIO service to handle files securely and I disabled fileserver. One of my teammates noticed that this short snippet isn’t working, because it is trying to send a debug-sample to fileserver!

from clearml import Task 
task = Task.init(project_name="test", task_name="test", output_uri="
")     
task.get_logger().report_image(title="cat", series="cat2", local_path="cat.jpg", iteration=0) 

Is it possible to skip fileserver completely without loosing any of the clear-ml features? Or do I need to have a fileserver running even if nearly all artifacts are stored on MinIO?

  
  
Posted one year ago
Votes Newest

Answers 2


Hi @<1547390415320125440:profile|SilkySparrow85>

because it is trying to send a debug-sample to fileserver!

Yes, you should always configure the "files server" to point to your minio S3, basically:
None

files_server: "
"

But do not forget to also configure the credentials here:
None

  
  
Posted one year ago

Thanks, it seems to work now!

  
  
Posted one year ago
462 Views
2 Answers
one year ago
one year ago
Tags