Gregory Stark <[EMAIL PROTECTED]> writes: > Can autovacuum actually get into a hard deadlock?
It can certainly be part of a deadlock loop, though the practical cases might be few. It will be holding more than one lock, eg a lock on its target table and various transient locks on system catalogs, and other processes taking or trying for exclusive locks on those things could create issues. I think it's OK to leave the issue go for now, until we see if anyone hits it in practice --- I just wanted to mention that we might need to consider the problem in future. > I think there's a window where the process waiting directly on > autovacuum could have already fired its deadlock check before it was > waiting directly on autovacuum. I think you don't understand what that code is doing. If there's an autovac anywhere in the dependency graph, it'll find it. regards, tom lane ---------------------------(end of broadcast)--------------------------- TIP 9: In versions below 8.0, the planner will ignore your desire to choose an index scan if your joining column's datatypes do not match