HomeMogDBMogDB StackUqbar
v3.0

Documentation:v3.0

Supported Versions:

REINDEX

Function

REINDEX rebuilds an index using the data stored in the index's table, replacing the old copy of the index.

There are several scenarios in which REINDEX can be used:

  • An index has become corrupted, and no longer contains valid data.
  • An index has become "bloated", that is, it contains many empty or nearly-empty pages.
  • You have altered a storage parameter (such as a fill factor) for an index, and wish that the change takes full effect.
  • An index build with the CONCURRENTLY option failed, leaving an "invalid" index.

Precautions

REINDEX DATABASE and REINDEX SYSTEM type cannot be performed in transaction blocks.

REINDEX CONCURRENTLY cannot be performed in transaction blocks.

Syntax

  • Rebuild a general index.

    Reindex ::= REINDEX { INDEX [ CONCURRENTLY ] | [INTERNAL] TABLE | DATABASE | SYSTEM } [CONCURRENTLY] name [ FORCE ];
  • Rebuild an index partition.

    Reindex ::= REINDEX  { INDEX|  [INTERNAL] TABLE} [CONCURRENTLY] name
        PARTITION partition_name [ FORCE  ];

Parameter Description

  • INDEX

    Recreates the specified index.

  • INTERNAL TABLE

    Recreates the Desc table index of a column-store table or Hadoop internal table. The TOAST table (if any) of the table is reindexed as well.

  • TABLE

    Recreates all indexes of a specified table. If a table has a TOAST table, the table will also be reindexed. If an index in the table has been invalidated by running alter unusable, the index cannot be recreated.

  • DATABASE

    Recreates all indexes within the current database.

  • SYSTEM

    Recreates all indexes on system catalogs within the current database. Indexes on user tables are not processed.

  • CONCURRENTLY

    Recreates indexes (with ShareUpdateExclusiveLock) in non-blocking DML mode. A normal REAINDEX acquires exclusive lock on the table on which the index depends, blocking other accesses until the index drop can be completed. If this keyword is specified, DML is not blocked during the creation.

    • This option can only specify a name of one index.
    • The REINDEX statement can be run within a transaction, but REINDEX CONCURRENTLY cannot.
    • Column-store tables, GLOBAL partitioned index, and temporary tables do not support REINDEX CONCURRENTLY.
    • REINDEX SYSTEM CONCURRENTLY will no do anything, because system catalogs do not support REINDEX CONCURRENTLY.

    NOTE:

    • This keyword is specified when an index is recreated. The entire table needs to be scanned twice and built. When the table is scanned for the first time, an index is created and the read and write operations are not blocked. During the second scan, changes that have occurred since the first scan are merged and updated.
    • The table needs to be scanned and built twice, and all existing transactions that may modify the table must be completed. This means that the recreation of the index takes a longer time than normal. In addition, the CPU and I/O consumption also affects other services.
    • If an index build fails, it leaves an "unusable" index. This index is ignored by the query, but it still consumes the update overhead. In this case, you are advised to delete the index and try REINDEX CONCURRENTLY again.
    • After the second scan, index creation must wait for any transaction that holds a snapshot earlier than the snapshot taken by the second scan to terminate. In addition, the ShareUpdateExclusiveLock (level 4) added during index creation conflicts with a lock whose level is greater than or equal to 4. Therefore, when such an index is recreated, the system is prone to hang or deadlock. For example:
    • If two sessions reindex concurrently for the same table, a deadlock occurs.
    • If a session reindex concurrently for a table and another session drops a table, a deadlock occurs.
    • There are three sessions. Session 1 locks table a and does not commit it. Session 2 reindex concurrently for table b. Session 3 writes data to table a. Before the transaction of session 1 is committed, session 2 is blocked.
    • The transaction isolation level is set to repeatable read (read committed by default). Two sessions are started. Session 1 writes data to table a and does not commit it. Session 2 reindex concurrently for table b. Before the transaction of session 1 is committed, session 2 is blocked.
  • name

    Specifies the name of the index, table, or database whose index needs to be recreated. Tables and indexes can be schema-qualified.

    img NOTE: REINDEX DATABASE and SYSTEM can create indexes for only the current database. Therefore, name must be the same as the current database name.

  • FORCE

    Specifies an invalid option, which will be ignored.

  • partition_name

    Specifies the name of the partition or index partition to be recreated.

    Value range:

    • If REINDEX INDEX is used, specify the name of an index partition.
    • If it is REINDEX TABLE, specify the name of a partition.
    • If it is REINDEX INTERNAL TABLE, specify the name of a partition in a column-store partitioned table.

img NOTICE: REINDEX DATABASE and REINDEX SYSTEM type cannot be performed in transaction blocks.

Examples

-- Create a row-store table tpcds.customer_t1 and create an index on the c_customer_sk column in the table.
MogDB=# CREATE TABLE tpcds.customer_t1
(
    c_customer_sk             integer               not null,
    c_customer_id             char(16)              not null,
    c_current_cdemo_sk        integer                       ,
    c_current_hdemo_sk        integer                       ,
    c_current_addr_sk         integer                       ,
    c_first_shipto_date_sk    integer                       ,
    c_first_sales_date_sk     integer                       ,
    c_salutation              char(10)                      ,
    c_first_name              char(20)                      ,
    c_last_name               char(30)                      ,
    c_preferred_cust_flag     char(1)                       ,
    c_birth_day               integer                       ,
    c_birth_month             integer                       ,
    c_birth_year              integer                       ,
    c_birth_country           varchar(20)                   ,
    c_login                   char(13)                      ,
    c_email_address           char(50)                      ,
    c_last_review_date        char(10)
)
WITH (orientation = row);

MogDB=# CREATE INDEX tpcds_customer_index1 ON tpcds.customer_t1 (c_customer_sk);

MogDB=# INSERT INTO tpcds.customer_t1 SELECT * FROM tpcds.customer WHERE c_customer_sk < 10;

-- Rebuild a single index.
MogDB=# REINDEX INDEX tpcds.tpcds_customer_index1;

-- Rebuild a single index concurrently.
MogDB=# REINDEX INDEX CONCURRENTLY tpcds.tpcds_customer_index1;

-- Rebuild all indexes in the tpcds.customer_t1 table:
MogDB=# REINDEX TABLE tpcds.customer_t1;

-- Rebuild all indexes in the tpcds.customer_t1 table concurrently:
MogDB=# REINDEX TABLE CONCURRENTLY tpcds.customer_t1;

-- Delete the tpcds.customer_t1 table.
MogDB=# DROP TABLE tpcds.customer_t1;
Copyright © 2011-2024 www.enmotech.com All rights reserved.