Skip to content
New issue

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

alluxio-fuse metadata cache does not update after chmod/chown #18523

Open
secfree opened this issue Feb 20, 2024 · 0 comments · May be fixed by #18524
Open

alluxio-fuse metadata cache does not update after chmod/chown #18523

secfree opened this issue Feb 20, 2024 · 0 comments · May be fixed by #18524
Labels
type-bug This issue is about a bug

Comments

@secfree
Copy link
Contributor

secfree commented Feb 20, 2024

Alluxio Version:
v307

Describe the bug
alluxio-fuse metadata cache does not update after chmod/chown, and access it gets outdated info.

To Reproduce

configuration

alluxio.dora.enabled=false
alluxio.fuse.auth.policy.class=alluxio.fuse.auth.SystemUserGroupAuthPolicy

mount

$ ./dora/integration/fuse/bin/alluxio-fuse mount file:///.../local-store /mnt/fuse

chmod and check

root@:/mnt/fuse# touch test_chmod
root@:/mnt/fuse# ll test_chmod
-rw-r--r-- 1 root root 0 Feb 20 08:20 test_chmod
root@:/mnt/fuse# chmod 400 test_chmod
root@:/mnt/fuse# ll test_chmod
-rw-r--r-- 1 root root 0 Feb 20 08:20 test_chmod

Expected behavior
after chmod, the file should be

-r-------- 1 root root 0 Feb 20 08:20 test_chmod

Are you planning to fix it
Yes

@secfree secfree added the type-bug This issue is about a bug label Feb 20, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
type-bug This issue is about a bug
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant