20

tracker-miner-fs is taking 90% of CPU. I am using Ubuntu 20.04.

Amiya Behera
  • 303
  • 1
  • 3
  • 9

3 Answers3

21

Have some patience. It eventually will go over.

Tracker is an indexing system. It searches all files for words, which are included in a database so you can quickly find files containing specific words.

The first time, tracker needs to index all files. On subsequent times, only changed and new files are also included in the index. It is typical for Tracker to require some minutes of high processor activity to check the file system for changed files and update the index.

‣ If, despite your patience, tracker keeps using high cpu, then there may be an issue with the database. In that case, clearing the database and having tracker reconstruct it may help:

tracker reset --hard ; tracker daemon --start

Beware, all files need reindexing, so there will be some processor useage for a while.

‣ It may be that you have a folder with frequently changing content, e.g. a Downloads folder. You can selectively disabling tracking a folder by placing a hidden file .trackerignore in the folder, or disable searching the folder in the Settings - Search dialog (button "Search locations:" in Ubuntu 20.04, gear wheel in older versions).

‣ If Tracker overall annoys you, you can disable it completely. File name based search in nautilus will still work (and be quite a bit faster).

vanadium
  • 88,010
  • tracker reset --hard ; tracker daemon --start worked for me on 20.04. Previously extract and store work taking vast amounts of CPU time and "tracker status" said to would take 84 days to complete. Finished indexing in a matter of minutes once database cleaned up. You do have to go past the "danger this will delete everything" bits on the reset command though! – David Oct 27 '20 at 09:00
  • @vanadium : Does tracker-miner-fs has something to do with Zeitgeist or are these 2 different software? What software/components make usage of tracker-miner-fs? It is not clear to me. – Rudy Vissers Dec 18 '20 at 09:52
  • 1
    Zeitgeist indeed is different and independent. Gnome-Shell (Application overview) and gnome applications (Files, Documents, Photos) use it. Despite the impression my answer here may suggest, I always disable tracker right away. – vanadium Dec 18 '20 at 09:56
  • 1
    Phew. I just happened to have been on a torrent tracking website which coincidentally has the name "tracker" in it. While I was downloading a huge torrent, the service kicked in. I thought I had been infected hahaha. Phew :D – chx101 Sep 17 '21 at 19:51
3

Tracker (and miner) has plenty of configuration options accessible via dconf-editor under /org/freedesktop/tracker/.

Specifically to make miner less CPU aggressive org.freedesktop.Tracker.Miner.Files throttle value can be set to anything between 0 and 20, the higher the slower.

Also, setting org.freedesktop.Tracker.Extract wait-for-miner-fs to true should prevent running tracker-miner-fs and tracker-extract in parallel.

Pablo Bianchi
  • 15,657
yrtimiD
  • 141
3

Run the following commands in a shell:

echo -e "\nHidden=true\n" | sudo tee --append /etc/xdg/autostart/tracker-extract.desktop /etc/xdg/autostart/tracker-miner-apps.desktop /etc/xdg/autostart/tracker-miner-fs.desktop /etc/xdg/autostart/tracker-miner-user-guides.desktop /etc/xdg/autostart/tracker-store.desktop > /dev/null

Interval in days to check whether the filesystem is up to date in the database. 0 forces crawling anytime, -1 forces it only after unclean shutdowns, and -2 disables it entirely. Default: -1

gsettings set org.freedesktop.Tracker.Miner.Files crawling-interval -2

Set to false to completely disable any file monitoring. Default: true

gsettings set org.freedesktop.Tracker.Miner.Files enable-monitors false

tracker reset --hard # Remove tracker database

Related

Pablo Bianchi
  • 15,657
wsdzbm
  • 899
  • 1
  • 7
  • 12