You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hudi.apache.org by le...@apache.org on 2020/04/22 15:33:43 UTC

[incubator-hudi] branch asf-site updated: [HUDI-827] fix translation error (#1551)

This is an automated email from the ASF dual-hosted git repository.

leesf pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/incubator-hudi.git


The following commit(s) were added to refs/heads/asf-site by this push:
     new 55dde43  [HUDI-827] fix translation error (#1551)
55dde43 is described below

commit 55dde438e8adf24b0b03bde589d4cee9b3cb663c
Author: wanglisheng81 <37...@users.noreply.github.com>
AuthorDate: Wed Apr 22 23:33:34 2020 +0800

    [HUDI-827] fix translation error (#1551)
---
 docs/_docs/2_2_writing_data.cn.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/_docs/2_2_writing_data.cn.md b/docs/_docs/2_2_writing_data.cn.md
index aa3ccef..33fb2dc 100644
--- a/docs/_docs/2_2_writing_data.cn.md
+++ b/docs/_docs/2_2_writing_data.cn.md
@@ -18,7 +18,7 @@ language: cn
 这些操作可以在针对数据集发出的每个提交/增量提交中进行选择/更改。
 
  - **UPSERT(插入更新)** :这是默认操作,在该操作中,通过查找索引,首先将输入记录标记为插入或更新。
- 在运行启发式方法以确定如何最好地将这些记录放到存储上,如优化文件大小之类后,这些记录最终会被写入。
+ 在运行启发式方法以确定如何最好地将这些记录放到存储上,如优化文件大小之后,这些记录最终会被写入。
  对于诸如数据库更改捕获之类的用例,建议该操作,因为输入几乎肯定包含更新。
  - **INSERT(插入)** :就使用启发式方法确定文件大小而言,此操作与插入更新(UPSERT)非常相似,但此操作完全跳过了索引查找步骤。
  因此,对于日志重复数据删除等用例(结合下面提到的过滤重复项的选项),它可以比插入更新快得多。