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
JuicyFox94
Moderator
11 Questions, 382 Answers
  Active since 10 January 2023
  Last activity 2 years ago

Reputation

0

Badges 1

53 × Eureka!
0 Votes
23 Answers
1K Views
0 Votes 23 Answers 1K Views
Hi, I'm trying to set storage manager to use our internal MiniIO installation but I ran into this issue with this testing code: from trains import Task, Stor...
4 years ago
0 Votes
3 Answers
1K Views
0 Votes 3 Answers 1K Views
Hi, how can I obtain current task using a pipeline with decorators? more specific, I need logger = task.get_logger()but I don't have task using pipelines dec...
3 years ago
0 Votes
2 Answers
1K Views
0 Votes 2 Answers 1K Views
Hi everyone, there are 3 PR on https://github.com/allegroai/trains-server-k8s/pulls that are still waiting in the wings after more than 20 days. There is any...
4 years ago
0 Votes
1 Answers
1K Views
0 Votes 1 Answers 1K Views
Since I’m using Trains on K8s with my team I started to dig into the Helm chart that needs tweaks. I just started exploring the chart so I just put a first s...
4 years ago
0 Votes
0 Answers
1K Views
0 Votes 0 Answers 1K Views
other will come in near future hopefully 😄
4 years ago
0 Votes
0 Answers
1K Views
0 Votes 0 Answers 1K Views
Hi everyone!
4 years ago
0 Votes
29 Answers
1K Views
0 Votes 29 Answers 1K Views
4 years ago
0 Votes
4 Answers
1K Views
0 Votes 4 Answers 1K Views
Hi everyone, I had a request to use task_overrides during a pipeline step. The goal is to set the OUTPUT DESTINATION on the fly so: pipe.add_step(name='creat...
3 years ago
0 Votes
2 Answers
1K Views
0 Votes 2 Answers 1K Views
Hi, do you have a channel for dev/contributors on your github repos? I see only a but no one si there. I think a specific dev channel would be great and help...
4 years ago
0 Votes
12 Answers
1K Views
0 Votes 12 Answers 1K Views
Just curious about the pipeline decorator example, I tried to run it in my cluster (latest chart as ususal 😄 ) and I got Traceback (most recent call last): ...
3 years ago
0 Votes
21 Answers
999 Views
0 Votes 21 Answers 999 Views
3 years ago
0 When I Run

Not sure at what level is occurring. What ingress controller are you using?

2 years ago
0 Is There A Way To Deploy It Without Using Kind? Seems That Kind Taking Over The Control-Plane Configuration In A Way I Can'T See The Other Pods Or Nodes That Keep Running

some suggestions:
start working just with clearml (no agent or serving, these ones will go in after clearml is working) try a fist deploy without any override if it works start adding values to override file (without reporting everything or it will be very difficult to debug, you should not report on override file what is not overridden) do helm upgrade check problems one by one

2 years ago
0 Hello. I Have An Issue In Regards To A Task That I Run As A Service ( Should Always Run). I Run The Clearml Server And Agents In Kubernetes. I Think This Is A Design Problem With The Way Clearml Agents Run On Kubernetes. The K8S Glue Will Launch A Worker

From k8s perspective a pod is ephemeral so if it’s gone for any reason it’s gone. Obviously there are structures that can ensure running state (like Deployments or Statefulsets) so if a pod dies, another one takes place. We didn;t go in this direction because pods are not idempotent so it’s not straightfoward to simply replace them. Btw this looks an interesting topic to me so I’d like to include SuccessfulKoala55 on this also because i’m involved more in infra side of the equation and I ma...

2 years ago
0 Hello Guys, I'M Trying To Setup A Selfhosted Clearml Server Using Kubernetes (With The "Kubernetes Glue, Map Clearml Jobs Directly To K8S Jobs" Method), So Far Everything Kind Of Works But I Have The Following Issues That I Could Use A Little Help With If

You can’t write on readonly replica is about MongoDB. I guess you are using a multiple replica setup. In this case the mongodb dependency chart have a lot of parameters to tweak the system and maybe also an arbiter is good for you. But this is a huge topic regarding mongodb specific k8s setups.

one year ago
0 Does Anyone Know How We Can Restore Clearml On Helms Chart From Existing Snapshots (Aws)?

Just a quick suggestion since I have some more insight on the situation. Maybe you can look at Velero, it should be able to migrate data. If not you can simply create a new fresh install, scale everything to zero, then create some debug pod mounting old and new pvc and copy data between the two. More complex to say it than do it.

one year ago
0 Hi Team, I'M Deploying Clearml On A Kubernetes Environment Using Helm Chart. I'Ve Enabled Ingress For Clearml-Apiserver , Clearml-Fileserver ,Clearml-Webserver. How To Pass The Hostname For Those Using Env?

I don’t think you need to pass these env vars in extraenvs, references are automatically generated by chart. After removing them, pls post webserver pod logs here and let’s see if we can spot the issue, ty.

8 months ago
0 Does The New 2.0 Helm Charts (App Ver 1.1.0) Not Support Nfs?

if mounts are already there everywhere you can also mount directly on the nodes on a specific folder then use rancher local path provisioner

3 years ago
0 Does The New 2.0 Helm Charts (App Ver 1.1.0) Not Support Nfs?

btw a good practice is to keep infrastructural stuff decoupled from applications. What about using https://github.com/kubernetes-sigs/nfs-subdir-external-provisioner ? After applying that chart you can simply use the generated storage class; wdyt?

3 years ago
0 Does The New 2.0 Helm Charts (App Ver 1.1.0) Not Support Nfs?

other wise yes, if this is not an option, you can also mount what is already existing so pls open an issue in new repo helm chart and we can find a solution

3 years ago
0 Does The New 2.0 Helm Charts (App Ver 1.1.0) Not Support Nfs?

Hi BurlySeagull48 , I’m interested in your use case and I think we can find a solution. NFS mounts have the same path in every node?

3 years ago
0 Does The New 2.0 Helm Charts (App Ver 1.1.0) Not Support Nfs?

if you already have data over there you may import it

3 years ago
0 Does The New 2.0 Helm Charts (App Ver 1.1.0) Not Support Nfs?

I think we can find a solution pretty quickly after some checks. Can you pls open an issue on new helm chart repo so I can take care of it in some day?

3 years ago
0 Does The New 2.0 Helm Charts (App Ver 1.1.0) Not Support Nfs?

Or do you want to dinamically mount directly an nfs endpoint? (I understood you need this one)

3 years ago
0 Hi, We Are Using Clearml On Gcp K8S Using The Clearml-Helm-Charts, We Noticed That After Restarting The Apiserver Pod, The User Credentials We Added For The Secret.Credentials.Apiserver And Secret.Credentials.Tests In The Values.Yaml Are Being Deleted Any

O k, I’d like to test it more with you; credentials exposed in chart values are system ones and it’s better to not change them; let’s forget about them for now. If you create a new accesskey/secretkey pair in ui, you should use these ones in your agents and they shuld not get overwritten in any way; can you confirm it works without touching credentials section?

2 years ago
Show more results compactanswers