From: Charles Nadeau [mailto:charles.nad...@gmail.com] Sent: Tuesday, July 11, 2017 11:25 AM To: Igor Neyman <iney...@perceptron.com> Cc: pgsql-performance@postgresql.org Subject: Re: [PERFORM] Very poor read performance, query independent
Attention: This email was sent from someone outside of Perceptron. Always exercise caution when opening attachments or clicking links from unknown senders or when receiving unexpected emails. Igor, The sum of effective_cache_size and shared_buffer will be higher than the physical memory I have. Is it OK? Thanks! Charles Yes, that’s normal. shared_buffers is the maximum that Postgres allowed to allocate, while effective_cache_size is just a number that optimizer takes into account when creating execution plan. Igor