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
Answered
Hi Guys, I Have A (Potentially Very Stupid) But Important Problem. I Moved The Server To A New Machine And Hooked Up The Fileshare That We Use For Storage. I Can Confirm It'S Working As Intended - Both The Apiserver And The Fileserver Have

Hi guys, I have a (potentially very stupid) but important problem. I moved the server to a new machine and hooked up the fileshare that we use for storage. I can confirm it's working as intended - both the apiserver and the fileserver have /mnt/fileserver populated with datasets and such. However, when I open the webapp, I am only getting the example projects. How can it happen? I have attached the relevant portion of the compose.
Weird thing is - I have done this before without any problems I believe, but now I'm not able to restore the data anymore.

apiserver:
    command:
    - apiserver
    container_name: clearml-apiserver
    image: allegroai/clearml:latest
    restart: unless-stopped
    volumes:
    - /opt/clearml/logs:/var/log/clearml
    - /opt/clearml/config:/opt/clearml/config
    - /mnt/models/clearml_fileserver:/mnt/fileserver
	
 fileserver:
    networks:
      - backend
      - frontend
    command:
    - fileserver
    container_name: clearml-fileserver
    image: allegroai/clearml:latest
    environment:
      CLEARML__fileserver__delete__allow_batch: "true"
    restart: unless-stopped
    volumes:
    - /opt/clearml/logs:/var/log/clearml
    - /mnt/models/clearml_fileserver:/mnt/fileserver
    - /opt/clearml/config:/opt/clearml/config
    ports:
    - "8081:8081"
  
  
Posted 21 hours ago
Votes Newest

Answers 5


Fileserver only contains uploaded artifacts and models usually (so at most if you have any configuration issue you'll have links to artifacts that will be broken) - what you're seeing seems to indicate the mongodb data was lost, misplaced or there was some issue with the migration when moving to the new machine. In general you should have moved the entire data folder containing the mongodb and elasticsearch data

  
  
Posted 19 hours ago

Hi @<1577468611524562944:profile|MagnificentBear85> , what you need to check is the mongodb component, which contains all of the administrative data (and metadata)

  
  
Posted 19 hours ago

Thanks, I solved it. It was a very weird error in putting back the backup

  
  
Posted 17 hours ago

Simply redoing it solved it

  
  
Posted 17 hours ago

Thanks, for helping me

  
  
Posted 17 hours ago