Updated on 2024-05-07 GMT+08:00

Creating and Managing Tablespaces

Context

The administrator can use tablespaces to control the layout of disks where a database is installed. The advantages are as follows:

  • If the disk partition or tablespace initially allocated to the database is full and the space cannot be logically extended, you can create and use tablespaces in other partitions until the system space is reconfigured.
  • Tablespaces allow the administrator to distribute data based on the schema of database objects, improving system performance.
    • A frequently used index can be stored in a disk having stable performance and high computing speed, such as a solid-state device.
    • A table that stores archived data and is rarely used or has low performance requirements can be placed in a disk with a slow computing speed.
  • You can use tablespaces to limit the disk space of databases. If a tablespace shares a partition with other tablespaces, the tablespace will never occupy the space allocated to other tablespaces.
  • You can use tablespaces to manage the disk space used to store database data. The database will switch to the read-only mode when the disk usage of the tablespace reaches 90%. Once the disk usage drops below 90%, the database will be restored to the read-write mode.

    You are advised to use the background monitoring program or Database Manager to monitor the disk space usage when using the database to prevent the database from switching to the read-only mode.

  • Each tablespace corresponds to a file system directory. If database node data directory /pg_location/mount1/path1 is an empty directory for which users have read and write permissions, an absolute path tablespace can be created in this directory.

    If the tablespace quota management is used, the performance may deteriorate by about 30%. MAXSIZE specifies the maximum quota for each database node. The deviation must be within 500 MB. Determine whether to set a tablespace to its maximum size as required.

GaussDB provides two tablespaces: pg_default and pg_global.
  • Default tablespace pg_default: stores non-shared system catalogs, user tables, user table indexes, temporary tables, temporary table indexes, and internal temporary tables. The corresponding storage directory is the base directory in the instance data directory.
  • Shared tablespace pg_global: stores shared system catalogs. The corresponding storage directory is the base directory in the global data directory.

Precautions

You are advised not to use user-defined tablespaces in scenarios such as Huawei Cloud. This is because user-defined tablespaces are usually used with storage media other than the main storage (storage device where the default tablespace is located, such as a disk) to isolate I/O resources that can be used by different services. Storage devices use standard configurations and do not have other available storage media in scenarios such as Huawei Cloud. If the user-defined tablespace is not properly used, the system cannot run stably for a long time and the overall performance is affected. Therefore, you are advised to use the default tablespace.

Procedure

  • Create a tablespace.
    1. Create user jack.
      1
      gaussdb=# CREATE USER jack IDENTIFIED BY '********';
      

      If the following information is displayed, the creation is successful:

      1
      CREATE ROLE
      
    2. Create a tablespace.
      1
      gaussdb=# CREATE TABLESPACE fastspace RELATIVE LOCATION 'tablespace/tablespace_1';
      

      If the following information is displayed, the creation is successful:

      1
      CREATE TABLESPACE
      

      fastspace is the new tablespace, and Database node data directory/pg_location/tablespace/tablespace_1 is an empty directory for which users have read and write permissions.

    3. Grant the permission of accessing the fastspace tablespace to user jack as a database system administrator.
      1
      gaussdb=# GRANT CREATE ON TABLESPACE fastspace TO jack;
      

      If the following information is displayed, the grant operation is successful:

      1
      GRANT
      
  • Create an object in a tablespace.

    If you have the CREATE permission on the tablespace, you can create database objects in the tablespace, such as tables and indexes.

    Take creating a table as an example:

    • Method 1: Create a table in a specified tablespace.
      1
      gaussdb=# CREATE TABLE foo(i int) TABLESPACE fastspace;
      

      If the following information is displayed, the creation is successful:

      1
      CREATE TABLE
      
    • Method 2: Run SET default_tablespace to set the default tablespace and then create a table.
      1
      2
      3
      4
      gaussdb=# SET default_tablespace = 'fastspace';
      SET
      gaussdb=# CREATE TABLE foo2(i int);
      CREATE TABLE
      

      In this example, fastspace is the default tablespace, and foo2 is the created table.

  • Query a tablespace.
    • Method 1: Check the pg_tablespace system catalog. View all the tablespaces defined by the system and users.
      1
      gaussdb=# SELECT spcname FROM pg_tablespace;
      
    • Method 2: Run the meta-command of the gsql program to query the tablespaces.
      gaussdb=# \db
  • Query the tablespace usage.
    1. Query the current usage of the tablespace.
      1
      gaussdb=# SELECT PG_TABLESPACE_SIZE('example');
      

      Information similar to the following is displayed:

      1
      2
      3
      4
       pg_tablespace_size 
      --------------------
                  2146304
      (1 row)
      

      2146304 is the size of the tablespace, and its unit is byte.

    2. Calculate the tablespace usage.

      Tablespace usage = Value of PG_TABLESPACE_SIZE/Size of the disk where the tablespace resides

  • Modify a tablespace.
    Rename tablespace fastspace to fspace.
    1
    2
    gaussdb=# ALTER TABLESPACE fastspace RENAME TO fspace;
    ALTER TABLESPACE
    
  • Delete a tablespace and related data.
    • Delete user jack.
      1
      2
      gaussdb=# DROP USER jack CASCADE;
      DROP ROLE
      
    • Delete tables foo and foo2.
      1
      2
      gaussdb=# DROP TABLE foo;
      gaussdb=# DROP TABLE foo2;
      

      If the following information is displayed, the operation is successful:

      1
      DROP TABLE
      
    • Delete tablespace fspace.
      1
      2
      gaussdb=# DROP TABLESPACE fspace;
      DROP TABLESPACE
      

      Only the tablespace owner or system administrator can drop a tablespace.