For those of you doing NextGen bioinformatics on a Mac, you may have noticed a process called "mds" that chews up RAM (sometimes 2 GB or more), especially when working with large files. This is the Spotlight indexer and it tries to index text characters, including the bases in analysis files. While I was performing a large TopHat run, mds was using over 2 GB RAM, which was needed by TopHat, to avoid having to use virtual memory (32 GB Mac Pro).
The following command successfully turned mds off, as I don't need it on a machine used just for analysis:
sudo mdutil -a -i off
You will need an administrator level password to execute this command. The following command should turn the indexer back on, but I have not tried it:
sudo mdutil -a -i on
The following command successfully turned mds off, as I don't need it on a machine used just for analysis:
sudo mdutil -a -i off
You will need an administrator level password to execute this command. The following command should turn the indexer back on, but I have not tried it:
sudo mdutil -a -i on
Comment