- About PTK
- Quick Start
- Guidance
- Preparing Configuration File
- Checking the System
- Deploy Database Cluster
- Manage Clusters
- Show Cluster List
- Show Cluster Status
- Start Database
- Stop Database
- Restart Database
- Rebuild Database
- Switchover
- Failover
- Show Plugin Information
- Install Plugins
- Upgrade Database
- Scale-out Cluster
- Scale-in Cluster
- Show Database HBA
- Set Database HBA
- Show Database Parameters
- Set Database Parameters
- Show Cluster Topology Configuration
- Show Cluster Meta Information
- Update Cluster Comment
- Update Database IP
- Role Management
- Install CM
- Uninstall CM
- Manage Cluster VIP
- Install MogHA Service
- Uninstall MogHA Service
- Rename Cluster
- Create Empty Cluster
- Throw Out A Node
- Takeover A Node
- Manage Cluster
- Uninstall Database Cluster
- Collect OS Information
- Download MogDB Installer
- Encrypt Sensitive Information
- Upgrade PTK
- PTKC
- Compatible With Higher Versions of MogDB
- Reference
- Samples of Configuration Files
- Commands
- ptk
- ptk completion
- ptk view-static-config
- ptk init-cluster
- ptk collect
- ptk rec-guc
- ptk cache
- ptk gen-ptkc
- ptk manage
- ptk demo
- ptk meta
- ptk version
- ptk self
- ptk gen-om-xml
- ptk env
- ptk gen-static-config
- ptk cluster
- ptk cluster createdb
- ptk cluster uninstall-compat-tools
- ptk cluster install-compat-tools
- ptk cluster install-mogila
- ptk cluster rename
- ptk cluster throwout
- ptk cluster takeover
- ptk cluster uninstall-cm
- ptk cluster install-cm
- ptk cluster gen-cert-files
- ptk cluster load-cm-vip
- ptk cluster del-kerberos-auth
- ptk cluster add-kerberos-auth
- ptk cluster uninstall-kerberos-server
- ptk cluster install-kerberos-server
- ptk cluster is-in-upgrade
- ptk cluster upgrade-rollback
- ptk cluster upgrade-commit
- ptk cluster upgrade
- ptk cluster demote
- ptk cluster promote
- ptk cluster refresh
- ptk cluster shell
- ptk cluster modify-comment
- ptk cluster show-config
- ptk cluster set-guc
- ptk cluster show-guc
- ptk cluster set-hba
- ptk cluster show-hba
- ptk cluster scale-out
- ptk cluster scale-in
- ptk cluster uninstall-mogha
- ptk cluster install-mogha
- ptk cluster list-plugins
- ptk cluster install-plugin
- ptk cluster inspect
- ptk cluster failover
- ptk cluster switchover
- ptk cluster build
- ptk cluster status
- ptk cluster restart
- ptk cluster stop
- ptk cluster start
- ptk uninstall
- ptk ls
- ptk install
- ptk exec
- ptk template
- ptk encrypt
- ptk checkos
- ptk download
- ptk candidate
- Troubleshooting
- FAQ
- Release Notes
- Community
- Appendix: YAML Syntax
Appendix: YAML Syntax
PTK uses the configuration file in the YAML format because YAML is simple in syntax, intuitive in data structure, and convenient in comment addition.
Note: Spaces are used to show the hierarchical structure in YAML. Therefore, during configuration editing, pay attention to indentation.
This document describes the YAML syntax to help users understand the PTK configuration file format easily.
Scalar and Collection
According to YAML specification, there are two types of collections and multiple types of scalars.
The two types of collections include map and sequence.
map:
one: 1
two: 2
three: 3
sequence:
- one
- two
- three
The scalar value is a single value (which is contrary to the collection).
Scalar Type in YAML
An integer or floating-point number is usually considered numeric if it is not quoted.
count: 1
size: 2.34
If An integer or floating-point number is quoted, it is considered a string.
count: "1" # <-- string, not int
size: '2.34' # <-- string, not float
Boolean is the same.
isGood: true # bool
answer: "true" # string
An empty string is called null
not nil
.
Note: port: "80"
is legal. It is possible to pass values through the template engine and YAML interpreter, but if PTK expects the port to be an integer, it will fail.
In some cases, YAML node tags can be used to force inference of a specific type.
coffee: "yes, please"
age: !!str 21
port: !!int "80"
As shown above, the !!str
tells the interpreter that age
is a string, even though it looks like an integer. Even if port
is enclosed in quotes, it is treated as an integer.
String in YAML
The data type of most data in YAML is string. There are multiple string methods in YAML. This section describes these methods and introduces how to use some of the methods.
The following shows three single-row methods to declare a string.
way1: bare words
way2: "double-quoted strings"
way3: 'single-quoted strings'
Single row indicates that all characters must be put in one line.
-
Bare words are not quoted and escaped. Therefore, use characters with caution.
-
A double-quoted string can have specified characters escaped with a backslash. For example, you can use
\n
to wrap lines for"\"Hello\", she said"
. -
A single-quoted string is not escaped, and only the single quotes need to be escaped with
'
.
Additionally, you can declare a multi-row string.
coffee: |
Latte
Cappuccino
Espresso
The above refers to the string value of coffee
, which is equivalent to Latte\nCappuccino\nEspresso\n
.
The second line following |
must be correctly indented.
coffee: |
Latte
Cappuccino
Espresso
As shown in the above example, Latte
is indented incorrectly. As a result, the following error is reported:
Error parsing file: error converting YAML to JSON: yaml: line 7: did not find expected key
In a template, adding a line similar to "# commented first line" in multi-row text can avoid this error.
coffee: |
# Commented first line
Latte
Cappuccino
Espresso
No matter what the first line is, it will be saved and output to a string. If you need to output the file text to a configuration mapping, the comment should be the type required for reading this item.
Spaces in a Multi-Row String
In the above example, |
is used to express a multi-row string. Note that the string is followed by \n
. If you need to remove the line break using the YAML processor, add -
behind |
.
coffee: |-
Latte
Cappuccino
Espresso
Here, the value of coffee
is Latte\nCappuccino\nEspresso
without \n
at the end.
In some cases, you may hope to reserve the spaces behind |
, use |+
.
coffee: |+
Latte
Cappuccino
Espresso
another: value
Here, the value of coffee
is Latte\nCappuccino\nEspresso\n\n\n
.
The indentation and line break will be reserved in the text.
coffee: |-
Latte
12 oz
16 oz
Cappuccino
Espresso
In the above example, the value of coffee
is Latte\n 12 oz\n 16 oz\nCappuccino\nEspresso
.
Collapsing a Multi-Row String
Sometimes you need to show a string in multiple rows, but it can be interpreted as a long row. This is called collapse. To express a collapsed block, replace |
with >
.
coffee: >
Latte
Cappuccino
Espresso
In the above example, the value of coffee
is Latte Cappuccino Espresso\n
. Note that all line breaks will be converted to spaces except the last one.
You can use >-
to combine the space symbol and collapsing symbol to replace or cancel all new rows.
In the collapsing syntax, indenting a text will reserve a symbol.
coffee: >-
Latte
12 oz
16 oz
Cappuccino
Espresso
The value of coffee
is Latte\n 12 oz\n 16 oz\nCappuccino Espresso
. Both the space and line break are reserved as part of the string.
YAML Is the Superset of JSON
YAML is the superset of JSON, any legal JSON file should be a legal YAML file.
{
"coffee": "yes, please",
"coffees": [
"Latte", "Cappuccino", "Espresso"
]
}
Another expression method of the above JSON is as follows:
coffee: yes, please
coffees:
- Latte
- Cappuccino
- Espresso
The two expression methods can be together used, therefore, use them with caution.
coffee: "yes, please"
coffees: [ "Latte", "Cappuccino", "Espresso"]
All three types can be interpreted into the same meaning.