"Jignesh K. Shah" <J.K.Shah@xxxxxxx> writes: > The count is only for a 10-second snapshot.. Plus remember there are > about 1000 users running so the connection being profiled only gets > 0.01 of the period on CPU.. And the count is for that CONNECTION only. OK, that explains the low absolute levels of the counts, but if the counts are for a regular backend then there's still a lot of bogosity here. Backends won't be taking the CheckpointLock at all, nor do they take CheckpointStartLock in exclusive mode. The bgwriter would do that but it'd not be taking most of these other locks. So I think the script is mislabeling the locks somehow. Also, elementary statistics should tell you that a sample taken as above is going to have enormous amounts of noise. You should be sampling over a much longer period, say on the order of a minute of runtime, to have numbers that are trustworthy. 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