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
Can I Use

Can I use automation.TriggerScheduler() with add_task_trigger to trigger when a task is archived? I know that when a task is archived it gets "system_tags": ["archived"] but I believe that the trigger_on_tags work only on "tags" and not "system_tags"

  
  
Posted one year ago
Votes Newest

Answers 10


Sure thing 😁

  
  
Posted one year ago

Thank you! 😍

  
  
Posted one year ago

That would match what

add_dataset_trigger

and

add_model_trigger

already have so it would be good

Sounds good, any chance you can open a github issue, so that we do not forget?

Another parameter for when the task is deleted might also be useful

That actually might be more complicated, because there might be a race condition, basically missing the delete operation...
What would be the use case?

  
  
Posted one year ago

Another parameter for when the task is deleted might also be useful

  
  
Posted one year ago

That would match what add_dataset_trigger and add_model_trigger already have so it would be good

  
  
Posted one year ago

Hmm that is a good idea, and I think you are correct, it cannot support it. But it will be easy to do, maybe adding an argument trigger_on_archive ? wdyt?

  
  
Posted one year ago

Hi AgitatedDove14 yes exactly

  
  
Posted one year ago

Hi DangerousDragonfly8
You mean you want to trigger something when users archive a Task ?

  
  
Posted one year ago

The alternative I can think of is to implement a clearml Monitor

  
  
Posted one year ago
749 Views
10 Answers
one year ago
one year ago
Tags