[#36] Add docs

Signed-off-by: Denis Kirillov <denis@nspcc.ru>
This commit is contained in:
Denis Kirillov 2022-08-03 09:53:16 +03:00 committed by Denis Kirillov
parent 6e8b6f8b51
commit ada830616b
2 changed files with 51 additions and 0 deletions

View file

@ -1132,6 +1132,11 @@ definitions:
required: required:
- lifetime - lifetime
- members - members
example:
name: my-storage-group
lifetime: 100
members:
- 8N3o7Dtr6T1xteCt6eRwhpmJ7JhME58Hyu1dvaswuTDd
StorageGroup: StorageGroup:
description: Storage group keeps verification information for Data Audit sessions. description: Storage group keeps verification information for Data Audit sessions.
type: object type: object
@ -1144,10 +1149,13 @@ definitions:
readOnly: true readOnly: true
$ref: '#/definitions/Address' $ref: '#/definitions/Address'
expirationEpoch: expirationEpoch:
description: Expiration epoch of storage group.
type: string type: string
hash: hash:
description: Homomorphic hash from the concatenation of the payloads of the storage group members. Empty means hashing is disabled.
type: string type: string
size: size:
description: Total size of the payloads of objects in the storage group.
type: string type: string
members: members:
description: Object identifiers to be placed into storage group. Must be unique. description: Object identifiers to be placed into storage group. Must be unique.
@ -1159,6 +1167,15 @@ definitions:
- expirationEpoch - expirationEpoch
- size - size
- members - members
example:
name: my-storage-group
address:
objectId: 9N3o7Dtr6T1xteCt6eRwhpmJ7JhME58Hyu1dvaswuTDd
containerId: 5HZTn5qkRnmgSz9gSrw22CEdPPk6nQhkwf2Mgzyvkikv
expirationEpoch: 5000
size: 4096
members:
- 8N3o7Dtr6T1xteCt6eRwhpmJ7JhME58Hyu1dvaswuTDd
StorageGroupBaseInfo: StorageGroupBaseInfo:
description: Storage group info for listing. description: Storage group info for listing.
type: object type: object
@ -1172,6 +1189,12 @@ definitions:
required: required:
- address - address
- expirationEpoch - expirationEpoch
example:
name: my-storage-group
address:
objectId: 9N3o7Dtr6T1xteCt6eRwhpmJ7JhME58Hyu1dvaswuTDd
containerId: 5HZTn5qkRnmgSz9gSrw22CEdPPk6nQhkwf2Mgzyvkikv
expirationEpoch: 5000
StorageGroupList: StorageGroupList:
description: List of storage groups. description: List of storage groups.
type: object type: object
@ -1185,6 +1208,14 @@ definitions:
required: required:
- size - size
- storageGroups - storageGroups
example:
size: 1
storageGroups:
- name: my-storage-group
address:
objectId: 9N3o7Dtr6T1xteCt6eRwhpmJ7JhME58Hyu1dvaswuTDd
containerId: 5HZTn5qkRnmgSz9gSrw22CEdPPk6nQhkwf2Mgzyvkikv
expirationEpoch: 5000
Attribute: Attribute:
description: Attribute is a pair of strings that can be attached to a container or an object. description: Attribute is a pair of strings that can be attached to a container or an object.
type: object type: object

View file

@ -75,4 +75,24 @@ Also, you can use this attribute to further object searching.
More about FrostFS status code you can More about FrostFS status code you can
find [here](https://github.com/nspcc-dev/neofs-spec/blob/master/20-api-v2/status.md). find [here](https://github.com/nspcc-dev/neofs-spec/blob/master/20-api-v2/status.md).
### Storage groups
The concept of a storage group has been introduced to reduce the dependence of the complexity of
the check on the number of stored objects in the system.
The consistency and availability of multiple objects on the network are achieved by validating the
storage group without saving meta information and performing validation on each object.
`StorageGroup` keeps verification information for Data Audit sessions. Objects that require paid storage
guaranties are gathered in `StorageGroups` with additional information used for proof of storage
checks. A `StorageGroup` can be created only for objects from the same container.
A `StorageGroup` are objects of a special type with the payload containing the serialized protobuf
structure. For the details on the format please refer to the [API specification](https://github.com/nspcc-dev/neofs-spec/blob/master/20-api-v2/storagegroup.md) in the corresponding section.
StorageGroup structure has information about:
* Total size of the payloads of objects in the storage group
* Homomorphic hash from the concatenation of the payloads of the storage group members. The order of concatenation is the same as the order of the members in the members field.
* Last NeoFS epoch number of the storage group lifetime
* Alpha-numerically sorted list of member objects