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
Profile picture
TritePigeon86
Moderator
7 Questions, 10 Answers
  Active since 27 November 2023
  Last activity one month ago

Reputation

0

Badges 1

9 × Eureka!
0 Votes
5 Answers
293 Views
0 Votes 5 Answers 293 Views
4 months ago
0 Votes
1 Answers
171 Views
0 Votes 1 Answers 171 Views
Hi all, I have a pipeline step that does a shutil.copytree and I would like the progress to be shown on the task. is there a way, since shutil copytree has n...
2 months ago
0 Votes
5 Answers
116 Views
0 Votes 5 Answers 116 Views
is there an external way to access PipelineController._relaunch_node(node) ?
one month ago
0 Votes
3 Answers
152 Views
0 Votes 3 Answers 152 Views
one month ago
0 Votes
5 Answers
303 Views
0 Votes 5 Answers 303 Views
Hi. is there a way to pass multiple pre/post execution callbacks for a step?
5 months ago
0 Votes
3 Answers
221 Views
0 Votes 3 Answers 221 Views
Hi, I have an AWS Autoscaler based on the sample autoscaler example posted in clearml git. my instances need random external ip on init. is there a way to ed...
4 months ago
0 Votes
1 Answers
144 Views
0 Votes 1 Answers 144 Views
2 months ago
0 Hi. Is There A Way To Pass Multiple Pre/Post Execution Callbacks For A Step?

I have multiple combinations of functions I want to call (some steps need some of them while others need all of them, and some need non of them). writing a "do_x_than_y" function for every combination of x_y functions seems messy. wrapping it with support for iterable of functions seems more pythonic IMO.

5 months ago
0 Hi All, I'M Having A Problem Where Theclearml Venv Does Not Get The Pythonpath From Local Machine. This Led To A Very Ugly And Non-Pythonic Temporal Fix Using Sys.Path.Append In Imports. How Do I Make Sure The Clearml Venv Gets The Correct Pythonpath On C

Hi @<1523702000586330112:profile|FierceHamster54> , @<1523701087100473344:profile|SuccessfulKoala55> and @<1523701070390366208:profile|CostlyOstrich36> ,

I have a machine (for simplicity, let's say just one machine with ubuntu) with multiple repositories of my own packages (let's call them my-util and my-service), python and clearml. path to my-util is defined in the system PYTHONPATH. my-service is importing utils from-my-util.
On the same machine, running a code from my-service using ...

4 months ago
0 Is There An External Way To Access Pipelinecontroller._Relaunch_Node(Node) ?

@<1523701070390366208:profile|CostlyOstrich36> I want the task to be queued and the pipeline to act like it's just a queued task and not fail

one month ago
0 Is There An External Way To Access Pipelinecontroller._Relaunch_Node(Node) ?

maybe relaunch is not the proper solution, but I'm not sure what is, so I'm open to suggestions

one month ago
0 Is There An External Way To Access Pipelinecontroller._Relaunch_Node(Node) ?

this is a protected property and therefore should not be called from outside (meaning it's not good practice to do my_pipeline_controller._relaunch_node(failed_node)

I want to create a status_change_callback that checks if node failed due to connection loss, and if so re-adds the task to the queue

my current code looks like this:

def retry_on_connection_error(pipeline: PipelineController, node: PipelineController.Node, *_, **__) -> None:
    if not (node.job is None):
        is_stopp...
one month ago
0 Is It Normal That (Idle) Workers That Are Spun By The Aws Autoscaler Are Not Shut Down When The Autoscaler Is Stopped? I'M Experiencing This Issue A Lot And Wondered Maybe That'S The Desired Behavior?

if I have to guess, it is. after all, the Autoscaler is not up, so it can't shut them down. this means you're waiting for amazon to take them away instead.

one month ago
0 Hi, I Have A Pipeline With Steps Currently Running On-Prem. I Want To Use Autoscaler With Spot Instances To Replace The On-Prem Machine. My Question Regards Identifying A Task Failure Due To Instance Being Terminated Mid-Task. Is There A Way To Differenti

@<1523701087100473344:profile|SuccessfulKoala55> great! So that means It is possible to catch tasks with status aborted and reason non-responsive and retry them so they will come back to queue? also, how do I change the timeout in clearml server?

one month ago