Compare commits

..

1 commit

Author SHA1 Message Date
6ea4183397 [#77] object: Add a refinement to description on the FileName attribute
Signed-off-by: Roman Loginov <r.loginov@yadro.com>
2025-04-16 14:51:03 +00:00
3 changed files with 2 additions and 6 deletions

View file

@ -112,10 +112,6 @@ message Replica {
// Parity shards count
uint32 ec_parity_count = 4 [ json_name = "ecParityCount" ];
// Use all nodes from the node set defined by the selector.
// This flag is applicable only to the 'REP' selector and cannot be used for 'EC'.
bool wildcard = 5 [ json_name = "wildcard" ];
}
// Set of rules to select a subset of nodes from `NetworkMap` able to store

View file

@ -141,7 +141,8 @@ message Header {
// * Name \
// Human-friendly name
// * FileName \
// File name to be associated with the object on saving
// File name to be associated with the object on saving. FileName must not
// contain the delimiting symbol '/'.
// * FilePath \
// Full path to be associated with the object on saving. Should start with a
// '/' and use '/' as a delimiting symbol. Trailing '/' should be

View file

@ -515,7 +515,6 @@ default.
| selector | [string](#string) | | Named selector bucket to put replicas |
| ec_data_count | [uint32](#uint32) | | Data shards count |
| ec_parity_count | [uint32](#uint32) | | Parity shards count |
| wildcard | [bool](#bool) | | Use all nodes from the node set defined by the selector. This flag is applicable only to the 'REP' selector and cannot be used for 'EC'. |
<a name="neo.fs.v2.netmap.Selector"></a>