-
Type: Improvement
-
Status: Resolved
-
Priority: Minor
-
Resolution: Fixed
-
Affects Version/s: None
-
Component/s: BlobManager, Core
-
Release Notes Summary:Immediate Document's blobs Garbage Collection can be disabled with a nuxeo.conf property
-
Tags:
-
Upgrade notes:
-
Team:PLATFORM
-
Sprint:nxplatform #84
We can add a nuxeo.bulk.action.blobGC.enabled (default value true) to easily disable Immediate blob Garbage Collection introduced in NXP-31594.
diff --git i/modules/core/nuxeo-core/src/main/resources/OSGI-INF/core-domain-event-producer-contrib.xml w/modules/core/nuxeo-core/src/main/resources/OSGI-INF/core-domain-event-producer-contrib.xml index 900ff17dc71..3463186a30b 100644 --- i/modules/core/nuxeo-core/src/main/resources/OSGI-INF/core-domain-event-producer-contrib.xml +++ w/modules/core/nuxeo-core/src/main/resources/OSGI-INF/core-domain-event-producer-contrib.xml @@ -12,6 +12,7 @@ <extension target="org.nuxeo.runtime.stream.service" point="streamProcessor"> <streamProcessor name="blobGC" + enabled="${nuxeo.bulk.action.blobGC.enabled:=true}" defaultCodec="avro" class="org.nuxeo.ecm.core.blob.stream.StreamOrphanBlobGC" defaultConcurrency="${nuxeo.bulk.action.blobGC.defaultConcurrency:=1}" defaultPartitions="${nuxeo.bulk.action.blobGC.defaultPartitions:=1}"
The current alternative is to override the core-domain-event-producer-contrib.xml contribution.
- is related to
-
NXP-31594 Clean up orphan binaries after document removal, blob property edition and dispatch
- Resolved