Home
last modified time | relevance | path

Searched refs:max_allowed_space_ (Results 1 – 2 of 2) sorted by relevance

/rocksdb-6.9/file/
Dsst_file_manager_impl.cc34 max_allowed_space_(0), in SstFileManagerImpl()
133 max_allowed_space_ = max_allowed_space; in SetMaxAllowedSpaceUsage()
144 if (max_allowed_space_ <= 0) { in IsMaxAllowedSpaceReached()
147 return total_files_size_ >= max_allowed_space_; in IsMaxAllowedSpaceReached()
152 if (max_allowed_space_ <= 0) { in IsMaxAllowedSpaceReachedIncludingCompactions()
156 max_allowed_space_; in IsMaxAllowedSpaceReachedIncludingCompactions()
177 if (max_allowed_space_ != 0 && in EnoughRoomForCompaction()
178 (needed_headroom + total_files_size_ > max_allowed_space_)) { in EnoughRoomForCompaction()
275 free_space = max_allowed_space_ > 0 in ClearError()
276 ? std::min(max_allowed_space_, free_space) in ClearError()
Dsst_file_manager_impl.h170 uint64_t max_allowed_space_; variable