[DOCS] number of semaphores and semaphore sets
This page: http://www.postgresql.org/docs/9.0/interactive/kernel-resources.html has formula: ceil((max_connections + autovacuum_max_workers) / 16) for number of semaphore sets (identifiers). It seems to be wrong (outdated). Correct formula seems to be ceil((max_connections + autovacuum_max_workers + 4) / 16) Semaphore sets created in src/backend/storage/lmgr/proc.c: 1. MaxConnections 2. autovacuum_max_workers + 1 3. NUM_AUXILIARY_PROCS (currently 3) -- Anton Yuzhaninov -- Sent via pgsql-docs mailing list ([email protected]) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-docs
Re: [DOCS] 9.1 release notes corrections
To the person responsible. Before you create the next update to the PDF files, please do a review to correct all the prototypes that have their text being truncated at the right margin. The respecting of margins means I may be able to use my e-book to read the pdf. I do a lot of commuting and benefit from off-line reading. -- Regards Leslie Mr. Leslie Satenstein 40 years in IT and going strong. Yesterday was a good day, today is a better day, and tomorrow will be even better. mailto:[email protected] alternative: [email protected] www.itbms.biz --- On Sun, 3/20/11, Thom Brown wrote: From: Thom Brown Subject: [DOCS] 9.1 release notes corrections To: "pgsql-docs" Date: Sunday, March 20, 2011, 7:57 AM Hi, I attach a patch to address various errata in the PostgreSQL 9.1 release notes. Thanks -- Thom Brown Twitter: @darkixion IRC (freenode): dark_ixion Registered Linux user: #516935 EnterpriseDB UK: http://www.enterprisedb.com The Enterprise PostgreSQL Company -Inline Attachment Follows- -- Sent via pgsql-docs mailing list ([email protected]) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-docs
Re: [DOCS] 9.1 release notes corrections
Excerpts from Leslie S Satenstein's message of lun mar 21 16:16:03 -0300 2011: > To the person responsible. > > Before you create the next update to the PDF files, please do a review to > correct all the prototypes that have their text being truncated at the right > margin. The respecting of margins means I may be able to use my e-book to > read the pdf. I do a lot of commuting and benefit from off-line reading. Please send a patch. -- Álvaro Herrera The PostgreSQL Company - Command Prompt, Inc. PostgreSQL Replication, Consulting, Custom Development, 24x7 support -- Sent via pgsql-docs mailing list ([email protected]) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-docs
Re: [DOCS] 9.1 release notes corrections
How do you want a patch. I will give you page and line from the existing PDF, if that is what you would like. -- Regards Leslie Mr. Leslie Satenstein 40 years in IT and going strong. Yesterday was a good day, today is a better day, and tomorrow will be even better. mailto:[email protected] alternative: [email protected] www.itbms.biz --- On Mon, 3/21/11, Alvaro Herrera wrote: From: Alvaro Herrera Subject: Re: [DOCS] 9.1 release notes corrections To: "Leslie S Satenstein" Cc: "pgsql-docs" Date: Monday, March 21, 2011, 4:53 PM Excerpts from Leslie S Satenstein's message of lun mar 21 16:16:03 -0300 2011: > To the person responsible. > > Before you create the next update to the PDF files, please do a review to > correct all the prototypes that have their text being truncated at the right > margin. The respecting of margins means I may be able to use my e-book to > read the pdf. I do a lot of commuting and benefit from off-line reading. Please send a patch. -- Álvaro Herrera The PostgreSQL Company - Command Prompt, Inc. PostgreSQL Replication, Consulting, Custom Development, 24x7 support
