HomeMogDBMogDB StackUqbar
v3.0

Documentation:v3.0

Supported Versions:

Other Versions:

Creating an Index Online

Availability

This feature is available since MogDB 1.1.0.

Introduction

Uses the CREATE INDEX CONCURRENTLY syntax to create indexes online without blocking DML.

Benefits

When creating an index, you can specify the CONCURRENTLY keyword to ensure that the DML and online services are not blocked during the index creation.

Description

A normal CREATE INDEX acquires exclusive lock on the table on which the index depends, blocking other accesses until the index drop can be completed. If the CONCURRENTLY keyword is specified, the ShareUpdateExclusiveLock lock is added to the table so that DML is not blocked during the creation.

This keyword is specified when an index is created online. 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 creation of the index takes a longer time than normal. In addition, the CPU and I/O consumption also affects other services.

Enhancements

None

Constraints

  • Only one index name can be specified when an index is created online.
  • The CREATE INDEX statement can be run within a transaction, but CREATE INDEX CONCURRENTLY cannot.
  • Column-store tables and temporary tables do not support CREATE INDEX CONCURRENTLY.
  • Partitioned tables support CREATE GLOBAL INDEX CONCURRENTLY, but do not support CREATE LOCAL INDEX CONCURRENTLY.

Dependencies

None

Copyright © 2011-2024 www.enmotech.com All rights reserved.