@@ -85,12 +85,12 @@ namespace NKikimr {
85
85
str << " {Id# " << Id << " }" ;
86
86
}
87
87
88
- THullCtx::THullCtx (TVDiskContextPtr vctx, ui32 chunkSize, ui32 compWorthReadSize, bool freshCompaction,
89
- bool gcOnlySynced, bool allowKeepFlags, bool barrierValidation, ui32 hullSstSizeInChunksFresh,
90
- ui32 hullSstSizeInChunksLevel, double hullCompFreeSpaceThreshold, ui32 freshCompMaxInFlightWrites,
91
- ui32 hullCompMaxInFlightWrites, ui32 hullCompMaxInFlightReads, double hullCompReadBatchEfficiencyThreshold,
88
+ THullCtx::THullCtx (TVDiskContextPtr vctx, const TIntrusivePtr<TVDiskConfig> vcfg, ui32 chunkSize, ui32 compWorthReadSize,
89
+ bool freshCompaction, bool gcOnlySynced, bool allowKeepFlags, bool barrierValidation, ui32 hullSstSizeInChunksFresh,
90
+ ui32 hullSstSizeInChunksLevel, double hullCompFreeSpaceThreshold, double hullCompReadBatchEfficiencyThreshold,
92
91
TDuration hullCompStorageRatioCalcPeriod, TDuration hullCompStorageRatioMaxCalcDuration, bool addHeader)
93
92
: VCtx(std::move(vctx))
93
+ , VCfg(vcfg)
94
94
, IngressCache(TIngressCache::Create(VCtx->Top, VCtx->ShortSelfVDisk))
95
95
, ChunkSize(chunkSize)
96
96
, CompWorthReadSize(compWorthReadSize)
@@ -101,9 +101,6 @@ namespace NKikimr {
101
101
, HullSstSizeInChunksFresh(hullSstSizeInChunksFresh)
102
102
, HullSstSizeInChunksLevel(hullSstSizeInChunksLevel)
103
103
, HullCompFreeSpaceThreshold(hullCompFreeSpaceThreshold)
104
- , FreshCompMaxInFlightWrites(freshCompMaxInFlightWrites)
105
- , HullCompMaxInFlightWrites(hullCompMaxInFlightWrites)
106
- , HullCompMaxInFlightReads(hullCompMaxInFlightReads)
107
104
, HullCompReadBatchEfficiencyThreshold(hullCompReadBatchEfficiencyThreshold)
108
105
, HullCompStorageRatioCalcPeriod(hullCompStorageRatioCalcPeriod)
109
106
, HullCompStorageRatioMaxCalcDuration(hullCompStorageRatioMaxCalcDuration)
0 commit comments