Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,140 changes: 570 additions & 570 deletions fern/apis/master/openapi-overrides.yml

Large diffs are not rendered by default.

59 changes: 55 additions & 4 deletions fern/apis/master/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -6546,10 +6546,10 @@
"example": {
"collections": [
{
"name": "arivx-title"
"name": "arxiv-title"
},
{
"name": "arivx-abstract"
"name": "arxiv-abstract"
},
{
"name": "medium-title"
Expand Down Expand Up @@ -11377,6 +11377,12 @@
"format": "uint",
"minimum": 0
},
"max_collections": {
"type": "integer",
"format": "uint",
"minimum": 0,
"nullable": true
},
"collections": {
"type": "array",
"items": {
Expand Down Expand Up @@ -11539,6 +11545,16 @@
"additionalProperties": {
"$ref": "#/components/schemas/ReplicaState"
}
},
"partial_snapshot": {
"anyOf": [
{
"$ref": "#/components/schemas/PartialSnapshotTelemetry"
},
{
"nullable": true
}
]
}
}
},
Expand Down Expand Up @@ -12009,14 +12025,14 @@
"SparseVectorStorageType": {
"oneOf": [
{
"description": "Storage on disk",
"description": "Storage on disk (rocksdb storage)",
"type": "string",
"enum": [
"on_disk"
]
},
{
"description": "Storage in memory maps",
"description": "Storage in memory maps (gridstore storage)",
"type": "string",
"enum": [
"mmap"
Expand Down Expand Up @@ -12326,6 +12342,25 @@
}
}
},
"PartialSnapshotTelemetry": {
"type": "object",
"required": [
"ongoing_create_snapshot_requests",
"recovery_timestamp"
],
"properties": {
"ongoing_create_snapshot_requests": {
"type": "integer",
"format": "uint",
"minimum": 0
},
"recovery_timestamp": {
"type": "integer",
"format": "uint64",
"minimum": 0
}
}
},
"ShardCleanStatusTelemetry": {
"oneOf": [
{
Expand Down Expand Up @@ -15225,6 +15260,22 @@
"type": "boolean"
}
]
},
"Usage": {
"description": "Usage of the hardware resources, spent to process the request",
"type": "object",
"properties": {
"hardware": {
"anyOf": [
{
"$ref": "#/components/schemas/HardwareUsage"
},
{
"nullable": true
}
]
}
}
}
}
}
Expand Down
Loading