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
PleasantOwl46
Moderator
18 Questions, 70 Answers
  Active since 10 January 2023
  Last activity 14 days ago

Reputation

0

Badges 1

60 × Eureka!
0 Votes
10 Answers
860 Views
0 Votes 10 Answers 860 Views
does anyone had experience with running ClearML in secure machine with iptables configured? I had allowed traffic in the ports ClearML is using but still the...
one year ago
0 Votes
4 Answers
672 Views
0 Votes 4 Answers 672 Views
Hey all I see this error repeating constantly, and my metrics are not updated, what does it mean? 2024-01-07 03:41:09,676 - clearml.Metrics - ERROR - Action ...
10 months ago
0 Votes
12 Answers
79 Views
0 Votes 12 Answers 79 Views
does anyone have working example of how to properly use pagination with ClearML REST API? I'm trying to use projects.get_all to get an json with all my proje...
one month ago
0 Votes
9 Answers
885 Views
0 Votes 9 Answers 885 Views
out of a sudden without any trigger, our ClearML server ( version 1.13.0-373 ) showing only tasks/projects that belongs to logged-in user e.g if a user don't...
one year ago
0 Votes
0 Answers
129 Views
0 Votes 0 Answers 129 Views
Hey ClearML community We are managing multiple ClearML servers for many teams and we come to the point that we must cleanup and delete old tasks Based on cle...
one month ago
0 Votes
15 Answers
653 Views
0 Votes 15 Answers 653 Views
Hi all we have set nginx in front of ClearML and signed with our own self-signed certs I'm trying to modify the cleanup_service to fit some of our needs (run...
8 months ago
0 Votes
3 Answers
909 Views
0 Votes 3 Answers 909 Views
Hey ClearML experts is there a way to copy entire exp. including results/scalars/plots? right click > clone creates a duplicate of the exp. , only with it's ...
one year ago
0 Votes
6 Answers
704 Views
0 Votes 6 Answers 704 Views
we have an nginx container in front of ClearML, functions use sort of " SSL reverse proxy" we are seeing this errors with jobs that are trying to upload some...
10 months ago
0 Votes
18 Answers
1K Views
0 Votes 18 Answers 1K Views
Hey everyone, not sure exactly when it started to happen but I get unexpected behavior with task.init jobs with same project/tasks name are not overwritten -...
one year ago
0 Votes
4 Answers
195 Views
0 Votes 4 Answers 195 Views
2 months ago
0 Votes
2 Answers
299 Views
0 Votes 2 Answers 299 Views
How does ClearML handle running jobs while server is down? We saw some mismatches between what ClearML logged with the actual iteration, in time periods whil...
4 months ago
0 Votes
3 Answers
972 Views
0 Votes 3 Answers 972 Views
Hi there ClearML experts I've been trying to delete heavy project (with ~4K experiments) using the API and getting the following error: curl \ --header "Cont...
2 years ago
0 Votes
2 Answers
281 Views
0 Votes 2 Answers 281 Views
Hey everyone anyone had experience with installing clearml-server on Openshift? I assume some modifications requires comapred to vanilla k8s installation (in...
3 months ago
0 Votes
4 Answers
94 Views
0 Votes 4 Answers 94 Views
is there a way to obtain the user id without the REST API? somewhere in the UI that users can obtain this?
one month ago
0 Votes
3 Answers
80 Views
0 Votes 3 Answers 80 Views
Hey everyone With recent changes in Dockerhub policy, very soon we will lose our ability for pull docker.io images ClearML open-source version have Elasticse...
one month ago
0 Votes
2 Answers
542 Views
0 Votes 2 Answers 542 Views
using fixed users and hashed password I'd like to change the username and name fields (without changing the password) how painful is this process? how will e...
6 months ago
0 Votes
1 Answers
478 Views
0 Votes 1 Answers 478 Views
is there a way to get list of users from the API?
7 months ago
0 Votes
3 Answers
56 Views
0 Votes 3 Answers 56 Views
Hey team I can see last clearml-server released on August, when new release going public? I'm going to upgrade our env and prefer to update after upcoming ne...
15 days ago
0 Hi, How Do I Enable Ssl With Our Self-Hosted Clearml-Server ?

I built an basic nginx container
` FROM nginx

COPY ./default.conf /etc/nginx/conf.d/default.conf

COPY ./includes/ /etc/nginx/includes/

COPY ./ssl/ /etc/ssl/certs/nginx/ copied the signed certificates and the modified nginx deafult.conf `

the important part is to modify the compose file to redirect all traffic to nginx container
` reverse:
container_name: reverse
image: reverse_nginx
restart: unless-stopped
depends_on:
- apiserver
- webserver
- fil...

one year ago
0 Hey Team I Can See Last Clearml-Server Released On August, When New Release Going Public? I'M Going To Upgrade Our Env And Prefer To Update After Upcoming New Release

@<1523701070390366208:profile|CostlyOstrich36> sorry for not being clear enough
when is next version of clearml-server will be released? I can see last version is from August, is there any ETA for new release in upcoming 1-2 month?

14 days ago
0 Is There A Way To Obtain The User

I manage clearml-server for many users
wrote a script that pulls tasks (for review - pending deletion) and limit for specific user (saw the REST can limit only by user id )
so user will need to provide the script his own user id in advance
I guess my options are:

  • maintain stastic list of users (which I get from users.get_all endpoint)
  • add to my script another query that will match user name to user id, before running the tasks_get.all for specific user id
one month ago
0 Is There A Way To Obtain The User

yep, that's options number 2 🙂
I will implement that

one month ago
0 Does Anyone Have

when running in debug and watch the values I get

    data = response.json()
    projects = data['data']['projects']
    all_data.extend(projects)

in each loop iteration
projects are same 500 values
all_data gets append for same 500 values in endless loop

I have bug in my code and can't find where just yet

one month ago
0 Does Anyone Have

the way I do pagination is wrong
@<1523701070390366208:profile|CostlyOstrich36> might throw some champions tip over here 🙂

one month ago
0 Does Anyone Have

I know the 500 limit and using it

but my while loop keeps pulling the same 500 ... and running endless

one month ago
0 Does Anyone Have

ohhh severe error here 🙂
I was mixed between other API I worked on .. and did not read carefully the right flag

simple adding page to the body did the work
thanks again @<1724235687256920064:profile|LonelyFly9>

one month ago
0 Does Anyone Have

I think this is the right approach, let me have a deeper look
thanks @<1724235687256920064:profile|LonelyFly9>

one month ago
0 Does Anyone Have

trying to use projects.get_all to pull all my projects into single file
and there are more then 500 ...

one month ago
0 Does Anyone Have

hmmm that's not it, same endless loop when using body

one month ago
0 To Continue The Above Thought, How Do I Get A User'S Name From The User'S Id, But Through The Rest Api? Specifically I'D Like To Know How To Get This Object
      {
        "id": "c2e33466fd9de1a0d2be8d803ad4fbed",
        "company": "d1bd92a3b039400cbafc60a7a5b1e52b",
        "name": "John Doe",
        "family_name": "John",
        "given_name": "Doe",
        "created": "2024-09-24T06:13:59.956000+00:00"
      }

this is how the object looks like

one month ago
0 To Continue The Above Thought, How Do I Get A User'S Name From The User'S Id, But Through The Rest Api? Specifically I'D Like To Know How To Get This Object

correct, but!
I wrote a script that pulls tasks and limit for user
so I'm looking for users to knows their own id in advance

one month ago
0 To Continue The Above Thought, How Do I Get A User'S Name From The User'S Id, But Through The Rest Api? Specifically I'D Like To Know How To Get This Object

yep that was my approached with no luck so far
hopefully someone from the ClearML dev team can give their input on this

one month ago
0 Does Anyone Have
offset = 0
limit = 500
all_data = []

while True:
    params = {
        'offset': offset,
        'limit': limit
    }
    
    response = requests.get(url, headers=headers, params=params,verify=False)
    
    data = response.json()
    projects = data['data']['projects']

    print(f"pulled {len(projects)} projects.")

    if len(projects) == 0:
        print("no project found - exiting ...")
        break    
    
    all_data.extend(projects)
    offset += limit

print(f"pulled {le...
one month ago
0 Out Of A Sudden Without Any Trigger, Our Clearml Server (

I had slightly similar scenario ~1 year and few versions back
there was some task that wrote a lot of tasks and mongo didn't took it nicely

I was able to identify to it only by questioning users and eventunaly one of them stopped to send and mongo started to come back and all return to normal
we did not come to any wise conclusion what is root cause or how to identify this

one year ago
0 Out Of A Sudden Without Any Trigger, Our Clearml Server (

not sure it's same use case but I will begin to ask around people
if you have any other hint/way how to query mongo and look for potential culprit - will be glad to hear

one year ago
0 Out Of A Sudden Without Any Trigger, Our Clearml Server (

I'd guess mongo is choking, not sure why

one year ago
0 Out Of A Sudden Without Any Trigger, Our Clearml Server (

I think there are some experiments that are messing up mongodb
this logs unusual in clearml-mongo logs:

{"t":{"$date":"2023-09-19T12:15:50.685+00:00"},"s":"I",  "c":"COMMAND",  "id":51803,   "ctx":"conn73","msg":"Slow query","attr":{"type":"command","ns":"backend.model","command":{"distinct":"model","key":"project","query":{"$and":[{"$or":[{"company":{"$in":["d1bd92a3b039400cbafc60a7a5b1e52b",null,""]}},{"company":{"$exists":false}}]},{"user":{"$in":["197aea8467d3f471fc0db98b57ed80fa"]...
one year ago
0 Out Of A Sudden Without Any Trigger, Our Clearml Server (
app.component.ts:138 ERROR TypeError: Cannot read properties of null (reading 'id')
    at projects.effects.ts:60:56
    at o.subscribe.a (switchMap.js:14:23)
    at p._next (OperatorSubscriber.js:13:21)
    at p.next (Subscriber.js:31:18)
    at withLatestFrom.js:26:28
    at p._next (OperatorSubscriber.js:13:21)
    at p.next (Subscriber.js:31:18)
    at filter.js:6:128
    at p._next (OperatorSubscriber.js:13:21)
    at p.next (Subscriber.js:31:18)

and I see also when trying to...

one year ago
0 Out Of A Sudden Without Any Trigger, Our Clearml Server (

api calls behaves much better
no problem to query tasks in other projects

one year ago
0 Using Fixed Users And Hashed Password I'D Like To Change The

tried with my user and edited existing user record in apiserver.conf
it looks ClearML treated this as new user - I did not saw any of the jobs belongs to my user before the change

6 months ago
0 Hi Everyone, Does Anyone Have Any Pointers On How To Make The Clearml-Server Web Service Secure Using Ssl By Setting Up Nginx? I Have Played Around With It A Bit In Relation To Getting A Jupyterhub Setup Working Over Https, However, I Think That Was Mor

VivaciousPenguin66 your docs was helpful, I got SSL running but my question remained
have you kept needed http services accessible and only running the authentication via https?
api_server: "http://<my-clearml-server>:8008" web_server: " " files_server: "http://<my-clearml-server:8081"my current state is that the webserver is accessible via http and https, in 8080 & 443

3 years ago
0 Hey Everyone With Recent Changes In Dockerhub Policy, Very Soon We Will Lose Our Ability For Pull

you are correct and thank you for the reply @<1523701070390366208:profile|CostlyOstrich36>
going forward, I assume the clearml-server open-source releases will be continue to be released in Docker Hub

one month ago
0 Hi Everyone, Does Anyone Have Any Pointers On How To Make The Clearml-Server Web Service Secure Using Ssl By Setting Up Nginx? I Have Played Around With It A Bit In Relation To Getting A Jupyterhub Setup Working Over Https, However, I Think That Was Mor

Hi VivaciousPenguin66
thanks for sharing, giving it a try now

after you set up webserver to point to 443 with HTTPS, what have you done with rest of http services clearml is using?

does weberver with 8080 remained accessible and your are directing to it in your ~clearml.conf ?
what about apiserver and file server? (8008 & 8081)

3 years ago
0 Hey Everyone, Not Sure Exactly When It Started To Happen But I Get Unexpected Behavior With

tried it from single workstation, but I get same unexpected behavior
same project/task names, same workstation running the job, anything else I should check to confirm those are identical jobs?
every new identical job start with ClearML Task: created new task id=...

one year ago
0 Hey Everyone, Not Sure Exactly When It Started To Happen But I Get Unexpected Behavior With

same basic job not gets overwritten, but created new one every time

one year ago
Show more results compactanswers