The binary files attached to documents are not stored in the database but using a specialized binary store (typically filesystem-based or S3), and are not removed like documents (see Deleting Documents).
Binary files are not immediately deleted when their containing document is deleted because the binary store uses a de-duplication strategy which means that the same binary file may be referenced by several documents. To avoid complex locking or reference counting strategies, they are simply garbage-collected when there remains no reference to them (they are orphaned).
Manually - Using the Web interface
The garbage collection is done by an explicit administration step:
- Go to Admin > System Information > Repository binaries.
- Check the Delete orphaned binaries check box. If you just want to gather statistics about what it going to be deleted, don't check this box and go next step.
- Click on Mark orphaned binaries.
Programmatically - Using the Nuxeo Shell or Java Code
import org.nuxeo.ecm.core.blob.BlobManager;
import org.nuxeo.ecm.core.storage.binary.BinaryManagerStatus;
BlobManager blobManager = Framework.getService(BlobManager.class);
if (!blobManager.isBinariesGarbageCollectionInProgress()) {
BinaryManagerStatus binaryManagerStatus = blobManager.garbageCollectBinaries(true);
println("Orphaned binaries garbage collecting result: " + binaryManagerStatus);
} else {
println("Orphaned binaries garbage collecting is already in progress.");
}
Related Documentation
- Deleting Content (User documentation)
- Deleting Documents
- How to Enable the Trash Feature