PolarDB-X Instance Management
Manage Alibaba Cloud PolarDB-X instances through the aliyun polardbx CLI: instance lifecycle, scaling, parameter management, monitoring, and logs.
This skill uses intent routing: identify the user's intent, run pre-flight checks, then load the relevant module reference document fully before generating any CLI command.
Architecture
Alibaba Cloud PolarDB-X Instance Management
├── Instance Lifecycle --> references/instance-lifecycle.md
│ ├── CreateDBInstance
│ ├── DeleteDBInstance
│ ├── RestartDBInstance
│ ├── DescribeDBInstanceAttribute
│ ├── DescribeDBInstances
│ ├── DescribeDBInstanceTopology
│ ├── DescribeTasks
│ ├── ModifyDBInstanceDescription
│ ├── ModifyDBInstanceMaintainTime
│ └── UpgradeDBInstanceKernelVersion
├── Scaling --> references/scaling.md
│ ├── UpdatePolarDBXInstanceNode
│ ├── ModifyDBInstanceClass
│ └── DescribeScaleOutMigrateTaskList
├── Parameters --> references/parameters.md
│ ├── DescribeDBInstanceConfig
│ ├── ModifyDBInstanceConfig
│ ├── DescribeParameters
│ ├── ModifyParameter
│ └── DescribeParameterTemplates
├── Instance Specs --> scripts/spec_lookup.sh (spec code <-> cores/memory)
│ ├── Enterprise CN (CnClass)
│ ├── Enterprise DN (DnClass)
│ ├── Standard DBNodeClass
│ └── Naming Rules
└── Monitoring & Logs --> references/monitoring-logs.md
├── DescribeDBNodePerformance
├── DescribeSlowLogRecords
└── DescribeBinaryLogList
Extended Modules
The following modules cover the full PolarDB-X (2020-02-02) API surface. See each reference file for the complete API spec.
├── Account Management --> references/account-management.md
├── Database Management --> references/database-management.md
├── Backup & Restore --> references/backup-restore.md
├── Security & Access --> references/security-access.md
├── SQL Audit & Compliance --> references/sql-audit-compliance.md
├── Operation Tasks & Events --> references/operation-tasks.md
├── HA & Migration --> references/ha-migration.md
├── Connection & Endpoint --> references/connection-endpoint.md
├── Tags & Resource Group --> references/tags-resourcegroup.md
├── Metadata & Query --> references/metadata-query.md
├── Cold Storage --> references/cold-storage.md
├── Data Evaluate & Migration--> references/data-evaluate-migration.md
├── SQL Flashback --> references/sql-flashback.md
├── CDC (Log Engine) --> references/cdc.md
├── Columnar --> references/columnar.md
├── GDN --> references/gdn.md
└── Mem0 --> references/mem0.md
Requirement Analysis
Before routing, analyze the user request:
- Identify intent: create / delete / restart / describe / list / scale / modify parameters / view monitoring / view logs.
- Extract required parameters:
RegionId, instance identifier (DBInstanceName or DBInstanceId), EngineVersion, DBInstanceClass, node counts, time ranges, etc.
- If any required parameter is missing, ask the user. Do NOT guess values or APIs.
- After intent and parameters are clear, load the matched reference document fully, then construct the CLI command.
Pre-flight Checks
Run these checks at the start of every skill invocation. Only load the referenced document if a check fails. If step 1/2/3/5 fails, read references/cli-installation-guide.md; if step 4 fails, read references/ram-policies.md.
1. aliyun CLI version
aliyun --version
Success: Output contains Alibaba Cloud Command Line Interface Version and the version is >= 3.3.3.
Failure: Read references/cli-installation-guide.md section 1.
2. aliyun CLI plugin and configuration
aliyun configure set --auto-plugin-install true
aliyun plugin update
aliyun configure list
Success: aliyun configure list shows at least one valid profile (AK, STS, or OAuth identity).
Failure: Read references/cli-installation-guide.md sections 2 and 3.
3. Caller identity
aliyun sts get-caller-identity
Success: Returns JSON with AccountId, UserId, and Arn.
Failure: Read references/cli-installation-guide.md section 4.
4. RAM permissions
aliyun polardbx describe-db-instances --biz-region-id <RegionId> --region <RegionId> --user-agent AlibabaCloud-Agent-Skills/alibabacloud-polardbx-ops/{session-id}
Success: Returns an instance list or empty list without permission errors.
Failure: Read references/ram-policies.md.
5. jq availability
jq --version
Success: Output contains a version string such as jq-1.7.1.
Failure: Read references/cli-installation-guide.md section 5.
Observability (MUST follow for every aliyun command)
Upon loading this skill, generate a random session ID (32-char lowercase hex string) once for the entire session. Use it as {session-id} below.
Rule: Every aliyun CLI command that calls a cloud API MUST include the --user-agent flag.
Local utility commands (e.g. configure, plugin, version) do not support this flag and should be excluded.
--user-agent AlibabaCloud-Agent-Skills/alibabacloud-polardbx-ops/{session-id}
Example (assuming session-id is a1b2c3d4e5f6a7b8c9d0e1f2a3b4c5d6):
aliyun polardbx describe-db-instances --biz-region-id cn-hangzhou --region cn-hangzhou --user-agent AlibabaCloud-Agent-Skills/alibabacloud-polardbx-ops/a1b2c3d4e5f6a7b8c9d0e1f2a3b4c5d6
Do not skip, alter the format, or omit --user-agent on any aliyun API command invocation.
Script / Terraform execution: When running Python SDK scripts or Terraform commands or bash scripts, inject the session-id via inline environment variable so the code can read it at runtime:
# Python SDK script
SKILL_SESSION_ID={session-id} python3 scripts/deploy.py
# Terraform
SKILL_SESSION_ID={session-id} terraform apply
Scripts and Terraform configs should read SKILL_SESSION_ID from the environment (default to empty string if absent). See references/how-to-implement-by-common-sdk.md for SDK patterns.
Intent Routing
Match the user request to the first matching row, then load the listed reference file and follow its API spec.
| If the user wants to ... |
Module |
Required reading |
Key APIs |
| Create / delete / restart / describe / list instances, modify description / maintain time, upgrade kernel, query topology or tasks |
Instance Lifecycle |
references/instance-lifecycle.md |
CreateDBInstance, DeleteDBInstance, RestartDBInstance, DescribeDBInstanceAttribute, DescribeDBInstances, DescribeDBInstanceTopology, DescribeTasks, ModifyDBInstanceDescription, ModifyDBInstanceMaintainTime, UpgradeDBInstanceKernelVersion |
| Scale nodes / change instance class / view scale-out migration progress |
Scaling |
references/scaling.md |
UpdatePolarDBXInstanceNode, ModifyDBInstanceClass, DescribeScaleOutMigrateTaskList |
| View / modify instance config or parameters |
Parameters |
references/parameters.md |
DescribeDBInstanceConfig, ModifyDBInstanceConfig, DescribeParameters, ModifyParameter, DescribeParameterTemplates |
| Look up CN / DN / DBNodeClass spec codes, or convert between a spec code and its cores/memory |
Instance Specs |
scripts/spec_lookup.sh for spec-code <-> hardware mapping (--code / --cores+--memory; --list to enumerate all specs) |
spec_lookup.sh --code / --cores/--memory |
| View performance data / slow logs / binlog list |
Monitoring & Logs |
references/monitoring-logs.md |
DescribeDBNodePerformance, DescribeSlowLogRecords, DescribeBinaryLogList |
| Manage database accounts (create/delete/list/reset password/privilege) |
Account Management |
references/account-management.md |
CreateAccount, DeleteAccount, DescribeAccountList, CreateSuperAccount, ResetAccountPassword, ResetAccountPasswordRestrict, ModifyAccountDescription, ModifyAccountPrivilege |
| Manage databases and tables |
Database Management |
references/database-management.md |
CreateDB, DeleteDB, DescribeDbList, DescribeDistributeTableList, DescribeArchiveTableList, ModifyDatabaseDescription |
| Backup / restore / clone instance |
Backup & Restore |
references/backup-restore.md |
CreateBackup, DescribeBackupPolicy, UpdateBackupPolicy, DescribeBackupSet, DescribeBackupSetList, DescribeOpenBackupSet, RestoreDBInstance |
| Manage IP whitelist / SSL / TDE / KMS authorization |
Security & Access |
references/security-access.md |
DescribeSecurityIps, ModifySecurityIps, DescribeDBInstanceSSL, UpdateDBInstanceSSL, DescribeDBInstanceTDE, UpdateDBInstanceTDE, DescribeUserEncryptionKeyList, CheckCloudResourceAuthorized |
| SQL audit / rights separation |
SQL Audit & Compliance |
references/sql-audit-compliance.md |
EnableSqlAudit, DisableSqlAudit, DescribeSqlAuditInfo, CheckSqlAuditSlsStatus, EnableRightsSeparation, DisableRightsSeparation |
| View / manage O&M events, maintenance conf, history events, health |
Operation Tasks & Events |
references/operation-tasks.md |
DescribeActiveOperationTasks, DescribeActiveOperationTaskCount, DescribeActiveOperationMaintainConf, ModifyActiveOperationMaintainConf, ModifyActiveOperationTasks, CancelActiveOperationTasks, DescribeEvents, SkipCurrentStep, CheckHealth, DescribeComponentPropeties |
| HA switch / zone migration |
HA & Migration |
references/ha-migration.md |
DescribeDBInstanceHA, SwitchDBInstanceHA, MigrateDBInstance, AlignStoragePrimaryAzone, ConfirmNoConnection, StartSwitchDatabase, DescribeTransformStatus (standard-to-enterprise upgrade not supported) |
| Manage connection strings / VIP / custom endpoints |
Connection & Endpoint |
references/connection-endpoint.md |
DescribeDBInstanceEndpoint, ModifyDBInstanceConnectionString, ModifyDBInstanceVip, CreateCustomEndpoint, DeleteCustomEndpoint, ModifyCustomEndpoint, ModifyCustomEndpointNet, DescribeCustomEndpointList, DescribeDBInstanceViaEndpoint, CreateSubCNInstance, DeleteSubCNInstance |
| Manage tags / resource group |
Tags & Resource Group |
references/tags-resourcegroup.md |
TagResources, UntagResources, ListTagResources, DescribeTags, ChangeResourceGroup, UpdateCustinsParam |
| Query regions / VPC / VSwitch / character set / data nodes / parameter groups |
Metadata & Query |
references/metadata-query.md |
DescribeRegions, DescribeAvailableCrossRegions, DescribeEnabledCrossRegions, DescribeRdsVpcs, DescribeRdsVswitches, DescribeCharacterSet, DescribePolarxDataNodes, DescribeParameterGroups |
| Manage cold-data volume / storage pool / storage usage |
Cold Storage |
references/cold-storage.md |
AllocateColdDataVolume, ReleaseColdDataVolume, DescribeColdDataBasicInfo, CreateStoragePool, DescribeStoragePoolInfo, DescribeShowStorageInfo |
| SQL evaluation / evaluate-import tasks / replication inspection / engine migration |
Data Evaluate & Migration |
references/data-evaluate-migration.md |
CreateSQLEvaluateTask, DescribeEvaluateAndImportTask, DescribeEvaluateAndImportTasks, DeleteEvaluateAndImportTask, CreateRplInspectionTask, DescribeRplInspectionTask, CloseEngineMigration, ModifyEngineMigration |
| SQL flashback (row-level recovery) |
SQL Flashback |
references/sql-flashback.md |
DescribeSqlFlashbackTaskList, PreCheckSqlFlashbackTask, SubmitSqlFlashbackTask |
| CDC / log engine info, spec, version |
CDC (Log Engine) |
references/cdc.md |
DescribeCdcInfo, DescribeCdcClassList, DescribeCdcVersionList, ModifyCdcClass, UpgradeCDCVersion |
| Columnar (column store) info, spec, version |
Columnar |
references/columnar.md |
AttachColumnarInstance, DescribeColumnarInfo, DescribeColumnarClassList, DescribeColumnarVersionList, ModifyColumnarClass, UpgradeColumnarVersion |
| GDN (Global Database Network) management |
GDN |
references/gdn.md |
CreateGdnInstance, DeleteGdnInstance, DescribeGdnInstances, CreateGdnStandbyMember, SwitchGdnMemberRole |
| Mem0 (memory engine) management |
Mem0 |
references/mem0.md |
CreateMem0, DeleteMem0, DescribeMem0Info, DescribeMem0SecurityIps, ModifyMem0SecurityIps, ResetMem0AccountPassword, CreateGatewayConsumerForPolarDBX |
If multiple intents are present, handle them sequentially: route -> execute -> verify -> next route.
If the intent does not match any row, ask the user to clarify; do NOT guess an API.
Global Conventions
These conventions apply to every aliyun polardbx CLI command produced by this skill.
Command format
aliyun polardbx <action-name> --biz-region-id <RegionId> --region <RegionId> [other parameters]
[MUST] Always pass BOTH --biz-region-id <RegionId> AND the global flag --region <RegionId> with the same value. --biz-region-id is only a business-level parameter; the CLI resolves the API endpoint from the profile default region or the global --region flag. Without --region, every request is sent to the profile's default-region endpoint (e.g. polardbx.cn-hangzhou.aliyuncs.com), so instances/VPCs in other regions return InvalidDBInstance.NotFound / InvalidParameter.VpcId.VSwitchId.
- The
aliyun CLI returns JSON by default. Do NOT add --output unless the user explicitly asks for table format.
- Read operations append
--connect-timeout 3 --read-timeout 10.
- Write operations append
--connect-timeout 3 --read-timeout 30 --client-token <token>.
Command style: plugin mode
This skill uses the aliyun CLI plugin mode for PolarDB-X:
| Example |
Parameter naming |
Region parameters |
aliyun polardbx create-db-instance |
--biz-region-id, --vpc-id, --vswitch-id |
--biz-region-id + --region (global, same value) |
- All action names are lowercase words connected with hyphens (
describe-db-instances).
- All parameter flags are kebab-case (
--db-instance-name, --client-token).
- Do NOT mix plugin mode with the legacy PascalCase API style within a single command.
- If a parameter is rejected, fall back to
aliyun polardbx <action-name> --help to verify the exact parameter name.
CN spec naming
PolarDB-X CN node specs follow the pattern polarx.xN.<size>.<suffix>. The <size> field determines the core multiplier:
| Suffix |
Cores |
Memory |
Example (x4) |
large |
N (1x) |
4N GB |
polarx.x4.large.2e = 4C16G |
xlarge |
2N (2x) |
8N GB |
polarx.x4.xlarge.2e = 8C32G |
large is NOT a small size; it is the base (1x) multiplier.
xlarge doubles the core count and memory.
- When the user says "4-core 16G", select
large; do NOT select xlarge.
- For full spec list, run
aliyun polardbx create-db-instance --help.
Output parsing
- Pipe the default JSON output to
jq and extract only the fields the user needs.
- Avoid dumping large raw JSON blocks; prefer concise
jq filters.
- Example:
aliyun polardbx describe-db-instances \
--biz-region-id cn-hangzhou \
--region cn-hangzhou \
--connect-timeout 3 --read-timeout 10 \
--user-agent AlibabaCloud-Agent-Skills/alibabacloud-polardbx-ops/{session-id} \
| jq '.DBInstances[] | {DBInstanceName, Status, Description}'
Table output
If the user explicitly requests table format, use --output with cols and rows:
aliyun polardbx describe-db-instances \
--biz-region-id cn-hangzhou \
--region cn-hangzhou \
--output cols=DBInstanceName,Status,Description,rows=DBInstances \
--user-agent AlibabaCloud-Agent-Skills/alibabacloud-polardbx-ops/{session-id}
In zsh, quote the --output value to prevent glob expansion: --output 'cols=DBInstanceName,Status,Description,rows=DBInstances'.
Required user input
RegionId: MUST be explicitly provided by the user. NEVER guess. NEVER use a default region.
- Instance identifier:
DBInstanceName or DBInstanceId depending on the API. MUST be explicitly provided.
Idempotency
For write APIs (CreateDBInstance, RestartDBInstance, UpdatePolarDBXInstanceNode, ModifyDBInstanceClass, ModifyDBInstanceMaintainTime, ModifyDBInstanceConfig, ModifyParameter, UpgradeDBInstanceKernelVersion), use --client-token.
DeleteDBInstance does NOT support --client-token; do not append it.
CLIENT_TOKEN=$(uuidgen) # reuse on retry
On timeout / failure, retry with the same ClientToken.
Pagination
For all paginated read operations (DescribeDBInstances, DescribeTasks, DescribeSlowLogRecords, DescribeBinaryLogList, etc.), use --page-size 100 unless the user explicitly requests a different size.
- PolarDB-X APIs typically enforce a maximum
PageSize of 100.
- Use
--page-number to iterate through pages when more than 100 results exist.
Security constraints
- NEVER expose the instance to the public internet.
- NEVER recommend
AllocateInstancePublicConnection or any public-network command.
- NEVER ask users to provide AK/SK directly in the conversation.
- NEVER echo credential values.
Error & Timeout Handling
When a CLI command fails, handle it according to the following rules.
Network timeout / connect-timeout / read-timeout
- Retry up to 3 times with exponential backoff: 5s / 10s / 20s.
- For idempotent write operations, reuse the same
--client-token on retry.
- If all retries fail, prompt the user to check local network and Region availability.
API business errors (Code/Message)
| Error code |
Handling |
InvalidDBInstanceId.NotFound / InvalidDBInstance.NotFound |
Verify DBInstanceName / DBInstanceId and RegionId |
Forbidden.RAM / NoPermission |
Read references/ram-policies.md |
Throttling |
Back off exponentially, then retry; reduce call frequency |
InternalError |
Retry up to 3 times; if still failing, suggest opening a support ticket |
MissingParameter / InvalidParameter |
Re-read the relevant reference file and confirm all required parameters |
Asynchronous tasks
For operations that return a TaskId or order ID (create / delete / restart / scale / upgrade / class change):
- Poll task status with
DescribeTasks.
- Poll interval: 10 seconds.
- Timeout: 30 minutes (configurable).
- On task failure, output
TaskErrorCode and TaskErrorMessage.
Preferred: Use the bundled polling script:
./scripts/poll_task.sh \
--region <RegionId> \
--instance-id <DBInstanceId> \
--start-time <StartDate> \
--end-time <EndDate> \
--session-id {session-id}
Manual alternative:
aliyun polardbx describe-tasks \
--biz-region-id <RegionId> \
--region <RegionId> \
--db-instance-id <DBInstanceId> \
--start-time <StartTime> \
--end-time <EndTime> \
--page-number 1 \
--page-size 100 \
--connect-timeout 3 --read-timeout 10 \
--user-agent AlibabaCloud-Agent-Skills/alibabacloud-polardbx-ops/{session-id} \
| jq '.Items[] | {TaskId, Status, TaskAction, TaskErrorCode, TaskErrorMessage}'
DescribeTasks returns the task list in .Items[] (NOT .Tasks[]). Each item has Status (e.g. "8" finished, RUNNING/FAILED), TaskAction, TaskId, BeginTime, FinishTime, and optional TaskErrorCode/TaskErrorMessage. A task with a non-empty FinishTime has ended; check Status for success or failure.
Unexpected output
- If the output is empty or fields are missing, first run the command without
| jq ... to check whether the default JSON output is valid.
- If
jq fails, verify the filter against the raw JSON output.
- Use
--cli-query carefully; verify the JMESPath expression against the raw JSON output.
- All fields shown to the user SHOULD be extracted via
jq filters.
Reference Links
| Reference |
Description |
| references/instance-lifecycle.md |
Instance lifecycle APIs |
| references/scaling.md |
Scaling and class-change APIs |
| references/parameters.md |
Config and parameter APIs |
| references/monitoring-logs.md |
Performance, slow log, and binlog APIs |
| references/account-management.md |
Database account management APIs |
| references/database-management.md |
Database and table management APIs |
| references/backup-restore.md |
Backup policy, backup set, and restore APIs |
| references/security-access.md |
IP whitelist, SSL, TDE, KMS authorization APIs |
| references/sql-audit-compliance.md |
SQL audit and rights-separation APIs |
| references/operation-tasks.md |
O&M events, maintenance config, history events APIs |
| references/ha-migration.md |
HA switch, zone migration, transform APIs |
| references/connection-endpoint.md |
Connection string, VIP, custom endpoint APIs |
| references/tags-resourcegroup.md |
Tag and resource-group APIs |
| references/metadata-query.md |
Region, VPC/VSwitch, character set, data node APIs |
| references/cold-storage.md |
Cold-data volume and storage pool APIs |
| references/data-evaluate-migration.md |
SQL evaluation and engine migration APIs |
| references/sql-flashback.md |
SQL flashback (row-level recovery) APIs |
| references/cdc.md |
CDC / log engine APIs |
| references/columnar.md |
Columnar (column store) APIs |
| references/gdn.md |
Global Database Network (GDN) APIs |
| references/mem0.md |
Mem0 memory engine APIs |
| references/cli-installation-guide.md |
CLI installation, plugin, credential, and identity checks |
| references/ram-policies.md |
RAM permissions and troubleshooting |
| references/index.md |
Reference overview and routing index |
| Official API Reference |
PolarDB-X OpenAPI documentation |
Scripts
| Script |
Description |
| scripts/poll_task.sh |
Poll async task status with timeout and exponential backoff |
| scripts/spec_lookup.sh |
Convert between a PolarDB-X spec code and its hardware config (cores/memory), in both directions; supports --category/--disk/--type filters and --json |
Runtime dependencies (bash >= 4.0, aliyun CLI >= 3.3.3, jq >= 1.6) are declared in each script's header comments. spec_lookup.sh only needs bash + awk (no CLI/jq).
Spec code <-> hardware lookup
To resolve a spec code to cores/memory, or to find spec codes for a target hardware size, call scripts/spec_lookup.sh:
# Spec code -> hardware
./scripts/spec_lookup.sh --code polarx.x4.large.2e
# Hardware -> matching spec code(s) (filter by module / disk / type as needed)
./scripts/spec_lookup.sh --cores 8 --memory 32 --category cn --disk local
# Machine-readable output for the agent
./scripts/spec_lookup.sh --code mysql.n4.medium.25 --json
--category: cn (enterprise compute) / dn (enterprise storage) / standard.
--disk: local (custom_local_ssd) / cloud (cloud_auto).
--type: general / dedicated.
- Exit codes:
0 found, 3 invalid args, 4 no match.
1---2name: alibabacloud-polardbx-ops3description: Manage Alibaba Cloud PolarDB-X instance lifecycle and routine operations via the Aliyun CLI. Use when the user asks to create, delete, restart, scale, modify, monitor, or inspect PolarDB-X instances. Triggers: "polardb-x", "polardbx", "create polardb-x", "delete polardb-x", "restart polardb-x", "scale polardb-x", "upgrade polardb-x", "describe polardb-x", "polardb-x instance", "polardb-x parameters", "polardb-x slow log", "polardb-x performance", "polardb-x binlog"4---5
6# PolarDB-X Instance Management
7
8Manage Alibaba Cloud PolarDB-X instances through the `aliyun polardbx` CLI: instance lifecycle, scaling, parameter management, monitoring, and logs.
9
10This skill uses **intent routing**: identify the user's intent, run pre-flight checks, then load the relevant module reference document fully before generating any CLI command.
11
12---
13
14## Architecture
15
16```
17Alibaba Cloud PolarDB-X Instance Management
18├── Instance Lifecycle --> references/instance-lifecycle.md
19│ ├── CreateDBInstance
20│ ├── DeleteDBInstance
21│ ├── RestartDBInstance
22│ ├── DescribeDBInstanceAttribute
23│ ├── DescribeDBInstances
24│ ├── DescribeDBInstanceTopology
25│ ├── DescribeTasks
26│ ├── ModifyDBInstanceDescription
27│ ├── ModifyDBInstanceMaintainTime
28│ └── UpgradeDBInstanceKernelVersion
29├── Scaling --> references/scaling.md
30│ ├── UpdatePolarDBXInstanceNode
31│ ├── ModifyDBInstanceClass
32│ └── DescribeScaleOutMigrateTaskList
33├── Parameters --> references/parameters.md
34│ ├── DescribeDBInstanceConfig
35│ ├── ModifyDBInstanceConfig
36│ ├── DescribeParameters
37│ ├── ModifyParameter
38│ └── DescribeParameterTemplates
39├── Instance Specs --> scripts/spec_lookup.sh (spec code <-> cores/memory)
40│ ├── Enterprise CN (CnClass)
41│ ├── Enterprise DN (DnClass)
42│ ├── Standard DBNodeClass
43│ └── Naming Rules
44└── Monitoring & Logs --> references/monitoring-logs.md
45 ├── DescribeDBNodePerformance
46 ├── DescribeSlowLogRecords
47 └── DescribeBinaryLogList
48```
49
50### Extended Modules
51
52The following modules cover the full PolarDB-X (2020-02-02) API surface. See each reference file for the complete API spec.
53
54```
55├── Account Management --> references/account-management.md
56├── Database Management --> references/database-management.md
57├── Backup & Restore --> references/backup-restore.md
58├── Security & Access --> references/security-access.md
59├── SQL Audit & Compliance --> references/sql-audit-compliance.md
60├── Operation Tasks & Events --> references/operation-tasks.md
61├── HA & Migration --> references/ha-migration.md
62├── Connection & Endpoint --> references/connection-endpoint.md
63├── Tags & Resource Group --> references/tags-resourcegroup.md
64├── Metadata & Query --> references/metadata-query.md
65├── Cold Storage --> references/cold-storage.md
66├── Data Evaluate & Migration--> references/data-evaluate-migration.md
67├── SQL Flashback --> references/sql-flashback.md
68├── CDC (Log Engine) --> references/cdc.md
69├── Columnar --> references/columnar.md
70├── GDN --> references/gdn.md
71└── Mem0 --> references/mem0.md
72```
73
74---
75
76## Requirement Analysis
77
78Before routing, analyze the user request:
79
801. Identify intent: create / delete / restart / describe / list / scale / modify parameters / view monitoring / view logs.
812. Extract required parameters: `RegionId`, instance identifier (`DBInstanceName` or `DBInstanceId`), `EngineVersion`, `DBInstanceClass`, node counts, time ranges, etc.
823. If any required parameter is missing, ask the user. Do NOT guess values or APIs.
834. After intent and parameters are clear, load the matched reference document **fully**, then construct the CLI command.
84
85---
86
87## Pre-flight Checks
88
89Run these checks at the start of every skill invocation. Only load the referenced document if a check fails. If step 1/2/3/5 fails, read [references/cli-installation-guide.md](references/cli-installation-guide.md); if step 4 fails, read [references/ram-policies.md](references/ram-policies.md).
90
91### 1. aliyun CLI version
92
93```bash
94aliyun --version
95```
96
97**Success:** Output contains `Alibaba Cloud Command Line Interface Version` and the version is >= `3.3.3`.
98
99**Failure:** Read [references/cli-installation-guide.md](references/cli-installation-guide.md) section 1.
100
101### 2. aliyun CLI plugin and configuration
102
103```bash
104aliyun configure set --auto-plugin-install true
105aliyun plugin update
106aliyun configure list
107```
108
109**Success:** `aliyun configure list` shows at least one valid profile (AK, STS, or OAuth identity).
110
111**Failure:** Read [references/cli-installation-guide.md](references/cli-installation-guide.md) sections 2 and 3.
112
113### 3. Caller identity
114
115```bash
116aliyun sts get-caller-identity
117```
118
119**Success:** Returns JSON with `AccountId`, `UserId`, and `Arn`.
120
121**Failure:** Read [references/cli-installation-guide.md](references/cli-installation-guide.md) section 4.
122
123### 4. RAM permissions
124
125```bash
126aliyun polardbx describe-db-instances --biz-region-id <RegionId> --region <RegionId> --user-agent AlibabaCloud-Agent-Skills/alibabacloud-polardbx-ops/{session-id}
127```
128
129**Success:** Returns an instance list or empty list without permission errors.
130
131**Failure:** Read [references/ram-policies.md](references/ram-policies.md).
132
133### 5. jq availability
134
135```bash
136jq --version
137```
138
139**Success:** Output contains a version string such as `jq-1.7.1`.
140
141**Failure:** Read [references/cli-installation-guide.md](references/cli-installation-guide.md) section 5.
142
143---
144
145## Observability (MUST follow for every aliyun command)
146
147Upon loading this skill, generate a random session ID (32-char lowercase hex string) once for the entire session. Use it as `{session-id}` below.
148
149**Rule: Every `aliyun` CLI command that calls a cloud API MUST include the `--user-agent` flag.**
150Local utility commands (e.g. `configure`, `plugin`, `version`) do not support this flag and should be excluded.
151
152```
153--user-agent AlibabaCloud-Agent-Skills/alibabacloud-polardbx-ops/{session-id}
154```
155
156Example (assuming session-id is `a1b2c3d4e5f6a7b8c9d0e1f2a3b4c5d6`):
157```bash
158aliyun polardbx describe-db-instances --biz-region-id cn-hangzhou --region cn-hangzhou --user-agent AlibabaCloud-Agent-Skills/alibabacloud-polardbx-ops/a1b2c3d4e5f6a7b8c9d0e1f2a3b4c5d6
159```
160
161Do not skip, alter the format, or omit `--user-agent` on any `aliyun` API command invocation.
162
163**Script / Terraform execution:** When running Python SDK scripts or Terraform commands or bash scripts, inject the session-id via inline environment variable so the code can read it at runtime:
164
165```bash
166# Python SDK script
167SKILL_SESSION_ID={session-id} python3 scripts/deploy.py
168
169# Terraform
170SKILL_SESSION_ID={session-id} terraform apply
171```
172
173Scripts and Terraform configs should read `SKILL_SESSION_ID` from the environment (default to empty string if absent). See `references/how-to-implement-by-common-sdk.md` for SDK patterns.
174
175---
176
177## Intent Routing
178
179Match the user request to the first matching row, then load the listed reference file and follow its API spec.
180
181| If the user wants to ... | Module | Required reading | Key APIs |
182|---|---|---|---|
183| Create / delete / restart / describe / list instances, modify description / maintain time, upgrade kernel, query topology or tasks | Instance Lifecycle | [references/instance-lifecycle.md](references/instance-lifecycle.md) | CreateDBInstance, DeleteDBInstance, RestartDBInstance, DescribeDBInstanceAttribute, DescribeDBInstances, DescribeDBInstanceTopology, DescribeTasks, ModifyDBInstanceDescription, ModifyDBInstanceMaintainTime, UpgradeDBInstanceKernelVersion |
184| Scale nodes / change instance class / view scale-out migration progress | Scaling | [references/scaling.md](references/scaling.md) | UpdatePolarDBXInstanceNode, ModifyDBInstanceClass, DescribeScaleOutMigrateTaskList |
185| View / modify instance config or parameters | Parameters | [references/parameters.md](references/parameters.md) | DescribeDBInstanceConfig, ModifyDBInstanceConfig, DescribeParameters, ModifyParameter, DescribeParameterTemplates |
186| Look up CN / DN / DBNodeClass spec codes, or convert between a spec code and its cores/memory | Instance Specs | [scripts/spec_lookup.sh](scripts/spec_lookup.sh) for spec-code <-> hardware mapping (`--code` / `--cores`+`--memory`; `--list` to enumerate all specs) | spec_lookup.sh --code / --cores/--memory |
187| View performance data / slow logs / binlog list | Monitoring & Logs | [references/monitoring-logs.md](references/monitoring-logs.md) | DescribeDBNodePerformance, DescribeSlowLogRecords, DescribeBinaryLogList |
188| Manage database accounts (create/delete/list/reset password/privilege) | Account Management | [references/account-management.md](references/account-management.md) | CreateAccount, DeleteAccount, DescribeAccountList, CreateSuperAccount, ResetAccountPassword, ResetAccountPasswordRestrict, ModifyAccountDescription, ModifyAccountPrivilege |
189| Manage databases and tables | Database Management | [references/database-management.md](references/database-management.md) | CreateDB, DeleteDB, DescribeDbList, DescribeDistributeTableList, DescribeArchiveTableList, ModifyDatabaseDescription |
190| Backup / restore / clone instance | Backup & Restore | [references/backup-restore.md](references/backup-restore.md) | CreateBackup, DescribeBackupPolicy, UpdateBackupPolicy, DescribeBackupSet, DescribeBackupSetList, DescribeOpenBackupSet, RestoreDBInstance |
191| Manage IP whitelist / SSL / TDE / KMS authorization | Security & Access | [references/security-access.md](references/security-access.md) | DescribeSecurityIps, ModifySecurityIps, DescribeDBInstanceSSL, UpdateDBInstanceSSL, DescribeDBInstanceTDE, UpdateDBInstanceTDE, DescribeUserEncryptionKeyList, CheckCloudResourceAuthorized |
192| SQL audit / rights separation | SQL Audit & Compliance | [references/sql-audit-compliance.md](references/sql-audit-compliance.md) | EnableSqlAudit, DisableSqlAudit, DescribeSqlAuditInfo, CheckSqlAuditSlsStatus, EnableRightsSeparation, DisableRightsSeparation |
193| View / manage O&M events, maintenance conf, history events, health | Operation Tasks & Events | [references/operation-tasks.md](references/operation-tasks.md) | DescribeActiveOperationTasks, DescribeActiveOperationTaskCount, DescribeActiveOperationMaintainConf, ModifyActiveOperationMaintainConf, ModifyActiveOperationTasks, CancelActiveOperationTasks, DescribeEvents, SkipCurrentStep, CheckHealth, DescribeComponentPropeties |
194| HA switch / zone migration | HA & Migration | [references/ha-migration.md](references/ha-migration.md) | DescribeDBInstanceHA, SwitchDBInstanceHA, MigrateDBInstance, AlignStoragePrimaryAzone, ConfirmNoConnection, StartSwitchDatabase, DescribeTransformStatus (standard-to-enterprise upgrade not supported) |
195| Manage connection strings / VIP / custom endpoints | Connection & Endpoint | [references/connection-endpoint.md](references/connection-endpoint.md) | DescribeDBInstanceEndpoint, ModifyDBInstanceConnectionString, ModifyDBInstanceVip, CreateCustomEndpoint, DeleteCustomEndpoint, ModifyCustomEndpoint, ModifyCustomEndpointNet, DescribeCustomEndpointList, DescribeDBInstanceViaEndpoint, CreateSubCNInstance, DeleteSubCNInstance |
196| Manage tags / resource group | Tags & Resource Group | [references/tags-resourcegroup.md](references/tags-resourcegroup.md) | TagResources, UntagResources, ListTagResources, DescribeTags, ChangeResourceGroup, UpdateCustinsParam |
197| Query regions / VPC / VSwitch / character set / data nodes / parameter groups | Metadata & Query | [references/metadata-query.md](references/metadata-query.md) | DescribeRegions, DescribeAvailableCrossRegions, DescribeEnabledCrossRegions, DescribeRdsVpcs, DescribeRdsVswitches, DescribeCharacterSet, DescribePolarxDataNodes, DescribeParameterGroups |
198| Manage cold-data volume / storage pool / storage usage | Cold Storage | [references/cold-storage.md](references/cold-storage.md) | AllocateColdDataVolume, ReleaseColdDataVolume, DescribeColdDataBasicInfo, CreateStoragePool, DescribeStoragePoolInfo, DescribeShowStorageInfo |
199| SQL evaluation / evaluate-import tasks / replication inspection / engine migration | Data Evaluate & Migration | [references/data-evaluate-migration.md](references/data-evaluate-migration.md) | CreateSQLEvaluateTask, DescribeEvaluateAndImportTask, DescribeEvaluateAndImportTasks, DeleteEvaluateAndImportTask, CreateRplInspectionTask, DescribeRplInspectionTask, CloseEngineMigration, ModifyEngineMigration |
200| SQL flashback (row-level recovery) | SQL Flashback | [references/sql-flashback.md](references/sql-flashback.md) | DescribeSqlFlashbackTaskList, PreCheckSqlFlashbackTask, SubmitSqlFlashbackTask |
201| CDC / log engine info, spec, version | CDC (Log Engine) | [references/cdc.md](references/cdc.md) | DescribeCdcInfo, DescribeCdcClassList, DescribeCdcVersionList, ModifyCdcClass, UpgradeCDCVersion |
202| Columnar (column store) info, spec, version | Columnar | [references/columnar.md](references/columnar.md) | AttachColumnarInstance, DescribeColumnarInfo, DescribeColumnarClassList, DescribeColumnarVersionList, ModifyColumnarClass, UpgradeColumnarVersion |
203| GDN (Global Database Network) management | GDN | [references/gdn.md](references/gdn.md) | CreateGdnInstance, DeleteGdnInstance, DescribeGdnInstances, CreateGdnStandbyMember, SwitchGdnMemberRole |
204| Mem0 (memory engine) management | Mem0 | [references/mem0.md](references/mem0.md) | CreateMem0, DeleteMem0, DescribeMem0Info, DescribeMem0SecurityIps, ModifyMem0SecurityIps, ResetMem0AccountPassword, CreateGatewayConsumerForPolarDBX |
205
206> If multiple intents are present, handle them sequentially: route -> execute -> verify -> next route.
207> If the intent does not match any row, ask the user to clarify; do NOT guess an API.
208
209---
210
211## Global Conventions
212
213These conventions apply to every `aliyun polardbx` CLI command produced by this skill.
214
215### Command format
216
217```bash
218aliyun polardbx <action-name> --biz-region-id <RegionId> --region <RegionId> [other parameters]
219```
220
221**[MUST] Always pass BOTH `--biz-region-id <RegionId>` AND the global flag `--region <RegionId>` with the same value.** `--biz-region-id` is only a business-level parameter; the CLI resolves the API endpoint from the profile default region or the global `--region` flag. Without `--region`, every request is sent to the profile's default-region endpoint (e.g. `polardbx.cn-hangzhou.aliyuncs.com`), so instances/VPCs in other regions return `InvalidDBInstance.NotFound` / `InvalidParameter.VpcId.VSwitchId`.
222
223- The `aliyun` CLI returns JSON by default. Do NOT add `--output` unless the user explicitly asks for table format.
224- Read operations append `--connect-timeout 3 --read-timeout 10`.
225- Write operations append `--connect-timeout 3 --read-timeout 30 --client-token <token>`.
226
227### Command style: plugin mode
228
229This skill uses the `aliyun` CLI **plugin mode** for PolarDB-X:
230
231| Example | Parameter naming | Region parameters |
232|---|---|---|
233| `aliyun polardbx create-db-instance` | `--biz-region-id`, `--vpc-id`, `--vswitch-id` | `--biz-region-id` + `--region` (global, same value) |
234
235- All action names are lowercase words connected with hyphens (`describe-db-instances`).
236- All parameter flags are kebab-case (`--db-instance-name`, `--client-token`).
237- Do NOT mix plugin mode with the legacy PascalCase API style within a single command.
238- If a parameter is rejected, fall back to `aliyun polardbx <action-name> --help` to verify the exact parameter name.
239
240### CN spec naming
241
242PolarDB-X CN node specs follow the pattern `polarx.xN.<size>.<suffix>`. The `<size>` field determines the core multiplier:
243
244| Suffix | Cores | Memory | Example (`x4`) |
245|---|---|---|---|
246| `large` | N (1x) | 4N GB | `polarx.x4.large.2e` = 4C16G |
247| `xlarge` | 2N (2x) | 8N GB | `polarx.x4.xlarge.2e` = 8C32G |
248
249- `large` is NOT a small size; it is the **base** (1x) multiplier.
250- `xlarge` **doubles** the core count and memory.
251- When the user says "4-core 16G", select `large`; do NOT select `xlarge`.
252- For full spec list, run `aliyun polardbx create-db-instance --help`.
253
254### Output parsing
255
256- Pipe the default JSON output to `jq` and extract only the fields the user needs.
257- Avoid dumping large raw JSON blocks; prefer concise `jq` filters.
258- Example:
259
260```bash
261aliyun polardbx describe-db-instances \
262 --biz-region-id cn-hangzhou \
263 --region cn-hangzhou \
264 --connect-timeout 3 --read-timeout 10 \
265 --user-agent AlibabaCloud-Agent-Skills/alibabacloud-polardbx-ops/{session-id} \
266 | jq '.DBInstances[] | {DBInstanceName, Status, Description}'
267```
268
269### Table output
270
271If the user explicitly requests table format, use `--output` with `cols` and `rows`:
272
273```bash
274aliyun polardbx describe-db-instances \
275 --biz-region-id cn-hangzhou \
276 --region cn-hangzhou \
277 --output cols=DBInstanceName,Status,Description,rows=DBInstances \
278 --user-agent AlibabaCloud-Agent-Skills/alibabacloud-polardbx-ops/{session-id}
279```
280
281> In `zsh`, quote the `--output` value to prevent glob expansion: `--output 'cols=DBInstanceName,Status,Description,rows=DBInstances'`.
282
283### Required user input
284
285- `RegionId`: MUST be explicitly provided by the user. NEVER guess. NEVER use a default region.
286- Instance identifier: `DBInstanceName` or `DBInstanceId` depending on the API. MUST be explicitly provided.
287
288### Idempotency
289
290For write APIs (`CreateDBInstance`, `RestartDBInstance`, `UpdatePolarDBXInstanceNode`, `ModifyDBInstanceClass`, `ModifyDBInstanceMaintainTime`, `ModifyDBInstanceConfig`, `ModifyParameter`, `UpgradeDBInstanceKernelVersion`), use `--client-token`.
291
292> `DeleteDBInstance` does NOT support `--client-token`; do not append it.
293
294```bash
295CLIENT_TOKEN=$(uuidgen) # reuse on retry
296```
297
298On timeout / failure, retry with **the same** `ClientToken`.
299
300### Pagination
301
302For all paginated read operations (`DescribeDBInstances`, `DescribeTasks`, `DescribeSlowLogRecords`, `DescribeBinaryLogList`, etc.), use `--page-size 100` unless the user explicitly requests a different size.
303
304- PolarDB-X APIs typically enforce a maximum `PageSize` of 100.
305- Use `--page-number` to iterate through pages when more than 100 results exist.
306
307### Security constraints
308
309- NEVER expose the instance to the public internet.
310- NEVER recommend `AllocateInstancePublicConnection` or any public-network command.
311- NEVER ask users to provide AK/SK directly in the conversation.
312- NEVER echo credential values.
313
314---
315
316## Error & Timeout Handling
317
318When a CLI command fails, handle it according to the following rules.
319
320### Network timeout / connect-timeout / read-timeout
321
322- Retry up to 3 times with exponential backoff: 5s / 10s / 20s.
323- For idempotent write operations, reuse the same `--client-token` on retry.
324- If all retries fail, prompt the user to check local network and Region availability.
325
326### API business errors (Code/Message)
327
328| Error code | Handling |
329|---|---|
330| `InvalidDBInstanceId.NotFound` / `InvalidDBInstance.NotFound` | Verify `DBInstanceName` / `DBInstanceId` and `RegionId` |
331| `Forbidden.RAM` / `NoPermission` | Read [references/ram-policies.md](references/ram-policies.md) |
332| `Throttling` | Back off exponentially, then retry; reduce call frequency |
333| `InternalError` | Retry up to 3 times; if still failing, suggest opening a support ticket |
334| `MissingParameter` / `InvalidParameter` | Re-read the relevant reference file and confirm all required parameters |
335
336### Asynchronous tasks
337
338For operations that return a `TaskId` or order ID (create / delete / restart / scale / upgrade / class change):
339
3401. Poll task status with `DescribeTasks`.
3412. Poll interval: 10 seconds.
3423. Timeout: 30 minutes (configurable).
3434. On task failure, output `TaskErrorCode` and `TaskErrorMessage`.
344
345**Preferred: Use the bundled polling script:**
346
347```bash
348./scripts/poll_task.sh \
349 --region <RegionId> \
350 --instance-id <DBInstanceId> \
351 --start-time <StartDate> \
352 --end-time <EndDate> \
353 --session-id {session-id}
354```
355
356**Manual alternative:**
357
358```bash
359aliyun polardbx describe-tasks \
360 --biz-region-id <RegionId> \
361 --region <RegionId> \
362 --db-instance-id <DBInstanceId> \
363 --start-time <StartTime> \
364 --end-time <EndTime> \
365 --page-number 1 \
366 --page-size 100 \
367 --connect-timeout 3 --read-timeout 10 \
368 --user-agent AlibabaCloud-Agent-Skills/alibabacloud-polardbx-ops/{session-id} \
369 | jq '.Items[] | {TaskId, Status, TaskAction, TaskErrorCode, TaskErrorMessage}'
370```
371
372> `DescribeTasks` returns the task list in `.Items[]` (NOT `.Tasks[]`). Each item has `Status` (e.g. `"8"` finished, `RUNNING`/`FAILED`), `TaskAction`, `TaskId`, `BeginTime`, `FinishTime`, and optional `TaskErrorCode`/`TaskErrorMessage`. A task with a non-empty `FinishTime` has ended; check `Status` for success or failure.
373
374### Unexpected output
375
376- If the output is empty or fields are missing, first run the command without `| jq ...` to check whether the default JSON output is valid.
377- If `jq` fails, verify the filter against the raw JSON output.
378- Use `--cli-query` carefully; verify the JMESPath expression against the raw JSON output.
379- All fields shown to the user SHOULD be extracted via `jq` filters.
380
381---
382
383## Reference Links
384
385| Reference | Description |
386|---|---|
387| [references/instance-lifecycle.md](references/instance-lifecycle.md) | Instance lifecycle APIs |
388| [references/scaling.md](references/scaling.md) | Scaling and class-change APIs |
389| [references/parameters.md](references/parameters.md) | Config and parameter APIs |
390| [references/monitoring-logs.md](references/monitoring-logs.md) | Performance, slow log, and binlog APIs |
391| [references/account-management.md](references/account-management.md) | Database account management APIs |
392| [references/database-management.md](references/database-management.md) | Database and table management APIs |
393| [references/backup-restore.md](references/backup-restore.md) | Backup policy, backup set, and restore APIs |
394| [references/security-access.md](references/security-access.md) | IP whitelist, SSL, TDE, KMS authorization APIs |
395| [references/sql-audit-compliance.md](references/sql-audit-compliance.md) | SQL audit and rights-separation APIs |
396| [references/operation-tasks.md](references/operation-tasks.md) | O&M events, maintenance config, history events APIs |
397| [references/ha-migration.md](references/ha-migration.md) | HA switch, zone migration, transform APIs |
398| [references/connection-endpoint.md](references/connection-endpoint.md) | Connection string, VIP, custom endpoint APIs |
399| [references/tags-resourcegroup.md](references/tags-resourcegroup.md) | Tag and resource-group APIs |
400| [references/metadata-query.md](references/metadata-query.md) | Region, VPC/VSwitch, character set, data node APIs |
401| [references/cold-storage.md](references/cold-storage.md) | Cold-data volume and storage pool APIs |
402| [references/data-evaluate-migration.md](references/data-evaluate-migration.md) | SQL evaluation and engine migration APIs |
403| [references/sql-flashback.md](references/sql-flashback.md) | SQL flashback (row-level recovery) APIs |
404| [references/cdc.md](references/cdc.md) | CDC / log engine APIs |
405| [references/columnar.md](references/columnar.md) | Columnar (column store) APIs |
406| [references/gdn.md](references/gdn.md) | Global Database Network (GDN) APIs |
407| [references/mem0.md](references/mem0.md) | Mem0 memory engine APIs |
408| [references/cli-installation-guide.md](references/cli-installation-guide.md) | CLI installation, plugin, credential, and identity checks |
409| [references/ram-policies.md](references/ram-policies.md) | RAM permissions and troubleshooting |
410| [references/index.md](references/index.md) | Reference overview and routing index |
411| [Official API Reference](https://api.aliyun.com/document/polardbx/2020-02-02/overview) | PolarDB-X OpenAPI documentation |
412
413---
414
415## Scripts
416
417| Script | Description |
418|---|---|
419| [scripts/poll_task.sh](scripts/poll_task.sh) | Poll async task status with timeout and exponential backoff |
420| [scripts/spec_lookup.sh](scripts/spec_lookup.sh) | Convert between a PolarDB-X spec code and its hardware config (cores/memory), in both directions; supports `--category`/`--disk`/`--type` filters and `--json` |
421
422Runtime dependencies (bash >= 4.0, aliyun CLI >= 3.3.3, jq >= 1.6) are declared in each script's header comments. `spec_lookup.sh` only needs bash + awk (no CLI/jq).
423
424### Spec code <-> hardware lookup
425
426To resolve a spec code to cores/memory, or to find spec codes for a target hardware size, call `scripts/spec_lookup.sh`:
427
428```bash
429# Spec code -> hardware
430./scripts/spec_lookup.sh --code polarx.x4.large.2e
431
432# Hardware -> matching spec code(s) (filter by module / disk / type as needed)
433./scripts/spec_lookup.sh --cores 8 --memory 32 --category cn --disk local
434
435# Machine-readable output for the agent
436./scripts/spec_lookup.sh --code mysql.n4.medium.25 --json
437```
438
439- `--category`: `cn` (enterprise compute) / `dn` (enterprise storage) / `standard`.
440- `--disk`: `local` (custom_local_ssd) / `cloud` (cloud_auto).
441- `--type`: `general` / `dedicated`.
442- Exit codes: `0` found, `3` invalid args, `4` no match.