You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The actual meaning of 'tikv-importer.incremental-import' is to use the physical import mode for parallel import, which requires the target table to be empty. However, the current name may mislead users into thinking it is for incremental import, leading to misuse.
When the user misuses it and sets the 'duplicate-resolution' to 'remove', conflicts between data in the source file and the existing data in the target table can lead to the mistaken deletion of the conflicting records in the target table.
Enhancement
Starting from version 7.3, the parameter name has been changed from 'tikv-importer.incremental-import' to 'tikv-importer.parallel-import'.
If users pass the parameter name as 'tikv-importer.incremental-import', it will be converted to 'tikv-importer.parallel-import' for compatibility.
This improvement makes the functionality clearer and helps prevent user misuse.
The text was updated successfully, but these errors were encountered:
Background
The actual meaning of 'tikv-importer.incremental-import' is to use the physical import mode for parallel import, which requires the target table to be empty. However, the current name may mislead users into thinking it is for incremental import, leading to misuse.
When the user misuses it and sets the 'duplicate-resolution' to 'remove', conflicts between data in the source file and the existing data in the target table can lead to the mistaken deletion of the conflicting records in the target table.
Enhancement
This improvement makes the functionality clearer and helps prevent user misuse.
The text was updated successfully, but these errors were encountered: