Skip to content

Commit

Permalink
[INLONG-11513][Manager] Rename configuration names related to dirty d…
Browse files Browse the repository at this point in the history
…ata (#11514)
  • Loading branch information
fuweng11 authored Nov 20, 2024
1 parent 042e568 commit 3700baa
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
@ApiModel("Dirty data detail info")
public class DirtyDataDetailResponse {

@ApiModelProperty(value = "Tdbank imp date")
private String tdbankImpDate;
@ApiModelProperty(value = "Dirty data partition")
private String dirtyDataPartition;

@ApiModelProperty(value = "Data flow id")
private String dataFlowId;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ public class DirtyQueryLogServiceImpl implements DirtyQueryLogService {
private Boolean dirtyLogCleanEnabled;
@Value("${dirty.log.clean.interval.minutes:5}")
private Integer dirtyLogCleanInterval;
@Value("${dirty.dirty.retention.minutes:10}")
@Value("${dirty.log.retention.minutes:10}")
private Integer retentionMinutes;
@Value("${dirty.dirty.db.table:inlong_iceberg::dirty_data_achive_iceberg}")
@Value("${dirty.log.db.table:inlong_iceberg::dirty_data_achive_iceberg}")
private String dirtyDataDbTable;

@PostConstruct
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,8 @@ default.module.id=1
# Dirty log
dirty.log.clean.enabled=false
dirty.log.clean.interval.minutes=5
dirty.dirty.retention.minutes=10
dirty.dirty.db.table=inlong_iceberg::dirty_data_achive_iceberg
dirty.log.retention.minutes=10
dirty.log.db.table=inlong_iceberg::dirty_data_achive_iceberg

# DolphinScheduler related config
schedule.engine.dolphinscheduler.url=http://127.0.0.1:12345/dolphinscheduler
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ cls.manager.endpoint=127.0.0.1
# Dirty log
dirty.log.clean.enabled=false
dirty.log.clean.interval.minutes=5
dirty.dirty.retention.minutes=10
dirty.dirty.db.table=inlong_iceberg::dirty_data_achive_iceberg
dirty.log.retention.minutes=10
dirty.log.db.table=inlong_iceberg::dirty_data_achive_iceberg

# DolphinScheduler related config
schedule.engine.dolphinscheduler.url=http://127.0.0.1:12345/dolphinscheduler
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,8 @@ cls.manager.endpoint=127.0.0.1
# Dirty log
dirty.log.clean.enabled=false
dirty.log.clean.interval.minutes=5
dirty.dirty.retention.minutes=10
dirty.dirty.db.table=inlong_iceberg::dirty_data_achive_iceberg
dirty.log.retention.minutes=10
dirty.log.db.table=inlong_iceberg::dirty_data_achive_iceberg

# DolphinScheduler related config
schedule.engine.dolphinscheduler.url=http://127.0.0.1:12345/dolphinscheduler
Expand Down

0 comments on commit 3700baa

Please sign in to comment.