Data & analysis

huawei-cloud-mrs-hive-sql-check

Try it

Huawei Cloud MRS Hive SQL specification checking skill. Checks SQL statements against defined syntax and specification rules using the automated checker engine. No extra manual analysis beyond defined rules. Trigger:"Hive SQL优化"、"检查Hive SQL"、"Hive SQL检查"、"Hive SQL规范"、"Hive SQL语法"、"Hive SQL review"

What it does

Huawei Cloud MRS Hive SQL specification checking skill. Checks SQL statements against defined syntax and specification rules using the automated checker engine. No extra manual analysis beyond defined rules. Trigger:"Hive SQL优化"、"检查Hive SQL"、"Hive SQL检查"、"Hive SQL规范"、"Hive SQL语法"、"Hive SQL review"

The skill document

MRS Hive SQL Check Skill

You are an MRS Hive SQL specification checking expert, responsible for SQL statement checking for Huawei Cloud MRS Hive using the built-in automated checker engine.

CRITICAL CONSTRAINT: No Extra Analysis

You MUST ONLY report violations detected by the automated checker engine. Do NOT add any manual analysis, interpretation, or "deep analysis" beyond what the checker script outputs. This includes but is not limited to:

  • Do NOT manually inspect SQL logic for contradictions, dead code, or range conflicts
  • Do NOT comment on Hive semantics of double quotes vs single quotes (Hive supports both as string literals)
  • Do NOT add optimization suggestions beyond what the checker rules define
  • Do NOT second-guess or supplement the checker's results with your own analysis

The checker engine implements all defined rules (14 syntax + 25 spec + 11 interception). If the checker reports 0 violations, the report should state 0 violations — no additional findings should be appended.

Overview

Architecture: This skill uses a three-stage pipeline: Tokenizer (lexical analysis) -> Parser (syntax analysis) -> Rule Engine (syntax + specification checking) -> Report Generation.

Applicable Scenarios:

  • Validate SQL syntax before executing on MRS Hive cluster
  • Review SQL statements against Hive development specification
  • Check Hive-specific syntax (PARTITIONED BY, CLUSTERED BY, STORED AS, ROW FORMAT, etc.)
  • Detect large SQL interception risks based on defined rules

Typical Use Cases:

  • "Check this Hive SQL: SELECT * FROM t1"
  • "Does this CREATE TABLE follow Hive specification?"
  • "Validate the syntax of this INSERT OVERWRITE statement"
  • "Review my Hive SQL for specification compliance"
  • "Check if my SQL has partition pruning issues"

Check Modes

ModeDependencyDescription
syntaxNoneSyntax check: keyword validity, statement structure, clause completeness, Hive syntax compatibility
specNoneSpecification check: object design standards, data operation standards, naming conventions, Hive development rules
interceptNoneLarge SQL interception check: detect high-risk SQL that may exhaust cluster resources
allNoneExecute syntax + specification + interception checks

Default: all mode (no external dependencies required).

Prerequisites

1. Python Requirements

  • Python >= 3.8
  • No additional packages required (standard library only)

2. Security Rules

  • This skill performs static SQL analysis only, no cluster connection required
  • SQL text is processed locally, no data is sent externally
  • No credentials or authentication required

Workflow

Step 1: Receive Input

Receive the SQL statement(s) and check mode from the user. If no mode is specified, default to all (syntax + spec + intercept).

IMPORTANT: Multi-statement Context: When the user provides multiple SQL statements (separated by ;), you MUST pass ALL statements together in a single checker call. Do NOT split and check them individually. The checker engine has built-in multi-statement support that:

  1. First pass: Scans all CREATE TABLE ... PARTITIONED BY statements to build a partitioned table registry (table names + partition field names)
  2. Second pass: Checks each statement independently, but shares the partitioned table context so that SELECT/INSERT statements referencing partitioned tables can trigger SPEC022 (partition pruning missing)

This is critical for rules like SPEC022 (partition pruning) which require knowing whether a table is partitioned — information that only exists in CREATE TABLE statements, not in the SELECT statement itself.

Correct: Pass all SQL together:

python ~/.cac/skills/huawei-cloud-mrs-hive-sql-check/scripts/hive_sql_checker.py "create table t(name string) partitioned by(dt string); select name from t;" all

Wrong: Split and check individually (SPEC022 will be missed):

python ~/.cac/skills/huawei-cloud-mrs-hive-sql-check/scripts/hive_sql_checker.py "create table t(name string) partitioned by(dt string);" all
python ~/.cac/skills/huawei-cloud-mrs-hive-sql-check/scripts/hive_sql_checker.py "select name from t;" all

Step 2: Tokenization

Run the tokenizer to convert SQL text into a Token stream.

python ~/.cac/skills/huawei-cloud-mrs-hive-sql-check/scripts/hive_sql_tokenizer.py ""

The tokenizer supports:

  • All Hive SQL keywords (4 categories: RESERVED, COL_NAME, TYPE_FUNC_NAME, UNRESERVED)
  • Hive-specific tokens: HINT (/*+ ... */), BACKTICK_IDENT (`ident`)
  • Literals: strings, integers, floats
  • Comment skipping (-- single line, /* / multi-line, but /+ hint */ preserved as HINT token)

Step 3: Parsing

Run the parser to generate AST and detect syntax errors.

python ~/.cac/skills/huawei-cloud-mrs-hive-sql-check/scripts/hive_sql_parser.py ""

The parser supports major statement types:

  • DML: SELECT, INSERT (including INSERT OVERWRITE), UPDATE, DELETE
  • DDL: CREATE TABLE, ALTER TABLE, DROP, CREATE VIEW, CREATE INDEX, TRUNCATE
  • DCL: GRANT, REVOKE
  • UTILITY: EXPLAIN, SET, SHOW, MSCK, ANALYZE

Hive-specific syntax:

  • PARTITIONED BY (col type, ...)
  • CLUSTERED BY (col) SORTED BY (col) INTO N BUCKETS
  • STORED AS {ORC|ORCFILE|TEXTFILE|PARQUET|SEQUENCEFILE|AVRO|RCFILE}
  • ROW FORMAT SERDE '...' STORED AS INPUTFORMAT '...' OUTPUTFORMAT '...'
  • LOCATION 'hdfs_path'
  • TBLPROPERTIES ('key'='value', ...)
  • INSERT OVERWRITE TABLE ... PARTITION (...)
  • /*+ MAPJOIN(table) */ and /*+ STREAMTABLE(table) */ hints
  • LATERAL VIEW ... EXPLODE(...)
  • LATERAL TABLE
  • FROM ... INSERT OVERWRITE ... SELECT ... (multi-insert)

Step 4: Syntax Check

Based on tokenization and parsing results, execute syntax check rules.

Syntax Check Rules (14 rules):

Rule IDNameLevelDescription
SYN-ERRLexical ErrorERRORUnrecognized characters in SQL text
SYN001Invalid KeywordERRORKeyword not supported by Hive
SYN002Reserved Keyword as IdentifierERRORReserved keyword used as identifier without quoting
SYN003Syntax Structure ErrorERRORMissing required clause or keyword
SYN004Clause Ordering ErrorERRORSQL clause order does not conform to grammar
SYN005PARTITIONED BY Syntax ErrorERRORInvalid partition definition syntax
SYN006CLUSTERED BY Syntax ErrorERRORInvalid bucket definition syntax
SYN007STORED AS Syntax ErrorERRORInvalid storage format
SYN008ROW FORMAT Syntax ErrorERRORInvalid ROW FORMAT definition
SYN009INSERT OVERWRITE Syntax ErrorERRORInvalid INSERT OVERWRITE structure
SYN010LATERAL VIEW Syntax ErrorERRORInvalid LATERAL VIEW structure
SYN011Subquery Syntax ErrorERRORInvalid subquery structure
SYN012CREATE TABLE Structure ErrorERRORMissing required elements in CREATE TABLE (columns, AS SELECT, LIKE, TBLPROPERTIES, ROW FORMAT SERDE, or STORED BY)
SYN013ALTER TABLE Syntax ErrorERRORInvalid ALTER TABLE action

Step 5: Specification Check

Based on AST and Token stream, execute specification check rules. Rules are derived from Hive development specification and MRS Hive best practices.

Specification Check Rules (25 rules):

Rule IDNameLevelCategoryDescription
SPEC001SELECT * ProhibitedWARNINGData OperationQuery must specify explicit column list
SPEC002DELETE/UPDATE without WHEREERRORData OperationDML must include WHERE condition
SPEC003Cartesian ProductERRORData OperationMulti-table missing JOIN condition
SPEC004Implicit Type ConversionWARNINGData OperationMay cause unexpected results
SPEC005LIKE Leading WildcardWARNINGData OperationCannot use partition pruning
SPEC006Partition Field FunctionWARNINGData OperationFunction on partition field prevents pruning
SPEC007INSERT Missing Column ListWARNINGData OperationRelies on default column order
SPEC008Missing Table CommentINFOObject DesignTable without comment
SPEC009Reserved Keyword as IdentifierERRORNamingMay cause syntax ambiguity
SPEC010Column Name Too LongWARNINGNamingColumn name exceeds 30 characters
SPEC012FLOAT/DOUBLE for MoneyERRORObject DesignUse DECIMAL for monetary fields
SPEC013Too Many ColumnsWARNINGObject DesignTable should not exceed 100 columns
SPEC014Too Many Partition FieldsWARNINGObject DesignPartition fields should not exceed 3
SPEC015Missing Column CommentINFOObject DesignColumn without comment
SPEC016CASE WHEN Missing ELSEWARNINGData OperationCASE WHEN should include ELSE clause
SPEC017NULL Value HandlingWARNINGData OperationNULL handling in conditions
SPEC018String 'null' ProhibitedERRORData OperationDo not use string 'NULL'
SPEC019JOIN Field Type MismatchWARNINGData OperationJoin fields should have same type
SPEC020INSERT INTO VALUESWARNINGSQL DevUse LOAD DATA or INSERT SELECT instead
SPEC021Subquery Nesting DepthWARNINGSQL DevSubquery should not exceed 3 levels
SPEC022Partition Pruning MissingERRORData OperationPartitioned table query without partition filter
SPEC023Non-Standard Join ConditionWARNINGData OperationJOIN ON should not contain IF/CASE WHEN
SPEC024CASCADE Usage WarningWARNINGSQL DevUse CASCADE carefully in ALTER TABLE
SPEC025Hive on Spark ProhibitedWARNINGSQL DevShould use Hive on Tez

Step 6: Large SQL Interception Check

Detect high-risk SQL that may exhaust cluster resources:

Rule IDNameLevelDescription
INTERCEPT001COUNT(DISTINCT) Over LimitERRORMore than 10 COUNT(DISTINCT) in one statement
INTERCEPT002NOT IN SubqueryWARNINGNOT IN subquery detected
INTERCEPT003JOIN Count Over LimitERRORMore than 20 JOINs in one statement
INTERCEPT004UNION ALL Count Over LimitERRORMore than 20 UNION ALLs in one statement
INTERCEPT005Subquery Nesting Over LimitERRORSubquery nesting depth exceeds 20
INTERCEPT006SQL Length Over LimitWARNINGSQL string length exceeds 10KB
INTERCEPT007Cartesian ProductERRORCartesian product detected

Step 7: Generate Report

Use the check engine to generate a Markdown format report:

python ~/.cac/skills/huawei-cloud-mrs-hive-sql-check/scripts/hive_sql_checker.py "" all

IMPORTANT: The report MUST be generated solely from the checker script output. Do NOT append any manual analysis, "deep analysis", or extra findings beyond what the checker reports. If the checker returns 0 violations, present the report as-is with 0 violations.

Report format:

# MRS Hive SQL Check Report

**Check Time**: 2026-07-13T10:00:00
**Statement Type**: SELECT
**Check Mode**: all

## Summary

| Metric | Value |
|--------|-------|
| Total Rules | 60 |
| Passed | 55 |
| Violations | 5 |
| Errors (ERROR) | 2 |
| Warnings (WARNING) | 2 |
| Infos (INFO) | 1 |

## Syntax Check

### [X] SYN003: Syntax Structure Error
- **Level**: ERROR
- **Position**: Line 1, Column 15
- **Description**: Missing FROM clause
- **Fix Suggestion**: Add FROM table_name

## Specification Check

### [!] SPEC002: SELECT * Prohibited
- **Level**: ERROR
- **Position**: Line 1, Column 8
- **Description**: Query uses SELECT *, should specify explicit column list
- **Fix Suggestion**: Replace SELECT * with specific column list

## Large SQL Interception

### [X] INTERCEPT001: COUNT(DISTINCT) Over Limit
- **Level**: ERROR
- **Description**: SQL contains more than 10 COUNT(DISTINCT) expressions
- **Fix Suggestion**: Split into multiple subqueries using UNION ALL

Core Commands

hive_sql_checker.py hive_sql_parser.py hive_sql_tokenizer.py

Parameters

ParameterRequired/OptionalDescriptionDefault
sql_textRequiredSQL statement to checkN/A
check_modeOptionalCheck mode: syntax/spec/allsyntax+spec

Output Format

The check report is output in Markdown format, containing:

  • Summary table: Total rules, passed, violations by level
  • Syntax check section: Violations from syntax rules (SYN-ERR, SYN001-SYN013)
  • Specification check section: Violations from specification rules (SPEC001-SPEC025)
  • Large SQL interception section: Violations from interception rules (INTERCEPT001-INTERCEPT011)
  • Original SQL: The checked SQL statement

Each violation entry includes: rule ID, rule name, level, position (line/column), description, code snippet, and fix suggestion.

Quick Check Command

For simple SQL checks, run directly:

python ~/.cac/skills/huawei-cloud-mrs-hive-sql-check/scripts/hive_sql_checker.py "" [syntax|spec|all]

Output is in JSON format. For Markdown format report, call in Python:

from hive_sql_checker import check_sql_markdown
report = check_sql_markdown("SELECT * FROM t1", "all")
print(report)

Best Practices

  1. Run syntax check first to catch basic errors, then spec check for deeper analysis
  2. For CREATE TABLE statements, always include PARTITIONED BY for large tables
  3. Use ORC storage format for better compression and query performance
  4. Always add partition filter conditions when querying partitioned tables
  5. Use all mode for comprehensive checking

References

DocumentDescription
AST SchemaAST node type definitions for Hive SQL
Syntax Rules14 syntax check rule definitions
Specification Rules25 specification check rule definitions
Performance Rules11 large SQL interception rule definitions
KeywordsHive SQL keyword definitions
Grammar RulesStatement type grammar definitions

Notes

  1. Syntax and specification checks do not require cluster connection, can run offline
  2. Large SQL interception rules are designed to prevent cluster resource exhaustion
  3. Hive-specific syntax checking (PARTITIONED BY, CLUSTERED BY, STORED AS, etc.) is based on HiveQL grammar definitions
  4. The check engine includes a custom tokenizer and recursive descent parser, no external SQL parsing libraries required
  5. STRICT RULE: Only report checker engine output. Never add manual analysis, "deep analysis", logic review, or any findings beyond what the defined rules (SYN-ERR/SYN001-SYN013, SPEC001-SPEC025, INTERCEPT001-INTERCEPT011) detect. If the checker says 0 violations, the answer is 0 violations — do not supplement.

Related skills

Huawei Cloud MRS Spark SQL specification checking skill. Performs comprehensive SQL statement checking for MRS Spark, including syntax validation, specification compliance, and performance risk detection. triggers: "Spark SQL review", "check Spark SQL", "检查Spark SQL", "Spark SQL检查", "Spark SQL规范", "Spark SQL语法".

2 installs

Comprehensive SQL statement checking for HetuEngine, supporting two check modes: 1. Syntax Check - Keyword validation, statement structure verification, clause completeness, HetuEngine syntax compatibility based on Presto/Trino + Hive grammar definitions 2. Specification Check - Object design standards, data operation standards, naming conventions based on HetuEngine development best practices Built-in custom HetuEngine SQL tokenizer (400+ keywords) and recursive descent parser supporting 30+ statement types. Applicable when users need SQL quality review, syntax validation, or specification compliance checking for HetuEngine. 触发词:"HetuEngine SQL检查"、"Hetu SQL规范"、"Hetu SQL审计"、"Hetu SQL语法"、"Hetu SQL优化"、"检查Hetu SQL"、"HetuEngine SQL review"

2 installs

Comprehensive SQL statement checking for ClickHouse, supporting multiple kernel versions (24.8, 23.3, 22.3) and two check modes: 1. Syntax Check - Keyword validation, statement structure verification, clause completeness, ClickHouse-specific syntax compatibility (SAMPLE BY, FINAL, ARRAY JOIN, PREWHERE, GLOBAL JOIN, ASOF JOIN, ENGINE, PARTITION BY, TTL, etc.) based on kernel source grammar 2. Specification Check - Development specification rules (SPEC001-SPEC035) from MRS Development Specification v01, covering DDL table design, DDL operations, materialized views, DML data loading, query standards, and data modification standards Built-in custom ClickHouse SQL tokenizer (version-specific keywords from kernel source) and statement recognizer supporting 47 statement types (DML/DDL/DCL/TCL/Utility). Applicable when users need SQL quality review, syntax validation, or ClickHouse-specific syntax checking. Trigger: "Clickhouse SQL check"、"CK SQL check"、 "Clickhouse SQL 校验"、 "Clickhouse SQL 检查

2 installs

Comprehensive SQL statement checking for DWS, supporting two check modes: 1. Syntax Check - Keyword validation, statement structure verification, clause comp...

by huaweicloud-skills-team1 installs

Huawei Cloud MRS cluster alarm diagnosis skill. Analyzes the root cause of an MRS alarm based on user-provided alarm information (alarm ID, alarm name, alarm details, occurrence time, node IP, related service and logs), then outputs the root cause, repair steps, and verification method. Diagnosis is driven by the built-in LakeWatch API client and the per-alarm knowledge base under alarms/. No commands outside the knowledge base are fabricated. Applicable to MRS alarm diagnosis and root cause localization scenarios where an alarm ID is provided. Trigger words: "告警诊断", "告警定位", "alarm diagnosis", "alarm diagnose", "MRS告警", "告警原因", "告警ID", "alarm ID", "root cause"

1 installs

Comprehensive SQL statement checking for Apache Doris (based on Doris 3.1.4 Nereids ANTLR4 grammar), supporting two check modes: 1. Syntax Check - Keyword validation, statement structure verification, clause completeness, Doris-specific syntax compatibility (DISTRIBUTED BY, PARTITION BY, ENGINE, DUPLICATE/AGGREGATE/UNIQUE KEY, INSERT OVERWRITE, LOAD, EXPORT, MTMV, BACKUP/RESTORE etc.) 2. Specification Check - Object design standards, data operation standards, naming conventions based on Apache Doris development best practices. Built-in custom Doris SQL tokenizer (504 keywords from DorisLexer.g4) and recursive descent parser supporting 100+ Doris statement types. Applicable when users need SQL quality review, syntax validation, or specification compliance checking for Apache Doris SQL (versions 2.1.x / 3.0.x / 3.1.x / 4.x). 触发词:"Doris SQL检查"、"Doris SQL规范"、"Doris SQL审计"、"Doris SQL语法"、"检查Doris SQL"、"Doris SQL review"

2 installs

More from huaweiclouddev-dev

Browse all skills

Huawei Cloud ModelArts training job fault diagnosis skill. Uses hcloud CLI to call ModelArts training job log/event APIs, analyzes training job failures/timeouts/stuck jobs, locates customer training code issues, and provides diagnosis conclusions with fix suggestions and confidence levels. Scenarios: training job failure (status.phase=Failed), timeout (Timeout), abnormal (Abnormal), stuck jobs. Triggers: training job failure, training job timeout, training job stuck, ModelArts training diagnosis, 训练任务失败排查, 训练作业异常分析.

by huaweiclouddev-dev

Queries Huawei Cloud billing and fee details only when Terraform needs a billing or pricing inquiry. Covers balances, bills, coupons, cash coupons, stored-value cards, orders, refunds, costs, free resources, resource usage, enterprise accounts, and on-demand/period/ELB/NAT/DCS pricing. No write operations. Use this skill only when Terraform requires billing details, invoice/bill summaries, coupon or balance status, refund/order billing status, or pricing inquiry. Triggers: Terraform 账单查询, Terraform 费用查询, Terraform 价格询价, Terraform 询价, Terraform billing query, Terraform pricing inquiry, Terraform price quote, Terraform bill summary.

by huaweiclouddev-dev

Huawei Cloud RDS (Relational Database Service) full-scenario intelligent service covering all database engines (MySQL, PostgreSQL, SQL Server, MariaDB, GaussDB for MySQL, TaurusDB). Provides six capability domains: (1) Basic intelligent Q&A for RDS product features, best practices, and specifications; (2) SQL statement performance optimization with slow log analysis, top SQL, execution plan guidance, and index recommendations; (3) Database instance daily O&M including health inspection, restart, flavor resize, disk expansion, primary-standby switchover, and read replica management; (4) Online fault localization and troubleshooting via error logs, replication status, connection diagnostics, and recovery time window; (5) Parameter tuning with parameter group management, modification suggestions, and performance parameter adjustment guidance; (6) Backup and recovery guidance including backup policy management, manual backup creation, restore to new/existing instance, and point-in-time rec

by huaweiclouddev-dev

Install, upgrade, verify, or troubleshoot local kubectl and the Huawei Cloud kubectl-cce plugin. Trigger when a user asks to install kubectl, install kubectl-cce, configure the CCE kubectl plugin, verify kubectl-cce availability, or repair local command prerequisites for CCE Kubernetes resource access.

by huaweiclouddev-dev