Big helper objects #9
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
2 participants
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: TrueCloudLab/frostfs-node#9
Loading…
Add table
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?
>>
small obj limit) obj;I think that is because TS becomes big and now validation is broken after helper objects broadcast optimization. But that must be rechecked.
I think it is expected -- basically we have some limit on an object size.
Last time I checked it was quite big: object ID is 32-byte in size, so if
MaxObjectSize
is 1MiB, we still can store ~max object size * max object count in tombstone == 1 MiB * (1 MiB / 32) == 2^40 / 2^5 = 2^35 = 32 GiB
.I think we should at least extend the documentation here.
Let's document the restriction and describe the behaviour.
The documentation should be in the api repo.
MaxObjectSize
implication on the big object size #50Closed in favor of TrueCloudLab/frostfs-api#50