chore: docs

Signed-off-by: Jack Palmer <jackpalmer@spotify.com>
This commit is contained in:
Jack Palmer
2025-02-25 20:31:02 +00:00
parent f95ef03dff
commit da04ead6be
2 changed files with 12 additions and 1 deletions
@@ -163,6 +163,17 @@ catalog:
orphanStrategy: delete
```
## Clean up entities from orphaned entity providers
By default, if an entity provider which has provided entities to the catalog, is no longer configured, then the entities remain in the catalog until they are manually unregistered.
To remove these entities automatically, you can use the following configuration.
```yaml
catalog:
evictOrphanedEntityProviders: true
```
## Processing Interval
The [processing loop](./life-of-an-entity.md#processing) is
+1 -1
View File
@@ -218,7 +218,7 @@ export interface Config {
useUrlReadersSearch?: boolean;
/**
* Evicts entities from the catalog that are no longer referenced by entity providers added to the catalog.
* Evicts entities from the catalog when their related entity provider no longer exists.
*/
evictOrphanedEntityProviders?: boolean;
};