why we need both the collector & buffer process

Started by William.Jiangover 23 years ago4 messageshackers
Jump to latest
#1William.Jiang
jiang_sir@yahoo.com.cn

hi,all hackers of postgres

when postmaster start as a service . another two processes(collector & buffer ) start their work at the same time.

I have read the code and I am wondering why we need two processes to do the work. I think one process can work as well. Are there something special you considered when you developed this feature?

Best wishes!

William

---------------------------------
Do You Yahoo!?
"IBM锟脚惠硷拷锟斤拷权锟斤拷谁锟斤拷锟斤拷谁锟饺得o拷"

#2Bruce Momjian
bruce@momjian.us
In reply to: William.Jiang (#1)
Re: why we need both the collector & buffer process

=?gb2312?q?William.Jiang?= wrote:

hi,all hackers of postgres

when postmaster start as a service . another two
processes(collector & buffer ) start their work at the same
time.

I have read the code and I am wondering why we need two
processes to do the work. I think one process can work as
well. Are there something special you considered when you
developed this feature?

One collects statistics for the pg_stat tables, and the other does
checkpoints. They are different functions.

--
  Bruce Momjian                        |  http://candle.pha.pa.us
  pgman@candle.pha.pa.us               |  (610) 359-1001
  +  If your life is a hard drive,     |  13 Roberts Road
  +  Christ can be your backup.        |  Newtown Square, Pennsylvania 19073
#3Tom Lane
tgl@sss.pgh.pa.us
In reply to: William.Jiang (#1)
Re: why we need both the collector & buffer process

"=?gb2312?q?William.Jiang?=" <jiang_sir@yahoo.com.cn> writes:

I have read the code and I am wondering why we need two processes to do the work. I think one process can work as well. Are there something special you considered when you developed this feature?

It's a buffering issue. Read the discussion in the pghackers archives
for details.

regards, tom lane

#4William.Jiang
jiang_sir@yahoo.com.cn
In reply to: Bruce Momjian (#2)
Re: why we need both the collector & buffer process

Sorry to say that I cannot see which process is used to do checkpoints. I just see two main functions.
pgstat_recvbuffer(): this function is to receive the information from the postgres .this function is the main body of buffer process
pgstat_min():this function is to do the job of getting information from the buffer process and writing them to the file . and this is the main body of collector process.
Any function else to do the checkpoint job?
Best Wishes!
William
Bruce Momjian <pgman@candle.pha.pa.us> wrote:
=?gb2312?q?William.Jiang?= wrote:

hi,all hackers of postgres

when postmaster start as a service . another two
processes(collector & buffer ) start their work at the same
time.

I have read the code and I am wondering why we need two
processes to do the work. I think one process can work as
well. Are there something special you considered when you
developed this feature?

One collects statistics for the pg_stat tables, and the other does
checkpoints. They are different functions.

--
Bruce Momjian | http://candle.pha.pa.us
pgman@candle.pha.pa.us | (610) 359-1001
+ If your life is a hard drive, | 13 Roberts Road
+ Christ can be your backup. | Newtown Square, Pennsylvania 19073

---------------------------------
Do You Yahoo!?
"IBM锟脚惠硷拷锟斤拷权锟斤拷谁锟斤拷锟斤拷谁锟饺得o拷"