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
ThickCrow29
Moderator
7 Questions, 27 Answers
  Active since 10 January 2023
  Last activity 2 months ago

Reputation

0

Badges 1

27 × Eureka!
0 Votes
5 Answers
578 Views
0 Votes 5 Answers 578 Views
2 years ago
0 Votes
2 Answers
481 Views
0 Votes 2 Answers 481 Views
9 months ago
0 Votes
3 Answers
460 Views
0 Votes 3 Answers 460 Views
7 months ago
0 Votes
5 Answers
325 Views
0 Votes 5 Answers 325 Views
gcp
4 months ago
0 Votes
12 Answers
250 Views
0 Votes 12 Answers 250 Views
Hi I have an issue with the clearml-agent in docker mode. I am trying to mount additional stuff in the container via sur default via the agent.default_docker...
4 months ago
0 Votes
22 Answers
250 Views
0 Votes 22 Answers 250 Views
Hi - quick question. I am using the PipelineController with abort_on_failure set to False. I have a pipe with a first task that branch out in 3 branches. - I...
4 months ago
0 Votes
2 Answers
132 Views
0 Votes 2 Answers 132 Views
Hi, I am surprised by the behavior of clearml-agent daemon --stop which stop the worker fine - but also flag ongoing Task as Completed instead of Aborted or ...
2 months ago
0 Hi - Quick Question. I Am Using The Pipelinecontroller With Abort_On_Failure Set To False. I Have A Pipe With A First Task That Branch Out In 3 Branches.

Ok - good to know this is odd ๐Ÿ™‚
Itโ€™s created like this (I remove some bits for readability)

def _run(pipeline_id, step):
    from pipeline_broker import pipeline

    pipeline.run_step(pipeline_id=pipeline_id, step=step)


def launch(
    cfg,
    queue: str = "default",
    abort_on_failure: bool = False,
    project: str = "TrainingPipeline",
    start_locally: bool = False,
    task_regex: str = ".*",
):
    ...

    pipe = PipelineController(
        project=project,
        name...
4 months ago
0 Hi - Quick Question. I Am Using The Pipelinecontroller With Abort_On_Failure Set To False. I Have A Pipe With A First Task That Branch Out In 3 Branches.

Yes, I agree, it should be considered as failed and the PipelineController should not trigger the following task which depends on the first one. My problem is that itโ€™s not the behavior I observe, the second task still get scheduled for execution. Is there a way to specify that to the PipelineController logic ?

4 months ago
0 Hi - Quick Question. I Am Using The Pipelinecontroller With Abort_On_Failure Set To False. I Have A Pipe With A First Task That Branch Out In 3 Branches.

So I can confirm I have the same behavior with this minomal example

#!/usr/bin/env python3
import fire
from typing import Optional
import time
from clearml import PipelineController
def step_one(a=1):
    print("Step 1")
    time.sleep(120)
    return True
def step_two(a=1):
    print("Step 2")
    time.sleep(120)
    return True
def launch():
    pipe = PipelineController(
        project="TEST",
        name="Pipeline demo",
        version="1.1",
        add_pipeline_tags=False,
   ...
4 months ago
0 Hi - Quick Question. I Am Using The Pipelinecontroller With Abort_On_Failure Set To False. I Have A Pipe With A First Task That Branch Out In 3 Branches.

And same behavior if I make the dependance explicty via the retunr of the first one

#!/usr/bin/env python3
import fire
from typing import Optional
import time
from clearml import PipelineController
def step_one(a=1):
    import time
    print("Step 1")
    time.sleep(120)
    return True
def step_two(a=1):
    import time
    print("Step 2")
    time.sleep(120)
    return True
def launch(
    tenant: str = "demo",
    loc_id: str = "common",
    tag: str = "test",
    pipeline_id: Optio...
4 months ago
0 Hi, I Am Surprised By The Behavior Of

I also created an issue in the repo directly. Thx for your help.

2 months ago
0 Hi - Quick Question. I Am Using The Pipelinecontroller With Abort_On_Failure Set To False. I Have A Pipe With A First Task That Branch Out In 3 Branches.
  • Itโ€™s a pipeline from Tasks.
  • clearml==1.13.2
  • For instance, in this pipeline, if the first task failed - then the remaining task are not schedule for execution which is what I expect. I am just surprised that if the first task is aborted instead by the user, the following task is still schedule for execution (and will fail cause itโ€™s dependant on the first one to complete).
    image
4 months ago
0 Hi - Quick Question. I Am Using The Pipelinecontroller With Abort_On_Failure Set To False. I Have A Pipe With A First Task That Branch Out In 3 Branches.

Hey, finally got to try it, sorry about the delay.
However, I tried on 1.14.1 but i still get the same behavior

3 months ago
0 Hi I Have An Issue With The Clearml-Agent In Docker Mode. I Am Trying To Mount Additional Stuff In The Container Via Sur Default Via The Agent.Default_Docker.Arguments - Namely The Docker Socket. I See
root@clement-controller-1:~# head clearml.conf
agent {
default_docker {
arguments: ["-v","/var/run/docker.sock:/var/run/docker.sock"]
}}
4 months ago
4 months ago