After this PR #9272, the `docs/build_help_zip.sh` will run failed. This PR fix this issue. But the help module still has some parse problem, I will fix it in next PR. This CL mainly changes: 1. fix `docs/build_help_zip.sh` error 2. remove `sql-reference-v2` to `sql-reference` 3. modify build extension github action to run `docs/build_help_zip.sh`
1.8 KiB
1.8 KiB
title, language
| title | language |
|---|---|
| ALTER-SYSTEM-MODIFY-BACKEND | en |
ALTER-SYSTEM-MODIFY-BACKEND
Name
ALTER SYSTEM MKDIFY BACKEND
Description
Modify BE node properties (administrator only!)
grammar:
ALTER SYSTEM MODIFY BACKEND "host:heartbeat_port" SET ("key" = "value"[, ...]);
illustrate:
- host can be a hostname or an ip address
- heartbeat_port is the heartbeat port of the node
- Modify BE node properties The following properties are currently supported:
- tag.location: resource tag
- disable_query: query disable attribute
- disable_load: import disable attribute
Example
-
Modify the resource tag of BE
ALTER SYSTEM MODIFY BACKEND "host1:9050" SET ("tag.location" = "group_a"); -
Modify the query disable property of BE
ALTER SYSTEM MODIFY BACKEND "host1:9050" SET ("disable_query" = "true"); -
Modify the import disable property of BE
ALTER SYSTEM MODIFY BACKEND "host1:9050" SET ("disable_load" = "true");
Keywords
ALTER, SYSTEM, ADD, BACKEND