Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes columnar recovery text #1028

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions admin_guide/table_management.rst
Original file line number Diff line number Diff line change
Expand Up @@ -255,9 +255,8 @@ Gotchas
so inserting one row per transaction will put single rows into their own
stripes. Compression and performance of single row stripes will be worse than
a row table. Always insert in bulk to a columnar table.
* If you mess up and columnarize a bunch of tiny stripes, there is no way to
repair the table. The only fix is to create a new columnar table and copy
data from the original in one transaction:
* If you mess up and columnarize a bunch of tiny stripes, you can use VACUUM command to be able to
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How about this:

If you mess up and columnarize a bunch of tiny stripes, you can consolidate them
and re-compress by running VACUUM on the table.

reorganize columnar stripes

.. code-block:: postgresql

Expand Down