Do not use base58 encoded keys in db #629
Labels
No labels
P0
P1
P2
P3
badger
frostfs-adm
frostfs-cli
frostfs-ir
frostfs-lens
frostfs-node
good first issue
triage
Infrastructure
blocked
bug
config
discussion
documentation
duplicate
enhancement
go
help wanted
internal
invalid
kludge
observability
perfomance
question
refactoring
wontfix
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: TrueCloudLab/frostfs-node#629
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
addr.EncodeToString()
,oid.EncodeToString()
etc.We convert them to string and then to bytes (because,
bbolt.Bucket.Put
expects bytes).They are also not fixed-size (or, at least it is not obvious for base58)
addr.Encode
does no base58 encoding and encodes address in 64 bytes.Depending on how we do this, we may also need a migration script.
Do not use string encoded keys in dbto Do not use base58 encoded keys in db