.dropCollection() not working properly

Description

I encountered a bug where doing .dropCollection() and then remaking the collection immediately with the same name/indexes seems to not release the space back to the OS. The “storageSize” metric went down but the space wasn’t released back to the OS. I had to restart the server for the space to be released back to the OS. The collection that was dropped was decently large with about 1.1 billion documents.

Currently using Percona Server for MongoDB server version: v5.0.24-21

OS version is: Rocky Linux release 8.9 (Green Obsidian)

Also using WiredTiger storage engine

Environment

None

Activity

Igor Solodovnikov July 23, 2024 at 1:56 PM

Hello

If I understand correctly the issue is about filesystem space not freeing immediately after drop.

This is probably because MongoDB has two phase drop implementation. At first phase collection and its indexes are removed from metadata (but files are still preserved). At second phase files are removed from the filesystem. In the most common case second phase is deferred until the next checkpoint. By default MongoDB does checkpoints each 60 seconds.

That means it does not matter if you recreate collection with the same name or not. In any case old collection’s files will be removed after up to 60 seconds delay.

Please let us know if this corresponds to your observations.

radoslaw.szulgo July 23, 2024 at 9:16 AM

This is an expected behavior in MongoDB. MongoDB seldom returns disk space to the operating system during deleting, these disk pages are marked dirty and reserved for writing in the future. The compact command lets WiredTiger return this space. (like PostgreSQL’s Vacuum). Note, that the compact command needs to be executed on every node in the cluster. Alternatively, you can resync a replicate set member (what you actually did by restarting the node).

See also MongoDB docs.

Jan Mynar July 23, 2024 at 8:56 AM

We need to investigate this issue and understand the behavior, explicitly what happens when the new collection with the same name is not created, is the space remains allocated or not?

than we are able to decide how to threat the bug.

Won't Do

Details

Assignee

Reporter

Needs QA

Yes

Components

Sprint

Affects versions

Priority

Smart Checklist

Created June 26, 2024 at 6:33 PM
Updated July 23, 2024 at 1:56 PM
Resolved July 23, 2024 at 9:16 AM