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
In Case Anyone Else Ever Comes Across Mongo Issues Using The Docker Compose Clearml Stack (In Case Of A Messy Shutdown), I Have Found This Script To Be A Lifesaver On Numerous Occasions:

in case anyone else ever comes across mongo issues using the docker compose clearml stack (in case of a messy shutdown), I have found this script to be a lifesaver on numerous occasions:

cat repair-mongo.sh 


docker run --rm -v /opt/clearml/data/mongo_4/db:/data/db mongo:4.4.28 mongod --dbpath /data/db --repair
  
  
Posted 2 months ago
Votes Newest

Answers


Thanks @<1689446563463565312:profile|SmallTurkey79> ! 🙏

  
  
Posted 2 months ago
274 Views
1 Answer
2 months ago
2 months ago
Tags