setuid(), setgid() 프로그램, 보조 그룹, POSIX ACL은 DFS 네임스페이스 내에서 지원되지 않습니다.
액세스 시간, 변경 시간, 수정 시간이 올바르게 업데이트되지 않을 수 있습니다.
Flock은 지원되지 않습니다.
stat buf의 블록 크기는 구멍이나 확장 속성을 고려하지 않으므로 정확하지 않습니다.
블록 수, 파일 수, 사용 가능한 여유 공간과 같은 statfs로 보고되는 일부 매개변수는 지원되지 않습니다.
캡슐화된 네임스페이스 내의 POSIX 권한은 지원되지 않습니다.
DFS 디렉터리에는 다른 POSIX 파일 시스템에서 알려진 . (현재 디렉터리) 및 ..(상위 디렉터리) 디렉터리 항목이 포함되지 않습니다. ls -al과 같은 명령어는 출력에 이러한 항목을 포함하지 않습니다. 이러한 디렉터리 항목은 POSIX에서 요구하지 않으므로 POSIX 규정 준수에 제한되지 않습니다. 하지만 이러한 점 디렉터리가 있다고 가정하고 디렉터리 목록을 파싱하는 스크립트는 이 상황을 올바르게 처리하도록 조정해야 할 수 있습니다. cd . 또는 cd ..와 같은 작업은 dfuse 마운트 POSIX 컨테이너에서 계속 성공합니다.
[[["이해하기 쉬움","easyToUnderstand","thumb-up"],["문제가 해결됨","solvedMyProblem","thumb-up"],["기타","otherUp","thumb-up"]],[["이해하기 어려움","hardToUnderstand","thumb-down"],["잘못된 정보 또는 샘플 코드","incorrectInformationOrSampleCode","thumb-down"],["필요한 정보/샘플이 없음","missingTheInformationSamplesINeed","thumb-down"],["번역 문제","translationIssue","thumb-down"],["기타","otherDown","thumb-down"]],["최종 업데이트: 2025-09-04(UTC)"],[],[],null,["# POSIX compliance\n\nThe following features from POSIX are not supported by Parallelstore:\n\n- Hard links are not supported.\n- mmap support with MAP_SHARED will be consistent from a single client only.\n- Char devices, block devices, and sockets and pipes are not supported.\n- User and group quotas are not supported.\n- `setuid()`, `setgid()` programs, supplementary groups, and POSIX ACLs are not supported within the DFS namespace.\n- Access time, change time, and modify time might not be updated correctly.\n- Flock is not supported.\n- Block size in stat buf is not accurate, as it does not account for holes or extended attributes.\n- Some parameters reported with statfs, such as the number of blocks, files, or free and available space, are not supported.\n- POSIX permissions inside an encapsulated namespace are not supported.\n- DFS directories don't include the `.` (current directory) and `..` (parent directory) directory entries that are known from other POSIX file systems. Commands like `ls -al` won't include these entries in their output. Those directory entries are not required by POSIX, so this is not a limitation to POSIX compliance. But scripts that parse directory listings under the assumption that those dot directories are present may need to be adapted to to correctly handle this situation. Note that operations like `cd .` or `cd ..` will still succeed in dfuse-mounted POSIX containers."]]