Re: json datatype and table bloat?

Поиск
Список
Период
Сортировка
От Gregory Haase
Тема Re: json datatype and table bloat?
Дата
Msg-id CAHA6QFSvFWXw44X3=W18xF7OY75wyq97gRJtCxuFW5d0BUgZYg@mail.gmail.com
обсуждение исходный текст
Ответ на Re: json datatype and table bloat?  (Tom Lane <tgl@sss.pgh.pa.us>)
Ответы Re: json datatype and table bloat?  (Gregory Haase <haaseg@onefreevoice.com>)
Список pgsql-general
Tom is correct: Vacuum verbose shows that their is an associated toast table. Neither the check_postgres.pl script or the query on http://wiki.postgresql.org/wiki/Show_database_bloat appear to take this into consideration. Both rely on null_frac and avg_width from pg_stats to estimate how big the table should be. I'm not sure how you would factor the toast table into that estimate.

-G


On Tue, Oct 29, 2013 at 2:05 PM, Tom Lane <tgl@sss.pgh.pa.us> wrote:
Gregory Haase <haaseg@onefreevoice.com> writes:
> I've isolated the problem to the json field not showing up in pg_stats,
> which affects the calculation of the avg row size in the bloat query.

> I'm not sure if this is a json issue or some other kind of issue.

Possibly your "bloat query" is failing to consider the toast table
associated with this table?  If the json values are large they'd
mostly be in the toast table not the main table.

(It's unfortunate that VACUUM FULL doesn't tell you about what's
in the toast table.  I'd try just VACUUM VERBOSE here, without the
FULL, to get more info.)

                        regards, tom lane

В списке pgsql-general по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: json datatype and table bloat?
Следующее
От: Tim Kane
Дата:
Сообщение: Undocumented feature? USING INDEX TABLESPACE