[jindo] Disable directory timestamps for faster listings - #9019
Merged
JingsongLi merged 1 commit intoAug 4, 2026
Conversation
Jindo spends extra time resolving a timestamp for every directory entry during listStatus. On a directory with 1,095 subdirectories, listing takes about 11s with the option enabled and about 0.2s with it disabled, returning the same entries. Paimon does not read directory timestamps from listings, so JindoFileIO now defaults fs.oss.show-dir-timestamp to false and keeps an explicit user setting unchanged.
sundapeng
force-pushed
the
jindo-default-dir-timestamp-off
branch
from
August 4, 2026 07:29
a324130 to
f492fbf
Compare
Member
|
+1, LGTM. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Purpose
Jindo resolves a timestamp for every directory entry during
listStatuswhenfs.oss.show-dir-timestampis enabled, which is its default. Listing a directory with about 1,000 subdirectories takes 11s with the option on and 0.2s with it off, while Paimon does not read directory timestamps from listings. This PR defaults the option tofalseinJindoFileIOand keeps an explicit user setting unchanged.Tests
New tests in
JindoFileIOTestcover the default and an explicittruesetting.