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
EmbarrassedBlackbird33
Moderator
3 Questions, 6 Answers
  Active since 02 March 2023
  Last activity 4 months ago

Reputation

0

Badges 1

6 × Eureka!
0 Votes
2 Answers
502 Views
0 Votes 2 Answers 502 Views
Hey team, I had a question about executing the pipelines using clearml agent setup in K8s. When we define a pipeline script to be executing remotely and subm...
4 months ago
0 Votes
3 Answers
392 Views
0 Votes 3 Answers 392 Views
Hey team, I have a bug that I created in github None and wondering if anyone faced it and has any input for it
5 months ago
0 Votes
2 Answers
1K Views
0 Votes 2 Answers 1K Views
2 years ago
0 Hey Team, I Had A Question About Executing The Pipelines Using Clearml Agent Setup In K8S. When We Define A Pipeline Script To Be Executing Remotely And Submit It To The Queue For Execution We See Following Things Happening

From what we have seen, In order to submit the pipeline to ClearML.
Clearml processes the pipeline script locally and submits it to the queue. What happens locally is that is creates a controller task (task that orchestrates the pipeline I guess) and records the arguments of the script that needs to execute as part of this task i.e the pipeline script

Now once it is submitted to the queue, a new worker pod is spin up that continues this controller task (that was created in ClearML when the s...

4 months ago
0 Hey Team, I Have A Bug That I Created In Github

how can we make sure that the input is preserved?

5 months ago
0 Hey Team, I Have A Bug That I Created In Github

After digging deep, giving the script definition starts as below

@click.command()
@click.option('--test_multiple', type=str, required=False, multiple=True, help='Test multiple values')
def test_pipeline(test_multiple: list[str] | None) -> None:
    ....

and looking at the Args stored in the HyperParams of the controller task, it stores the Args value as '(test1,)' and the type as STRING and maybe that is why the script is erroring out when the pipeline is running ...

5 months ago
0 Hey Team, I Have A Bug That I Created In Github

Since it does not like string being given when the function definition has list[str]

5 months ago
0 Hey Team, I Am Trying To Setup The Clearml Server On Our Eks Cluster And Seems Like Having Problem With The Api Server Connecting With Mongo. Seems Like The Mongodb Is Created With Headless Service And Hence The Url Used It Init Container For Api Server D

So I had to create a regular service to get it working.

apiVersion: v1
kind: Service
metadata:
  name: clearml-mongodb
  labels:
    app.kubernetes.io/component: mongodb
spec:
  selector:
    app.kubernetes.io/component: mongodb
  ports:
    - name: http
      protocol: TCP
      port: 27017
      targetPort: 27017

I am wondering has anyone faced this before for the k8s installation

2 years ago
0 Hey Team, I Am Trying To Setup The Clearml Server On Our Eks Cluster And Seems Like Having Problem With The Api Server Connecting With Mongo. Seems Like The Mongodb Is Created With Headless Service And Hence The Url Used It Init Container For Api Server D

Not sure how this example would work since after looking at mongodb templates, it either creates a headless service or a external access service via loadbalancer. So in this case not sure how it can pass the init-apiserver check about

 
2 years ago