Skip to content

Commit 44764db

Browse files
Update Data Insights Retention to 90 days (#25111)
* Update Data Insights Retention to 30 days * Update Data Insights Retention to 90 days * Update generated TypeScript types --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 96b94c9 commit 44764db

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,7 @@ ingestion/.nox/
156156

157157
# BMAD Method
158158
.bmad-core/
159+
_bmad/
159160

160161
# Claude Flow generated files
161162
.claude/settings.local.json

openmetadata-service/src/main/resources/json/data/app/DataInsightsApplication.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"entities": [
1414
"all"
1515
],
16-
"retention": 7
16+
"retention": 90
1717
},
1818
"appAnalytics": {
1919
"enabled": true
@@ -30,4 +30,4 @@
3030
"scheduleTimeline": "Custom",
3131
"cronExpression": "0 3 * * *"
3232
}
33-
}
33+
}

openmetadata-service/src/main/resources/json/data/appMarketPlaceDefinition/DataInsightsApplication.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"entities": [
2828
"all"
2929
],
30-
"retention": 7
30+
"retention": 90
3131
},
3232
"appAnalytics": {
3333
"enabled": true
@@ -40,4 +40,4 @@
4040
}
4141
}
4242
}
43-
}
43+
}

openmetadata-spec/src/main/resources/json/schema/entity/applications/configuration/internal/dataInsightsAppConfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
"title": "Data Retention (Days)",
5757
"description": "Defines the number of days the Data Assets Insights information will be kept. After it they will be deleted.",
5858
"type": "integer",
59-
"default": 7,
59+
"default": 90,
6060
"minimum": 0
6161
},
6262
"serviceFilter": {

openmetadata-ui/src/main/resources/ui/src/utils/ApplicationSchemas/DataInsightsApplication.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
"title": "Data Retention (Days)",
7676
"description": "Defines the number of days the Data Assets Insights information will be kept. After it they will be deleted.",
7777
"type": "integer",
78-
"default": 7,
78+
"default": 90,
7979
"minimum": 0
8080
},
8181
"serviceFilter": {

0 commit comments

Comments
 (0)