15

The question is why exactly does a directory shrink after directory entries are removed? Is it due to how ext4 filesystem configured to retain directory metadata? Obviously removing the directory and recreating it isn't a solution, since it deletes original inode and creates a new one. What can be done to decrease the number manually?

ilkkachu
  • 138,973
  • not really - this question was specific enough to quote an authoritative source, unlike the suggested duplicate – Thomas Dickey Jan 17 '19 at 22:42
  • 1
    @Kusalananda I've edited the answer to include a rationale for why the linked duplicate isn't appropriate. I would suggest linking the other way around, ans Thomas's answer here does in fact answer the why of it for both mine and the other question – Sergiy Kolodyazhnyy Jan 17 '19 at 22:57
  • 1
    It is also worthwhile to note that a patch was recently submitted to allow ext4 itrctories to shrink as their leaf blocks become empty: https://patchwork.ozlabs.org/patch/1025534/ – LustreOne Jan 19 '19 at 17:12

1 Answers1

20

Quoting a developer (in a linux kernel thread ext3/ext4 directories don't shrink after deleting lots of files):

On Thu, May 14, 2009 at 08:45:38PM -0400, Timo Sirainen wrote:
>
> I was rather thinking something that I could run while the system was  
> fully operational. Otherwise just moving the files to a temp directory +
> rmdir() + rename() would have been fine too.
>
> I just tested that xfs, jfs and reiserfs all shrink the directories  
> immediately. Is it more difficult to implement for ext* or has no one  
> else found this to be a problem?

It's probably fairest to say no one has thought it worth the effort.
It would require some fancy games to swap out block locations in the
extent trees (life would be easier with non-extent-using inodes), and
in the case of htree, we would have to keep track of the index block
so we could remove it from the htree index.  So it's all doable, if a
bit tricky in terms of the technical details; it's just that the
people who could do it have been busy enough with other things.

It's hasn't been considered high priority because most of the time
directories don't go from holding thousands of files down to a small
handful.  

                                                - Ted
Thomas Dickey
  • 76,765
  • 1
    "most of the time directories don't go from holding thousands of files down to a small handful." This "often" happens in database transaction log directories. – RonJohn May 18 '23 at 18:28