Updated on 2025-07-01 GMT+08:00

Parallel File System Features

Compatibility Between OBS Bucket APIs and Parallel File Systems

You can call some OBS bucket APIs to use parallel file systems. There may be additional requirements when you call these APIs.

For details about the OBS bucket APIs, see Object Storage Service API Reference.

Permissions Configuration

The use cases and main functions of object access control also work on files in parallel file systems. For more information, see Permissions Configuration Guide.

Example 2: Grant a user the permissions required to download dir_1 and its subdirectories.

In the following configuration, the resource path uses prefix-based matching and ends with a wildcard (*). In such case, a success response can be returned when a head request is sent to dir_1/file1.

{
    "Version": "1.1",
    "Statement": [
        {
            "Effect": "Allow",
            "Action": [
                "obs:object:GetObject",
            ],
            "Resource": [
                "obs:*:*:object:examplebucket/dir_1/*",
            ]
        }
    ]
}

Lifecycle Management

The use cases and main functions of object lifecycle management also work on files in parallel file systems. For more information, see Creating a Lifecycle Rule.

To manage the lifecycle using SDKs, see SDK Overview.