Help Center> MapReduce Service> Component Operation Guide (LTS)> Using ClickHouse> Enabling the Read-Only Mode of the ClickHouse Table
Updated on 2023-05-15 GMT+08:00

Enabling the Read-Only Mode of the ClickHouse Table

This section applies only to MRS 3.2.0 or later.

Scenario

During data migration, one-click balancing, decommissioning and capacity reduction, ClickHouse allows you to set the only_allow_select_statement parameter for MergeTree series tables to enable SELECT operations instead of ALTER, RENAME, DROP, and INSERT operations.

Procedure for Enabling the Read-Only Mode of the ClickHouse Table

  1. Install the client. For details, see Installing a Client.
  2. Run the following commands to log in to the node where the client is installed as user root:

    cd Client installation directory

    source bigdata_env

  3. Run the following command to authenticate the user if the cluster is in security mode (with Kerberos authentication enabled). Otherwise, skip this step.

    kinit Component service user

    The user must have the ClickHouse administrator permissions.

  4. Run the proper client command to connect to the ClickHouse server.

    • Normal mode

      clickhouse client --host IP address of the ClickHouse instance--user Username --password --port 9440 --secure

      Enter the user password.

    • Security mode

      clickhouse client --host IP address of the ClickHouse instance--port 9440 --secure

    • The user in normal mode is the default user, or you can create an administrator using the open source capability provided by the ClickHouse community. You cannot use the users created on FusionInsight Manager.
    • To obtain the IP address of the ClickHouseServer instance, log in to FusionInsight Manager, choose Cluster > Services > ClickHouse, and click the Instance tab.

  5. Run the following statement to set the table to read-only:

    ALTER TABLE {table_name} MODIFY SETTING only_allow_select_statement = true;

Disabling the Read-Only Mode of the Table

  1. Log in to the ClickHouse client by referring to 2 to 4.
  2. Run the following statement to disable the read-only mode of the table:

    ALTER TABLE {table_name} MODIFY SETTING only_allow_select_statement = false settings hw_internal_operation = true;