In the past, I noticed excessive run times with clipper.
Investigating the code I found that there is a timeout set to 1000 seconds in peakfinder.py
That is nearly 17 minutes!
If you get 100 timeouts it is 28 hours!
I changed the code to use 100sec (probably 10sec would be sufficient for most data)
was: results.append(job.get(timeout=1000))
is: results.append(job.get(timeout=100))
To see if this is a problem for you, look for these messages:
ERROR:root:transcript timed out
This default value should probably be changed in the source code.
/Sol.