CheckPolarFsQuotaConsistency
Checks the consistency of quota settings in a PolarFS instance.
Operation description
Description
This operation verifies the consistency of quota configurations within a specified PolarFS instance. These configurations include storage capacity and inode limits on directory paths. If inconsistencies are found, the operation returns a list of the inconsistent paths and any related error information.
Usage notes
-
Ensure that the
PolarFsInstanceIdparameter correctly identifies the target PolarFS instance. -
When the system detects quota inconsistencies, it returns
IsConsistent=falseand populates theInconsistentPathsarray. -
If the request is successful and no inconsistencies are found, the
InconsistentPathsarray is empty andIsConsistentis set totrue. -
For errors such as insufficient permissions or a non-existent resource, see the error codes for details.
Try it now
Test
RAM authorization
|
Action |
Access level |
Resource type |
Condition key |
Dependent action |
|
polardb:CheckPolarFsQuotaConsistency |
none |
*All Resource
|
None | None |
Request syntax
GET / HTTP/1.1
Request parameters
|
Parameter |
Type |
Required |
Description |
Example |
| PolarFsInstanceId |
string |
Yes |
The ID of the PolarFS instance. |
pfs-test**** |
| Path |
string |
No |
The directory path. |
/test |
| EnableRepair |
boolean |
No |
Specifies whether to repair an inconsistent quota. Valid values:
|
false |
| EnableStrictCalculate |
boolean |
No |
Specifies whether to calculate the total usage of the directory in strict mode. Valid values:
|
false |
Response elements
|
Element |
Type |
Description |
Example |
|
object |
The response object for the quota consistency check. |
||
| PolarFsInstanceId |
string |
The ID of the PolarFS instance. |
pfs-2ze0i74ka607***** |
| QuotaItem |
object |
An object that contains details about the quota. |
|
| Path |
string |
The directory path. |
/zookeepertest718 |
| Capacity |
integer |
The storage capacity quota. |
104857600 |
| UsedCapacity |
integer |
The used capacity, in bytes. |
104857600 |
| Inodes |
integer |
The inode quota. |
50000 |
| UsedInodes |
integer |
The number of used inodes. |
1 |
| RequestId |
string |
The request ID. |
E56531A4-E552-40BA-9C58-137B80****** |
Examples
Success response
JSON format
{
"PolarFsInstanceId": "pfs-2ze0i74ka607*****",
"QuotaItem": {
"Path": "/zookeepertest718",
"Capacity": 104857600,
"UsedCapacity": 104857600,
"Inodes": 50000,
"UsedInodes": 1
},
"RequestId": "E56531A4-E552-40BA-9C58-137B80******"
}
Error codes
See Error Codes for a complete list.
Release notes
See Release Notes for a complete list.