mirror of
https://github.com/dataease/dataease.git
synced 2026-06-16 11:21:44 +08:00
feat(同步管理): 增量同步支持指定正负偏移量
This commit is contained in:
@@ -112,6 +112,9 @@ export interface ITarget {
|
||||
incrementField: string
|
||||
incrementFieldType: string
|
||||
remarks: string
|
||||
faultToleranceRate: number
|
||||
incrementOffset: number
|
||||
incrementOffsetUnit: string
|
||||
}
|
||||
|
||||
export class ITaskInfoRes {
|
||||
|
||||
@@ -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:',
|
||||
|
||||
@@ -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: '目前支援的參數:',
|
||||
|
||||
@@ -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: '当前支持的参数:',
|
||||
|
||||
2
de-xpack
2
de-xpack
Submodule de-xpack updated: 51a4af6323...831fb97e09
@@ -24,4 +24,6 @@ public class Target {
|
||||
private double faultToleranceRate;
|
||||
private String incrementFieldType;
|
||||
private String remarks;
|
||||
private Long incrementOffset;
|
||||
private String incrementOffsetUnit;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user