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
11 Questions, 17 Answers
  Active since 27 November 2023
  Last activity 5 months ago

Reputation

0

Badges 1

16 × Eureka!
0 Votes
6 Answers
420 Views
0 Votes 6 Answers 420 Views
5 months ago
0 Votes
3 Answers
588 Views
0 Votes 3 Answers 588 Views
8 months ago
0 Votes
3 Answers
450 Views
0 Votes 3 Answers 450 Views
Hi, my server is on version 1.11, and yesterday a few of my runs (with agent 1.5.1) failed on TypeError: PipelineController.add_step() got an unexpected keyw...
5 months ago
0 Votes
1 Answers
645 Views
0 Votes 1 Answers 645 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...
9 months ago
0 Votes
6 Answers
410 Views
0 Votes 6 Answers 410 Views
I'm trying to read the runtimes of tasks after the pipeline finished, for analytics. currently, I'm doing something like this: def collect_task_data(pipe: Pi...
5 months ago
0 Votes
3 Answers
600 Views
0 Votes 3 Answers 600 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...
10 months ago
0 Votes
1 Answers
606 Views
0 Votes 1 Answers 606 Views
8 months ago
0 Votes
5 Answers
529 Views
0 Votes 5 Answers 529 Views
is there an external way to access PipelineController._relaunch_node(node) ?
8 months ago
0 Votes
5 Answers
731 Views
0 Votes 5 Answers 731 Views
Hi. is there a way to pass multiple pre/post execution callbacks for a step?
11 months ago
0 Votes
5 Answers
722 Views
0 Votes 5 Answers 722 Views
11 months ago
0 Votes
1 Answers
472 Views
0 Votes 1 Answers 472 Views
4 months ago
5 months ago
5 months ago
0 I'M Trying To Read The Runtimes Of Tasks After The Pipeline Finished, For Analytics. Currently, I'M Doing Something Like This:

the last two were found by debugging, but active_duration (which i'm using) is in tha api and derived by them

5 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.

11 months ago
0 Hi, My Server Is On Version 1.11, And Yesterday A Few Of My Runs (With Agent 1.5.1) Failed On

Hi, Johan, clearml sdk used in the task is on 1.11.1, is clearml doing something behind the scenes you feel like sharing?

5 months ago
0 Hi All, I Have A Question Regarding Multiple Parents: I Have A Pipe That Runs On Multiple Datasets, And The Last Step Does Something On The Bulk Of Those Sets (The Thing Itself Is Not Important). Sometimes One Of The Parents Fails Or Skipped Due To A Prev

Lets say I have 2 datasets, each runs steps A-C, with continue_on_fail=True. after, I have a sted D that does something at the end of pipeline. D should run if step C1 and C2 (C for set 1 and C for step 2) completed, failed, skipped or aborted (as long as none of them is still in queue or running)

5 months 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...
8 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

8 months 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

8 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 ...

11 months 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?

8 months 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.

7 months ago