From: | Jeff Janes <jeff(dot)janes(at)gmail(dot)com> |
---|---|
To: | "657985552(at)qq(dot)com" <657985552(at)qq(dot)com> |
Cc: | pgsql-general <pgsql-general(at)postgresql(dot)org> |
Subject: | Re: [GENERAL] 回复: postgres cpu 100% need help |
Date: | 2015-10-27 19:33:36 |
Message-ID: | CAMkU=1w08CQt0tCKEaA_aYVm=9AZdm2oMmima5CW2sOXpjwHtg@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
On Mon, Oct 26, 2015 at 8:30 PM, 657985552(at)qq(dot)com <657985552(at)qq(dot)com> wrote:
> Dear sir:
> Recently a wired question about postgresql database really
> bothered me a lot, so i really need your help. Here is the problem, in the
> most situations the postgre database work very well, Average 3500tps/s
> per day, the cpu usage of its process is 3%~10% and every query can be
> responsed in less than 20ms, but sometimes the cpu usages of its process
> can suddenly grow up to 90%+ , at that time a simple query can cost
> 2000+ms. ps: My postgresql version is 9.3.5 and the database is oltp
> server.
>
From all the lseeks on the same file, it looks like you are doing a
sequential scan on a table for the inside of a nested loop. What is the
query it is running, and what is the execution plan for it? To get that,
run:
explain (analyze, buffers) select o_count from ....
Cheers,
Jeff
From | Date | Subject | |
---|---|---|---|
Next Message | Merlin Moncure | 2015-10-27 21:04:13 | Re: [GENERAL] Re: [GENERAL] 回复: postgres cpu 100% need help |
Previous Message | Merlin Moncure | 2015-10-27 18:35:33 | Re: ??: postgres cpu 100% need help |