Home
last modified time | relevance | path

Searched refs:max_file_size (Results 1 – 3 of 3) sorted by relevance

/rocksdb-6.9/options/
Dcf_options.cc103 assert(level < (int)cf_options.max_file_size.size()); in MaxFileSizeForLevel()
104 return cf_options.max_file_size[level]; in MaxFileSizeForLevel()
107 assert(level - base_level < (int)cf_options.max_file_size.size()); in MaxFileSizeForLevel()
108 return cf_options.max_file_size[level - base_level]; in MaxFileSizeForLevel()
114 max_file_size.resize(num_levels); in RefreshDerivedOptions()
117 max_file_size[i] = ULLONG_MAX; in RefreshDerivedOptions()
119 max_file_size[i] = MultiplyCheckOverflow(max_file_size[i - 1], in RefreshDerivedOptions()
122 max_file_size[i] = target_file_size_base; in RefreshDerivedOptions()
Dcf_options.h260 std::vector<uint64_t> max_file_size; member
/rocksdb-6.9/utilities/persistent_cache/
Dpersistent_cache_test.cc110 const uint32_t max_file_size = static_cast<uint32_t>(12 * 1024 * 1024 * kStressFactor); in NewBlockCache() local
113 opt.cache_file_size = max_file_size; in NewBlockCache()
127 const uint32_t max_file_size = static_cast<uint32_t>(12 * 1024 * 1024 * kStressFactor); in NewTieredCache() local
130 opt.cache_file_size = max_file_size; in NewTieredCache()