Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[INLONG-11513][Manager] Rename configuration names related to dirty data #11514

Merged
merged 2 commits into from
Nov 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading