feat(同步管理): 增量同步支持指定正负偏移量

This commit is contained in:
jianneng-fit2cloud
2025-07-10 19:52:41 +08:00
parent 0ba69133bb
commit 2fb9b5df12
6 changed files with 21 additions and 4 deletions

View File

@@ -112,6 +112,9 @@ export interface ITarget {
incrementField: string
incrementFieldType: string
remarks: string
faultToleranceRate: number
incrementOffset: number
incrementOffsetUnit: string
}
export class ITaskInfoRes {

View File

@@ -4125,7 +4125,11 @@ export default {
time_end: 'End',
es_query_param_formatter_error:
'Query parameter format error, please enter the correct JSON format, please check',
show_task_id: 'View Task ID'
show_task_id: 'View Task ID',
offset: 'Offset',
offset_tip: 'Offset: negative for backward, positive for forward',
millisecond: 'Millisecond',
units: 'Unit'
},
watermark: {
support_params: 'Currently supported parameters:',

View File

@@ -4011,7 +4011,11 @@ export default {
dynamic_partition_enable: '動態分區',
time_end: '結束',
es_query_param_formatter_error: '查詢參數格式錯誤請輸入正確的JSON格式請檢查',
show_task_id: '查看任務ID'
show_task_id: '查看任務ID',
offset: '偏移量',
offset_tip: '偏移量,負數為前向偏移,正數為後向偏移',
millisecond: '毫秒',
units: '單位'
},
watermark: {
support_params: '目前支援的參數:',

View File

@@ -4013,7 +4013,11 @@ export default {
dynamic_partition_enable: '动态分区',
time_end: '结束',
es_query_param_formatter_error: '查询参数格式错误请输入正确的JSON格式请检查',
show_task_id: '查看任务ID'
show_task_id: '查看任务ID',
offset: '偏移量',
offset_tip: '偏移量,负数为前向偏移,正数为后向偏移',
millisecond: '毫秒',
units: '单位'
},
watermark: {
support_params: '当前支持的参数:',

View File

@@ -24,4 +24,6 @@ public class Target {
private double faultToleranceRate;
private String incrementFieldType;
private String remarks;
private Long incrementOffset;
private String incrementOffsetUnit;
}