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 Everybody! I Am Currently Having Trouble With Clearml Remote Agents Not Getting The Latest Version From My Git Repo. I'M Running My Pipeline Controller Locally, From Inside The Repo, And Clearml Seems To Detect This Correctly. When The Steps Run, Th

Hi everybody!

I am currently having trouble with ClearML remote agents not getting the latest version from my git repo. I'm running my pipeline controller locally, from inside the repo, and ClearML seems to detect this correctly. When the steps run, they pull from the repo, but unfortunately, they don't get the HEAD revision, they get old code from 3-4 revisions ago.

Why is this happening? Do I need to call Task.set_repo() for this to work properly?

  
  
Posted one day ago
Votes Newest

Answers


Aha, it looks like the pipeline steps remember what the current git revision was when they last ran, so the cloned steps get that rev. That kind of makes sense, but it's also annoying.

Is there any way to tell pipeline steps to get the latest HEAD revision from the repo when they run?

  
  
Posted one day ago