metabase: Drop search-only indexes #1323

Merged
fyrchik merged 6 commits from dstepanov-yadro/frostfs-node:feat/drop_metabase_index into master 2024-08-22 08:21:43 +00:00
2 changed files with 8 additions and 1 deletions
Showing only changes of commit 834dd6bb90 - Show all commits

View file

@ -2,6 +2,8 @@
This file describes changes between the metabase versions.
Warning: database schema below is outdated and incomplete, see source code.
## Current
### Primary buckets
@ -86,6 +88,11 @@ This file describes changes between the metabase versions.
# History
## Version 3
- Payload hash, owner ID and FKBT buckets deleted
- Expiration epoch to object ID and object ID to expiration epoch added
## Version 2
- Container ID is encoded as 32-byte slice

View file

@ -9,7 +9,7 @@ import (
)
// version contains current metabase version.
const version = 2
const version = 3
var versionKey = []byte("version")