Docspell stopped processing document queue

I'm using Docspell to manage all my mail and other documents, and it's been working great. However today as I was uploading a batch of documents the processing queue suddenly stopped working.

Looking into the logs of the joex component I noticed that it crashed with a Java OutOfMemory exception. "No biggie" - just add "-Xmx2G" to the startup command in my docker-compose.yml ... except the joex processing queue still hung.

I spent way too much time diagnosing this, but as it turns out that there were stale entries in the jobgroupuse table that led joex to believe that there was still processing going on... even after a restart.

The fix: delete all entries from jobgroupuse:

psql -U dbuser dbname 
> \c dbname 
> delete from jobgroupuse; 

Previous entry

Similar entries


Comments

No comments yet.


Pingbacks

Pingbacks are closed.


Trackbacks

Post your comment