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
Is There A Quicker Way To Abort All Running Experiments In A Project? I Have Over A Thousand Running Anonymous Data Tasks In A Specific Project And I Want To Abort Them Before Debugging Them.

Is there a quicker way to abort all running experiments in a project? I have over a thousand running anonymous data tasks in a specific project and I want to abort them before debugging them.

  
  
Posted 2 years ago
Votes Newest

Answers 12


In the case of api call,

given that i have id of the task I want to stop, I would make a post request to [CLEARML_SERVER_URL]:8080/tasks.stop

with the request body set up like the one mentioned in the api?

  
  
Posted 2 years ago

Is there a code example for this.

I was going through the python api and the closest thing that resembled to my use case was task.close() however it didn't do anything.

  
  
Posted 2 years ago

Is there a quicker way to abort all running experiments in a project? I have over a thousand running anonymous data tasks in a specific project and I want to abort them before debugging them.

We are adding "select" all in the next UI version to do that as quickly as possible 🙂

  
  
Posted 2 years ago

Even though I ended my schedulers and triggers, the anonymous tasks keep increasing.

  
  
Posted 2 years ago

I have a lot of anonymous tasks running which I would like to close immediately.

  
  
Posted 2 years ago

As of yet, I can only select ones that are visible and to select more, i'll have to click on view more, which gets extremely slow.

  
  
Posted 2 years ago

Can you give me an example url for the api call to stop_many?

  
  
Posted 2 years ago

Can you please share the endpoint link?

  
  
Posted 2 years ago

VexedCat68 , you can iterate through all 'running' tasks in a project and abort them through the api. The endpoint is tasks.stop

  
  
Posted 2 years ago
523 Views
12 Answers
2 years ago
one year ago
Tags