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 Everyone! I Am Currently Using Clearml To Track My Datasets. At Each Run I Am Producing Some Datasets That Are Somehow "Heavy". As I Want To Track Any Diff Change Every Time, I Am Using The

Hi everyone!
I am currently using ClearML to track my Datasets. At each run I am producing some datasets that are somehow "heavy". As I want to track any diff change every time, I am using the parent_datasets parameter ( clearml.Dataset.create ) when creating my Dataset before uploading anything.
But with time, my workspace will eventually be full and I want to use a policy where I can clean up the old parents to free some spaces.
I have archived and deleted the old parents manually. But, it seems that when I try to upload my data and finalize my Dataset during a new run, ClearML is looking for all parents and try to find the first one which has been deleted, so an error is raised.

Does someone ever had something similar ?

Thanks a lot in advance if you have any suggestion 😄

  
  
Posted 7 days ago
Votes Newest

Answers 2


Hi @<1787653566505160704:profile|EnchantingOctopus35> , I don't think you can clean up parents without damaging the children since they rely on that. I would suggest taking any data you don't want scrubbed and then creating a new version with it. Then delete the unrelated older datasets. What do you think?

  
  
Posted 6 days ago

Hi John, thanks for your answer. Indeed, this is what I did. It forces me to develop some custom archiving process but it sounds acceptable for the moment 👍

  
  
Posted 6 days ago
60 Views
2 Answers
7 days ago
5 days ago
Tags