vtlim commented on a change in pull request #12190:
URL: https://github.com/apache/druid/pull/12190#discussion_r792080659
##########
File path: docs/operations/clean-metadata-store.md
##########
@@ -119,7 +145,23 @@ Indexer task log cleanup on the Overlord uses the
following configuration:
For more detail, see [Task logging](../configuration/index.md#task-logging).
-## Automated metadata cleanup example configuration
+
+## Disable automated metadata cleanup
+
+Druid enables automated metadata cleanup by default. To disable this feature,
set the following properties in the `coordinator/runtime.properties` file:
+
+```
+druid.coordinator.kill.on=false
+druid.coordinator.kill.audit.on=false
+druid.coordinator.kill.supervisor.on=false
+druid.coordinator.kill.rule.on=false
+druid.coordinator.kill.compaction.on=false
+druid.coordinator.kill.datasource.on=false
Review comment:
```suggestion
# Keep unused segments
druid.coordinator.kill.on=false
# Keep audit records
druid.coordinator.kill.audit.on=false
# Keep supervisor records
druid.coordinator.kill.supervisor.on=false
# Keep rules records
druid.coordinator.kill.rule.on=false
# Keep compaction configuration records
druid.coordinator.kill.compaction.on=false
# Keep datasource records created by supervisors
druid.coordinator.kill.datasource.on=false
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]