[#xx] Fix writecache benchmarks and refactor hacky NeedsCompression #586
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 milestone
No project
No assignees
3 participants
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: TrueCloudLab/frostfs-node#586
Loading…
Reference in a new issue
No description provided.
Delete branch "ale64bit/frostfs-node:fix/wc-benchmarks"
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?
Previously they were not accurate due to missing
RawData
and swallowing the error.Signed-off-by: Alejandro Lopez a.lopez@yadro.com
cb211f31be
to41c24d2f71
41c24d2f71
to66e4f76f49
@ -36,3 +17,3 @@
path string
// blobstor is the main persistent storage.
blobstor blob
blobstor writecache.Storage
Storage
here is related not to the writecache storage, but to the storage it flushes tooCae we leave the name as
Blobstor
?discussed offline. Renamed to
MainStorage
.@ -113,3 +113,3 @@
}
if c.blobstor.NeedsCompression(prm.Object) {
if c.blobstor.Compressor().NeedsCompression(prm.Object) {
Maybe also make
(*compression.Config) NeedsCompression()
work fornil
Config?Or check for nil here, I think it is easy to forget this in blobstor, for example.
done
66e4f76f49
to0143ccb2db