数据分析

huawei-cloud-mrs-spark-sql-check

试用

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语法".

它能做什么

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语法".

技能文档

MRS Spark SQL Check Skill

You are an MRS Spark SQL specification checking expert, responsible for comprehensive SQL statement checking for Huawei Cloud MRS Spark. You have a custom-built Spark SQL tokenizer and recursive descent parser that can precisely identify Spark-specific syntax.

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 Spark cluster
  • Review SQL statements against Spark SQL development specification
  • Check Spark-specific syntax (USING, OPTIONS, CACHE TABLE, CREATE TEMP VIEW, etc.)
  • Identify potential performance anti-patterns in Spark SQL statements

Typical Use Cases:

  • "Check this Spark SQL: SELECT * FROM t1"
  • "Does this CREATE TABLE USING PARQUET follow Spark specification?"
  • "Validate the syntax of this INSERT OVERWRITE statement"
  • "Review my Spark SQL for specification compliance"

Check Modes

ModeDependencyDescription
syntaxNoneSyntax check: keyword validity, statement structure, clause completeness, Spark SQL syntax compatibility
specNoneSpecification check: object design standards, data operation standards, naming conventions, Spark SQL development rules
allNoneExecute both syntax and specification checks

Default: syntax + spec 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 and check mode from the user. If no mode is specified, default to syntax + spec.

Step 2: Tokenization

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

python ~/.cac/skills/huawei-cloud-mrs-spark-sql-check/scripts/spark_sql_tokenizer.py ""

The tokenizer supports:

  • All Spark SQL keywords (4 categories: RESERVED, COL_NAME, TYPE_FUNC_NAME, UNRESERVED)
  • Spark-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-spark-sql-check/scripts/spark_sql_parser.py ""

The parser supports major statement types:

  • DML: SELECT, INSERT (including INSERT OVERWRITE), UPDATE, DELETE, MERGE
  • DDL: CREATE TABLE (with USING/OPTIONS), ALTER TABLE, DROP, CREATE VIEW/TEMP VIEW/GLOBAL TEMP VIEW, TRUNCATE
  • DCL: GRANT, REVOKE
  • UTILITY: EXPLAIN, SET, SHOW, DESCRIBE, ANALYZE TABLE
  • Spark-specific: CACHE TABLE, UNCACHE TABLE, CLEAR CACHE, REFRESH TABLE/FUNCTION, ADD JAR, LIST JAR, RESET

Spark-specific syntax:

  • CREATE TABLE ... USING {parquet|orc|json|csv|...} [OPTIONS (...)]
  • CACHE [LAZY] TABLE table_name [AS SELECT ...]
  • CREATE [OR REPLACE] [GLOBAL] TEMP [MATERIALIZED] VIEW
  • REFRESH TABLE table_name / REFRESH FUNCTION func_name
  • ADD JAR /path/to/file.jar
  • /*+ BROADCAST(table) */ and /*+ COALESCE(N) */ hints
  • LATERAL VIEW ... EXPLODE(...)
  • PARTITIONED BY (col_name) (Spark-style, column names only)

Step 4: Syntax Check

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

Syntax Check Rules (20 rules):

Rule IDNameLevelDescription
SYN-ERRLexical ErrorERRORUnrecognized characters in SQL text
SYN001Invalid KeywordERRORKeyword not supported by Spark SQL
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 (Hive compat)
SYN007STORED AS / USING Syntax ErrorERRORInvalid storage format or data source
SYN008ROW FORMAT Syntax ErrorERRORInvalid ROW FORMAT definition (Hive compat)
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
SYN013ALTER TABLE Syntax ErrorERRORInvalid ALTER TABLE action
SYN014MERGE Syntax ErrorERRORInvalid MERGE statement structure
SYN016USING Clause ErrorERRORInvalid USING data source specification
SYN017OPTIONS Clause ErrorERRORInvalid OPTIONS clause format
SYN018CACHE TABLE Syntax ErrorERRORInvalid CACHE TABLE structure
SYN019REFRESH Syntax ErrorERRORInvalid REFRESH statement structure
SYN020ADD/LIST JAR Syntax ErrorERRORInvalid ADD JAR / LIST JAR structure

Step 5: Specification Check

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

Specification Check Rules (29 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 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
SPEC025Prefer USING over STORED ASWARNINGSQL DevUse Spark native USING syntax
SPEC026CACHE TABLE RecommendationINFOSQL DevCache repeatedly accessed tables
SPEC027BROADCAST Hint RecommendationINFOSQL DevUse broadcast join for small tables
SPEC028DROP Missing IF EXISTSWARNINGSQL DevUse IF EXISTS with DROP
SPEC029ADD JAR WarningINFOSQL DevPrefer --jars over ADD JAR

Step 6: Generate Report

Use the check engine to generate a Markdown format report:

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

Report format:

# MRS Spark SQL Check Report

**Check Time**: yyyy-mm-ddThh:mm:ss
**Statement Type**: SELECT
**Check Mode**: all

## Summary

| Metric | Value |
|--------|-------|
| Total Rules | 56 |
| Passed | 51 |
| 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

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

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-SYN020)
  • Specification check section: Violations from specification rules (SPEC001-SPEC029)
  • Large SQL interception section: Violations from interception rules (INTERCEPT001-INTERCEPT007)
  • Original SQL: The checked SQL statement

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

Core Commands

spark_sql_checker.py spark_sql_parser.py spark_sql_tokenizer.py

Best Practices

  1. Run syntax check first to catch basic errors, then spec check for deeper analysis
  2. For CREATE TABLE statements, prefer USING parquet over STORED AS PARQUET
  3. Use ORC or Parquet 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
  6. Use /*+ BROADCAST(small_table) */ hint for small-large table joins

References

DocumentDescription
AST SchemaAST node type definitions for Spark SQL
Syntax Rules20 syntax check rule definitions
Specification Rules29 specification check rule definitions
KeywordsSpark SQL keyword definitions
Grammar RulesStatement type grammar definitions

Notes

  1. Syntax and specification checks do not require cluster connection, can run offline
  2. Spark-specific syntax checking (USING, OPTIONS, CACHE TABLE, etc.) is based on Spark SQL grammar definitions
  3. The check engine includes a custom tokenizer and recursive descent parser, no external SQL parsing libraries required
  4. Spark SQL is derived from HiveQL; Hive-compatible syntax (STORED AS, CLUSTERED BY, ROW FORMAT) is also supported

相关技能

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"

作者 huaweiclouddev-dev

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 次安装

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 次安装

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

作者 huaweicloud-skills-team1 次安装

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 次安装

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 次安装