It appears the following statement is being run more than once a minute against the WF databases
delete from workflow_task_queue where status = 8
That statement sometimes completes instantly and sometimes takes more than a minute to complete.
When it goes long, you end up with multiple requests of the same statement overlapping each other and locking log files.
There were over 160 requests overlapping each other within 20 minutes.
Can the frequency of that statement execution be legitimately reduced or prevented if it is already running on another thread?