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 Hide Certain Configuration Paramters? We Want To Login To Db To Fetch Data, For Task Run. But We Don'T Want The Db Connection Details To Be Logged Into Clearml, Is There A Way To Hide It?

Hey,
Is there a way to hide certain configuration paramters?
We want to login to db to fetch data, for task run.
But we don't want the db connection details to be logged into clearml, is there a way to hide it?

  
  
Posted 9 months ago
Votes Newest

Answers 6


ok, thank you!

  
  
Posted 9 months ago

Hi @<1544853695869489152:profile|NonchalantOx99> , do you mean config parameters on the task itself?

  
  
Posted 9 months ago

I'm not sure it's possible to hide via the Task object. But I think such configurations should be saved as env variables or in clearml.conf

Can you please be more specific on the use case?

  
  
Posted 9 months ago

yeah

  
  
Posted 9 months ago

I think in that case you should be using environment variables that are set on the machine and then access them via the task

  
  
Posted 9 months ago

how do i access the clearnl.conf custom variables then?
or - how do i configure and access env variables that way?

the use case is simple:
i wanna fetch data from an sql table, inside a task.
so i want to execcute a query, and then do some operations on it, from within a task, to do that i have to connect to the db,
and i don't want the connection details to be logged

  
  
Posted 9 months ago