Updated on 2025-07-29 GMT+08:00

Modifying Parameters

Function

This API is used to modify parameters by node type. Before calling this API:

URI

PUT /v3/{project_id}/instances/{instance_id}/starrocks/configurations

Table 1 URI parameters

Parameter

Mandatory

Type

Description

project_id

Yes

String

Definition

Project ID of a tenant in a region.

To obtain this value, see Obtaining a Project ID.

Constraints

N/A

Range

The value contains 32 characters. Only letters and digits are allowed.

Default Value

N/A

instance_id

Yes

String

Definition

StarRocks instance ID, which is compliant with the UUID format.

Constraints

N/A

Range

The value contains 36 characters with a suffix of in07. Only letters and digits are allowed.

Default Value

N/A

Request Parameters

Table 2 Request header parameters

Parameter

Mandatory

Type

Description

X-Auth-Token

Yes

String

Definition

User token.

To obtain this value, call the IAM API for obtaining a user token.

The value of X-Subject-Token in the response header is the token value.

Constraints

N/A

Range

N/A

Default Value

N/A

Content-Type

Yes

String

Definition

Content type.

Constraints

N/A

Range

application/json

Default Value

N/A

X-Language

No

String

Definition

Request language type.

Constraints

N/A

Range

  • en-us
  • zh-cn

Default Value

en-us

Table 3 Request body parameters

Parameter

Mandatory

Type

Description

node_type

Yes

String

Definition

Node type.

Constraints

N/A

Range

  • be

  • fe

Default Value

N/A

parameter_values

Yes

Map<String,String>

Definition

Mapping between parameter names and parameter values. You can specify parameter values based on a default parameter template. If this parameter is not specified, the original parameter information is retained.

Constraints

N/A

Range

N/A

Default Value

N/A

Response Parameters

Status code: 200

Table 4 Response body parameters

Parameter

Type

Description

job_id

String

Definition

ID of the task for modifying parameters of a specified instance.

Range

N/A

restart_required

Boolean

Definition

Whether a reboot is required.

Range

true: Yes

false: No

Status code: 400

Table 5 Response body parameters

Parameter

Type

Description

error_code

String

Error code.

error_msg

String

Error message.

Status code: 500

Table 6 Response body parameters

Parameter

Type

Description

error_code

String

Error code.

error_msg

String

Error message.

Example Request

PUT https://{endpoint}/v3/97b026aa9cc4417888c14c84a1ad9860/instances/3ef58db3986540d19f95151309368d34in17/starrocks/configurations

{
  "parameter_values" : {
    "sync_tablet_meta" : "true"
  },
  "node_type" : "be"
}

Example Response

Status code: 200

Result returned by the API.

{
  "job_id" : "aacd2f81-3fcb-427b-a52e-142639c6d1b9",
  "restart_required" : false
}

Status Code

For details, see Status Codes.

Error Code

For details, see Error Codes.