forked from TrueCloudLab/frostfs-sdk-go
Evgenii Stratonikov
0550438b53
Make sure we fail exactly because of the reason specified. Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
116 lines
2.3 KiB
JSON
116 lines
2.3 KiB
JSON
{
|
|
"name": "invalid selections",
|
|
"nodes": [
|
|
{
|
|
"attributes": [
|
|
{
|
|
"key": "Country",
|
|
"value": "Russia"
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"attributes": [
|
|
{
|
|
"key": "Country",
|
|
"value": "Germany"
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"attributes": []
|
|
}
|
|
],
|
|
"tests": {
|
|
"missing filter": {
|
|
"policy": {
|
|
"replicas": [
|
|
{
|
|
"count": 1,
|
|
"selector": "MyStore"
|
|
}
|
|
],
|
|
"containerBackupFactor": 1,
|
|
"selectors": [
|
|
{
|
|
"name": "MyStore",
|
|
"count": 1,
|
|
"clause": "DISTINCT",
|
|
"attribute": "Country",
|
|
"filter": "FromNL"
|
|
}
|
|
],
|
|
"filters": [
|
|
{
|
|
"name": "FromRU",
|
|
"key": "Country",
|
|
"op": "EQ",
|
|
"value": "Russia",
|
|
"filters": []
|
|
}
|
|
]
|
|
},
|
|
"error": "filter not found"
|
|
},
|
|
"not enough nodes (backup factor)": {
|
|
"policy": {
|
|
"replicas": [
|
|
{
|
|
"count": 1,
|
|
"selector": "MyStore"
|
|
}
|
|
],
|
|
"containerBackupFactor": 2,
|
|
"selectors": [
|
|
{
|
|
"name": "MyStore",
|
|
"count": 2,
|
|
"clause": "DISTINCT",
|
|
"attribute": "Country",
|
|
"filter": "FromRU"
|
|
}
|
|
],
|
|
"filters": [
|
|
{
|
|
"name": "FromRU",
|
|
"key": "Country",
|
|
"op": "EQ",
|
|
"value": "Russia",
|
|
"filters": []
|
|
}
|
|
]
|
|
},
|
|
"error": "not enough nodes"
|
|
},
|
|
"not enough nodes (buckets)": {
|
|
"policy": {
|
|
"replicas": [
|
|
{
|
|
"count": 1,
|
|
"selector": "MyStore"
|
|
}
|
|
],
|
|
"containerBackupFactor": 1,
|
|
"selectors": [
|
|
{
|
|
"name": "MyStore",
|
|
"count": 2,
|
|
"clause": "DISTINCT",
|
|
"attribute": "Country",
|
|
"filter": "FromRU"
|
|
}
|
|
],
|
|
"filters": [
|
|
{
|
|
"name": "FromRU",
|
|
"key": "Country",
|
|
"op": "EQ",
|
|
"value": "Russia",
|
|
"filters": []
|
|
}
|
|
]
|
|
},
|
|
"error": "not enough nodes"
|
|
}
|
|
}
|
|
}
|