You may want to ignore certain file types from the analyzing process. Please edit the settings.json file on the server and bounce the runner and lipstick services for the setting to take affect. The settings file is located in:
/opt/caraone/dist/settings
Make a time-stamped backup of the settings.json
cp settings.json settings.json.$(date +%Y%m%d)
Look for "DONT_INDEX_FILE_TYPES and edit appropriately
The accepted values are "picture", "avb", "pdf", "doc". "pptx" and "video". File extensions will not work.
picture = tiff, jpg, and png
avb = Avid media
the others are self-explanatory
Here is an example of skipping pictures, PDFs, PowerPoints, and Word docs
"DONT_INDEX_FILE_TYPES": ["picture","pdf","pptx","doc"],
then stop the runner and lipstick, wait, and check status of lipstick. You can use this one-liner command to make it easier
systemctl stop runner ; systemctl stop lipstick ; systemctl start lipstick ; sleep 60 ; systemctl status lipstick ; read -n 1 -s -r -p "Press any key to continue..." ; systemctl start runner
Check activity on the server with the command htop and watch for lipstick processes and run watch -n 1 nvidia-smi to see the load on the GPU.