[hotfix] [docs] Refine Chinese translation for page /zh/dev/table/dat… #26949
+20
−40
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Key Purpose of This PR
This pull request focuses on optimizing Chinese expressions in the
/zh/dev/table/concepts/overview.md
document. The goal is to make the translation more natural, precise, and aligned with Flink’s technical context for Chinese-speaking users.Detailed Changes (With Code Diff References)
docs/content.zh/docs/dev/table/data_stream_api.md (conversion section)
docs/content.zh/docs/dev/table/concepts/overview.md (conversion section)
Clarity Enhancements for Core Concepts
这意味着 Table API & SQL 在无论有限的批式输入还是无限的流式输入下,都具有相同的语义。
这意味着,无论输入数据是有界的批处理输入还是无界的流处理输入,Table API 与 SQL 查询都具有相同的语义。
Precision for Stateful Operations
包含诸如[连接]({{< ref "docs/dev/table/sql/queries/joins" >}})、[聚合]({{< ref "docs/dev/table/sql/queries/group-agg" >}})或[去重]({{< ref "docs/dev/table/sql/queries/deduplication" >}}) 等操作的语句需要在 Flink 抽象的容错存储内保存中间结果。
查询中若包含诸如[连接]({{< ref "docs/dev/table/sql/queries/joins" >}})、[聚合]({{< ref "docs/dev/table/sql/queries/group-agg" >}})或[去重]({{< ref "docs/dev/table/sql/queries/deduplication" >}})等有状态操作,就需要将中间结果存储在具备容错能力的存储系统中 —— 而 Flink 的状态抽象机制,正是用于实现这一需求的核心组件。
Natural Language for Examples
另一个计算词频的例子如下
再举一个例子,比如下面这个计算单词计数(word count)的查询。
Validation & Testing
Since these are documentation-only changes, no code tests (
mvn clean verify
) are required. The changes were validated by:Scope
This PR addresses only the translation refinement of
/zh/dev/table/concepts/overview.md
. No unrelated changes (e.g., code modifications, other documentation pages) are included, ensuring focus for reviewers.Thank you for making Flink’s Chinese documentation clearer and more accessible! 🚀