Skip to content

Commit

Permalink
Update tidb-lightning-configuration.md (#17733) (#17978)
Browse files Browse the repository at this point in the history
  • Loading branch information
ti-chi-bot authored Jul 16, 2024
1 parent cd504b0 commit f769839
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tidb-lightning/tidb-lightning-configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ driver = "file"
# - "":在物理导入模式下,不进行冲突数据检测和处理。如果源文件存在主键或唯一键冲突的记录,后续步骤会报错。在逻辑导入模式下,"" 策略将被转换为 "error" 策略处理。
# - "error":检测到导入的数据存在主键或唯一键冲突的数据时,终止导入并报错。
# - "replace":遇到主键或唯一键冲突的数据时,保留最新的数据,覆盖旧的数据。
# 冲突数据将被记录到目标 TiDB 集群中的 `lightning_task_info.conflict_view` 视图中。
# 使用物理导入模式时,冲突数据将被记录到目标 TiDB 集群中的 `lightning_task_info.conflict_view` 视图中。
# 在 `lightning_task_info.conflict_view` 视图中,如果某行的 `is_precheck_conflict` 字段为 `0`,表示该行记录的冲突数据是通过后置冲突检测发现的;如果某行的 `is_precheck_conflict` 字段为 `1`,表示该行记录的冲突数据是通过前置冲突检测发现的。
# 你可以根据业务需求选择正确的记录重新手动写入到目标表中。注意,该方法要求目标 TiKV 的版本为 v5.2.0 或更新版本。
# - "ignore":遇到主键或唯一键冲突的数据时,保留旧的数据,忽略新的数据。仅当导入模式为逻辑导入模式时可以使用该选项。
Expand Down

0 comments on commit f769839

Please sign in to comment.