/
githubmirror
/
ceph
Обзор
Документация
Войти
/
githubmirror
/
ceph
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
doc/rados/command/list-inconsistent-snap.json
86 строк
2 KB
David Zafman
osd rados command: Show snapset in list-inconsistent-snapset
10 апр 2018, 23:51
10 апр 2018, 23:51
60ae2b8
Код
Авторство
О чём код?
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "epoch": { "description": "Scrub epoch", "type": "integer" }, "inconsistents": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "nspace": { "type": "string" }, "locator": { "type": "string" }, "snap": { "oneOf": [ { "type": "string", "enum": [ "head", "snapdir" ] }, { "type": "integer", "minimum": 0 } ] }, "errors": { "description": "Errors for this object's snap", "type": "array", "items": { "enum": [ "snapset_missing", "snapset_corrupted", "info_missing", "info_corrupted", "snapset_error", "headless", "size_mismatch", "extra_clones", "clone_missing" ] }, "minItems": 0, "uniqueItems": true }, "missing": { "description": "List of missing clones if clone_missing error set", "type": "array", "items": { "type": "integer" } }, "extra_clones": { "description": "List of extra clones if extra_clones error set", "type": "array", "items": { "type": "integer" } } }, "required": [ "name", "nspace", "locator", "snap", "errors" ] } } }, "required": [ "epoch", "inconsistents" ] }