mirror of
https://github.com/minio/minio.git
synced 2024-12-26 07:05:55 -05:00
c8f57133a4
* Filter lock info based on bucket, prefix and time since lock was held * Implement list and clear locks REST API * madmin: Add list and clear locks API * locks: Clear locks matching bucket, prefix, relTime. * Gather lock information across nodes for both list and clear locks admin REST API. * docs: Add lock API to management APIs
2.2 KiB
2.2 KiB
Management REST API
Authentication
- AWS signatureV4
- We use "minio" as region. Here region is set only for signature calculation.
List of management APIs
-
Service
- Stop
- Restart
- Status
-
Locks
- List
- Clear
-
Healing
Service Management APIs
-
Stop
- POST /?service
- x-minio-operation: stop
- Response: On success 200
-
Restart
- POST /?service
- x-minio-operation: restart
- Response: On success 200
-
Status
- GET /?service
- x-minio-operation: status
- Response: On success 200, return json formatted StorageInfo object.
Lock Management APIs
-
ListLocks
- GET /?lock&bucket=mybucket&prefix=myprefix&older-than=rel_time
- x-minio-operation: list
- Response: On success 200, json encoded response containing all locks held, older than rel_time. e.g, older than 3 hours.
- Possible error responses
-
ErrInvalidBucketName
InvalidBucketName
The specified bucket is not valid. / 3L137 3L137 -
ErrInvalidObjectName
XMinioInvalidObjectName
Object name contains unsupported characters. Unsupported characters are `^*|" / 3L137 3L137 -
ErrInvalidDuration
InvalidDuration
Relative duration provided in the request is invalid. / 3L137 3L137
-
-
ClearLocks
- POST /?lock&bucket=mybucket&prefix=myprefix&older-than=rel_time
- x-minio-operation: clear
- Response: On success 200, json encoded response containing all locks cleared, older than rel_time. e.g, older than 3 hours.
- Possible error responses, similar to errors listed in ListLocks.
- ErrInvalidBucketName
- ErrInvalidObjectName
- ErrInvalidDuration