mirror of
https://github.com/cubefs/cubefs.git
synced 2026-08-06 11:58:01 +00:00
1.2 KiB
Executable File
1.2 KiB
Executable File
Inode Management
Obtaining Basic Information for a Specified Inode
curl -v "http://192.168.0.22:17220/getInode?pid=1&ino=1024"
Request Parameters:
| Parameter | Type | Description |
|---|---|---|
| pid | Integer | Shard ID |
| ino | Integer | Inode ID |
Obtaining Data Storage Information for a Specified Inode
curl -v "http://192.168.0.22:17220/getExtentsByInode?pid=1&ino=1024"
Request Parameters:
| Parameter | Type | Description |
|---|---|---|
| pid | Integer | Shard ID |
| ino | Integer | Inode ID |
Obtaining All Inode Information for a Specified Metadata Shard
curl -v "http://192.168.0.22:17220/getAllInodes?pid=1"
Request Parameters:
| Parameter | Type | Description |
|---|---|---|
| pid | Integer | Shard ID |
Obtaining EBS Shard Information for an Inode
curl -v "192.168.0.22:17220/getEbsExtentsByInode?pid=282&ino=16797167"
Request Parameters:
| Parameter | Type | Description |
|---|---|---|
| pid | Integer | Shard ID |
| ino | Integer | Inode ID |