Log queue overflows 

Log queue overflows (<number>), parameter 'LOG_IO_QUEUE' (<number of pages>) too small

Explanation

The queue used for accepting log entries overflowed. When change transactions write log entries, the log entries are first stored temporarily in a queue, before the logwriter writes them to the log devspace. This queue usually consists of a single page, but for mass statements (mass DELETES, array INSERTS, and so on), there may be more log entries to write than the system can simultaneously physically write to the disk. If the log queue overflows, it cannot accept any more log entries. This results in a large number of internal database wait situations (Vsuspend) within a short amount of time. Because transactions that write log entries hold SQL locks, other transactions will be affected.

User action

Increase the XPARAM parameter LOG_IO_QUEUE (maximum: 2000). Also, check whether the log devspaces can be moved to a faster disk, to accelerate the physical log I/O.