We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Validator may be hitting filesystems too hard: OpenNeuroOrg/openneuro#1219
The text was updated successfully, but these errors were encountered:
Specifically we're seeing this on NFSv4 with datasets that have many (200+) participants.
Sorry, something went wrong.
The worst case dataset spends 65% of the time running lstat syscalls in https://github.com/bids-standard/bids-validator/blob/master/bids-validator/utils/files/readDir.js#L129 - 25% is spent on the actual readdir calls. We do make an extra lstat call for every annexed file (since they are symlinks), which could be avoided for OpenNeuro where directories will never be symlinks but is useful generally.
I think this is solved for now.
nellh
No branches or pull requests
Validator may be hitting filesystems too hard:
OpenNeuroOrg/openneuro#1219
The text was updated successfully, but these errors were encountered: