作者: 韩晨旭 10225101440 李畅 10225102463
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

407 rindas
16 KiB

pirms 3 nedēļām
pirms 3 nedēļām
Release 1.18 Changes are: * Update version number to 1.18 * Replace the basic fprintf call with a call to fwrite in order to work around the apparent compiler optimization/rewrite failure that we are seeing with the new toolchain/iOS SDKs provided with Xcode6 and iOS8. * Fix ALL the header guards. * Createed a README.md with the LevelDB project description. * A new CONTRIBUTING file. * Don't implicitly convert uint64_t to size_t or int. Either preserve it as uint64_t, or explicitly cast. This fixes MSVC warnings about possible value truncation when compiling this code in Chromium. * Added a DumpFile() library function that encapsulates the guts of the "leveldbutil dump" command. This will allow clients to dump data to their log files instead of stdout. It will also allow clients to supply their own environment. * leveldb: Remove unused function 'ConsumeChar'. * leveldbutil: Remove unused member variables from WriteBatchItemPrinter. * OpenBSD, NetBSD and DragonflyBSD have _LITTLE_ENDIAN, so define PLATFORM_IS_LITTLE_ENDIAN like on FreeBSD. This fixes: * issue #143 * issue #198 * issue #249 * Switch from <cstdatomic> to <atomic>. The former never made it into the standard and doesn't exist in modern gcc versions at all. The later contains everything that leveldb was using from the former. This problem was noticed when porting to Portable Native Client where no memory barrier is defined. The fact that <cstdatomic> is missing normally goes unnoticed since memory barriers are defined for most architectures. * Make Hash() treat its input as unsigned. Before this change LevelDB files from platforms with different signedness of char were not compatible. This change fixes: issue #243 * Verify checksums of index/meta/filter blocks when paranoid_checks set. * Invoke all tools for iOS with xcrun. (This was causing problems with the new XCode 5.1.1 image on pulse.) * include <sys/stat.h> only once, and fix the following linter warning: "Found C system header after C++ system header" * When encountering a corrupted table file, return Status::Corruption instead of Status::InvalidArgument. * Support cygwin as build platform, patch is from https://code.google.com/p/leveldb/issues/detail?id=188 * Fix typo, merge patch from https://code.google.com/p/leveldb/issues/detail?id=159 * Fix typos and comments, and address the following two issues: * issue #166 * issue #241 * Add missing db synchronize after "fillseq" in the benchmark. * Removed unused variable in SeekRandom: value (issue #201)
pirms 10 gadiem
pirms 3 nedēļām
pirms 2 nedēļām
pirms 3 nedēļām
pirms 3 nedēļām
pirms 2 nedēļām
pirms 3 nedēļām
pirms 3 nedēļām
pirms 3 nedēļām
pirms 3 nedēļām
pirms 3 nedēļām
pirms 3 nedēļām
pirms 3 nedēļām
pirms 3 nedēļām
pirms 3 nedēļām
pirms 3 nedēļām
pirms 3 nedēļām
pirms 3 nedēļām
pirms 3 nedēļām
pirms 3 nedēļām
pirms 3 nedēļām
pirms 3 nedēļām
pirms 3 nedēļām
pirms 3 nedēļām
pirms 3 nedēļām
pirms 3 nedēļām
pirms 3 nedēļām
pirms 3 nedēļām
pirms 3 nedēļām
pirms 3 nedēļām
pirms 3 nedēļām
pirms 3 nedēļām
pirms 3 nedēļām
pirms 3 nedēļām
pirms 3 nedēļām
pirms 3 nedēļām
pirms 3 nedēļām
pirms 3 nedēļām
pirms 3 nedēļām
pirms 3 nedēļām
pirms 3 nedēļām
pirms 3 nedēļām
pirms 3 nedēļām
pirms 3 nedēļām
pirms 3 nedēļām
pirms 3 nedēļām
pirms 3 nedēļām
pirms 3 nedēļām
pirms 3 nedēļām
pirms 3 nedēļām
pirms 3 nedēļām
pirms 3 nedēļām
pirms 3 nedēļām
pirms 3 nedēļām
pirms 3 nedēļām
pirms 3 nedēļām
pirms 3 nedēļām
pirms 3 nedēļām
pirms 3 nedēļām
pirms 3 nedēļām
pirms 3 nedēļām
pirms 3 nedēļām
pirms 3 nedēļām
Release 1.18 Changes are: * Update version number to 1.18 * Replace the basic fprintf call with a call to fwrite in order to work around the apparent compiler optimization/rewrite failure that we are seeing with the new toolchain/iOS SDKs provided with Xcode6 and iOS8. * Fix ALL the header guards. * Createed a README.md with the LevelDB project description. * A new CONTRIBUTING file. * Don't implicitly convert uint64_t to size_t or int. Either preserve it as uint64_t, or explicitly cast. This fixes MSVC warnings about possible value truncation when compiling this code in Chromium. * Added a DumpFile() library function that encapsulates the guts of the "leveldbutil dump" command. This will allow clients to dump data to their log files instead of stdout. It will also allow clients to supply their own environment. * leveldb: Remove unused function 'ConsumeChar'. * leveldbutil: Remove unused member variables from WriteBatchItemPrinter. * OpenBSD, NetBSD and DragonflyBSD have _LITTLE_ENDIAN, so define PLATFORM_IS_LITTLE_ENDIAN like on FreeBSD. This fixes: * issue #143 * issue #198 * issue #249 * Switch from <cstdatomic> to <atomic>. The former never made it into the standard and doesn't exist in modern gcc versions at all. The later contains everything that leveldb was using from the former. This problem was noticed when porting to Portable Native Client where no memory barrier is defined. The fact that <cstdatomic> is missing normally goes unnoticed since memory barriers are defined for most architectures. * Make Hash() treat its input as unsigned. Before this change LevelDB files from platforms with different signedness of char were not compatible. This change fixes: issue #243 * Verify checksums of index/meta/filter blocks when paranoid_checks set. * Invoke all tools for iOS with xcrun. (This was causing problems with the new XCode 5.1.1 image on pulse.) * include <sys/stat.h> only once, and fix the following linter warning: "Found C system header after C++ system header" * When encountering a corrupted table file, return Status::Corruption instead of Status::InvalidArgument. * Support cygwin as build platform, patch is from https://code.google.com/p/leveldb/issues/detail?id=188 * Fix typo, merge patch from https://code.google.com/p/leveldb/issues/detail?id=159 * Fix typos and comments, and address the following two issues: * issue #166 * issue #241 * Add missing db synchronize after "fillseq" in the benchmark. * Removed unused variable in SeekRandom: value (issue #201)
pirms 10 gadiem
pirms 3 nedēļām
pirms 3 nedēļām
pirms 3 nedēļām
pirms 3 nedēļām
pirms 3 nedēļām
pirms 3 nedēļām
pirms 3 nedēļām
  1. # 在LevelDB中实现TTL功能
  2. ### 10225102463 李畅
  3. ### 10225101440 韩晨旭@ArcueidType
  4. # 实验要求
  5. + 在LevelDB中实现键值对的`TTL(Time-To-Live)`功能,使得过期的数据在**读取**时自动失效,并在适当的时候被**合并**清理。
  6. + 修改LevelDB的源码,实现对`TTL`的支持,包括数据的写入、读取和过期数据的清理。
  7. + 编写测试用例,验证`TTL`功能的正确性和稳定性。
  8. # 1. 设计思路和实现过程
  9. ## 1.1 设计思路
  10. ### Phase 0
  11. 在LevelDB中实现`TTL`功能主要涉及数据的**读、写、合并**。
  12. 在**写入**数据时,`TTL`功能是个可选项。从代码层面来说,LevelDB数据的写入调用了`Put`函数接口:
  13. ```
  14. // 假设增加一个新的Put接口,包含TTL参数, 单位(秒)
  15. Status DB::Put(const WriteOptions& opt, const Slice& key,
  16. const Slice& value, uint64_t ttl);
  17. // 如果调用的是原本的Put接口,那么就不会失效
  18. Status DB::Put(const WriteOptions& opt, const Slice& key,
  19. const Slice& value);
  20. ```
  21. 这段代码中,如果存入`TTL`参数,则调用本实验中新实现的`Put`函数接口;否则直接调用原有的`Put`接口。
  22. ### Phase 1
  23. 本小组的思路很简明:
  24. + 直接将`TTL`信息在**写入**阶段添加到原有的数据结构中
  25. + 在**读取**和**合并**时从得到的数据中 **解读** 出其存储的`TTL`信息,判断是否过期
  26. + 在手动合并中对最后有文件的层(max_level_with_files)进行扫描,清除其中的过期数据
  27. 因此,接下来需要思考的是如何将`TTL`信息巧妙地存入LevelDB的数据结构中。
  28. ### Phase 2
  29. 由于插入数据时调用的`Put`接口只有三个参数,其中`opt`是写入时的系统配置,实际插入的数据只有`key/value`,因此存储`ttl`信息时,最简单的方法就是存入`key`或`value`中。
  30. 在这样的方法中,可以调用原有的`Put`函数,将含义`ttl`信息的`key/value`数据存入数据库。
  31. 经过讨论后,本小组选择将`ttl`信息存入`value`中。
  32. 这样做的优缺点是:
  33. + **优点**:由于LevelDB在合并数据的过程中,需要根据`SSTable`的`key`对数据进行有序化处理,将`ttl`信息存储在`value`中不会影响`key`的信息,因此对已有的合并过程不产生影响
  34. + **缺点**:在获取到`SSTable`的`key`时,无法直接判断该文件是否因为`ttl`而成为过期数据,仍然需要读取对应的`value`才能判断,多了一步读取开销。***但是***,实际上在读取数据以及合并数据的过程中,其代码实际上都读取了对应`SSTable`中存储的`value`信息,因此获取`ttl`信息时必要的读取`value`过程并不是多余的,实际***几乎不***造成额外的读取开销影响
  35. ### Phase 3
  36. 在确定插入数据时选用的方法后,读取和合并的操作只需要在获取数据文件的`value`后解读其包含的`ttl`信息,并判断是否过期就可以了。
  37. ## 1.2 实现过程
  38. ### 1.2.1 写入 Put
  39. 首先需要实现的是将`ttl`信息存入`value`的方法。`Put`中获取的`ttl`参数是该数据文件的**生存时间(单位:秒)**。本小组对此进行处理方法是通过`ttl`计算过期时间的**时间戳**,转码为字符串类型后存入`value`的最前部,并用`|`符号与原来的值分隔开。
  40. 对于不使用`ttl`的数据文件,存入`0`作为`ttl`,在读取数据时若读到`0`则表示不使用`TTL`功能。
  41. 将此功能封装为**编码**和**解码**文件过期时间(DeadLine)的函数,存储在`/util/coding.h`文件中:
  42. ```c++
  43. inline std::string EncodeDeadLine(uint64_t ddl, const Slice& value) { // 存储ttl信息
  44. return std::to_string(ddl) + "|" + value.ToString();
  45. }
  46. inline void DecodeDeadLineValue(std::string* value, uint64_t& ddl) { // 解读ttl信息
  47. auto separator = value->find_first_of("|");
  48. std::string ddl_str = value->substr(0, separator);
  49. ddl = std::atoll(ddl_str.c_str());
  50. *value = value->substr(separator + 1);
  51. }
  52. ```
  53. 在写入数据调用`Put`接口时,分别启用`EncodeDeadLine`函数存储`ttl`信息:
  54. ```c++
  55. // Default implementations of convenience methods that subclasses of DB
  56. // can call if they wish
  57. // TTL: Update TTL Encode
  58. Status DB::Put(const WriteOptions& opt, const Slice& key, const Slice& value) { // 不使用TTL
  59. WriteBatch batch;
  60. batch.Put(key, EncodeDeadLine(0, value));
  61. return Write(opt, &batch);
  62. }
  63. // TTL: Put methods for ttl
  64. Status DB::Put(const WriteOptions& options, const Slice& key,
  65. const Slice& value, uint64_t ttl) { // 使用TTL
  66. WriteBatch batch;
  67. auto dead_line = std::time(nullptr) + ttl; // 计算过期时间的时间戳
  68. batch.Put(key, EncodeDeadLine(dead_line, value));
  69. return Write(options, &batch);
  70. }
  71. ```
  72. ### 1.2.2 读取 Get
  73. LevelDB在读取数据时,调用`Get`接口,获取文件的`key/value`,因此只需要在`Get`函数中加入使用`TTL`功能的相关代码:
  74. ```c++
  75. Status DBImpl::Get(const ReadOptions& options, const Slice& key,
  76. std::string* value) {
  77. (......)
  78. // Unlock while reading from files and memtables
  79. {
  80. mutex_.Unlock();
  81. // First look in the memtable, then in the immutable memtable (if any).
  82. LookupKey lkey(key, snapshot);
  83. if (mem->Get(lkey, value, &s)) {
  84. // Done
  85. } else if (imm != nullptr && imm->Get(lkey, value, &s)) {
  86. // Done
  87. } else {
  88. s = current->Get(options, lkey, value, &stats);
  89. have_stat_update = true;
  90. }
  91. // TTL: Get the true value and make sure the data is still living
  92. if(!value->empty()) {
  93. uint64_t dead_line;
  94. DecodeDeadLineValue(value, dead_line);
  95. if (dead_line != 0) {
  96. // use TTL
  97. if (std::time(nullptr) >= dead_line) {
  98. // data expired
  99. *value = "";
  100. s = Status::NotFound("Data expired");
  101. }
  102. } else {
  103. // TTL not set
  104. }
  105. }
  106. mutex_.Lock();
  107. }
  108. (......)
  109. }
  110. ```
  111. 若使用了`TTL`功能,则当文件过期时,返回`NotFound("Data expired")`的信息,即“数据已清除”。
  112. **注意**:由于LevelDB对于数据的读取是只读`ReadOnly`的,因此只能返回`NotFound`的信息,而无法真正清理过期数据。
  113. ### 1.2.3 合并 Compaction
  114. 在合并的过程中,需要做到清理掉过期的数据,释放空间。
  115. 在大合并的过程中,需要调用`DoCompactionWorks`函数实现合并的操作,也是在这个过程中,LevelDB得以真正完成清理旧版本数据、已删除数据并释放空间的过程。
  116. 其实现逻辑是在该函数的过程中引入一个布尔变量`drop`,对于需要清理的数据设置`drop`为`True`,而需要保留的数据则是`drop`为`False`,最后根据`drop`的值清理过期数据,并将需要保留的数据合并写入新的`SSTable`。
  117. 因此,我们只需要在判断`drop`为`True`的条件中加入对过期时间(DeadLine)的判断就可以实现`TTL`功能的清理过期数据了:
  118. ```c++
  119. Status DBImpl::DoCompactionWork(CompactionState* compact) {
  120. (......)
  121. while (input->Valid() && !shutting_down_.load(std::memory_order_acquire)) {
  122. (......)
  123. // Handle key/value, add to state, etc.
  124. bool drop = false;
  125. if (!ParseInternalKey(key, &ikey)) {
  126. // Do not hide error keys
  127. current_user_key.clear();
  128. has_current_user_key = false;
  129. last_sequence_for_key = kMaxSequenceNumber;
  130. } else {
  131. if (!has_current_user_key ||
  132. user_comparator()->Compare(ikey.user_key, Slice(current_user_key)) !=
  133. 0) {
  134. // First occurrence of this user key
  135. current_user_key.assign(ikey.user_key.data(), ikey.user_key.size());
  136. has_current_user_key = true;
  137. last_sequence_for_key = kMaxSequenceNumber;
  138. }
  139. std::string value = input->value().ToString();
  140. uint64_t ddl;
  141. DecodeDeadLineValue(&value, ddl);
  142. if (last_sequence_for_key <= compact->smallest_snapshot) {
  143. (......)
  144. } else if (ddl <= std::time(nullptr)) { // 根据ttl判断是否为过期数据
  145. // TTL: data expired
  146. drop = true;
  147. }
  148. last_sequence_for_key = ikey.sequence;
  149. }
  150. (......)
  151. input->Next();
  152. }
  153. (......)
  154. }
  155. ```
  156. 理论上,`Compaction`已经实现了合并中清除过期数据的功能,但由于原本leveldb是按照没有TTL功能的逻辑设计的,因此其对数据的清除并不完全,也会造成测试不通过。
  157. LevelDB中`Compaction`的逻辑是选中特定层(`level`)合并,假设为`level n`。在`level n`中找目标文件`SSTable A`(假设该次触发的合并从文件A开始),并确定`level n`以及`level n+1`中与`SSTable A`包含的数据(`key/value`)有`key`发生重复(`overlap`)的所有文件,合并后产生新的`SSTable B`放入`level n+1`层中。
  158. 然而由`DoCompactionWorks`代码可知,不参与合并的文件即使过期了也无法被清理。
  159. 例如,`level n+1`层中有含有过期数据的`SSTable C`,但由于`level n+1`是最后一个含有文件的层,即使是`CompactRange(nullptr, nullptr)`,对所有数据合并,其只将`level n`的所有文件与`level n+1`中与上层有重叠的文件合并,因此`SSTable C`不会被清理。
  160. `CompactRange(nullptr, nullptr)`应该能够合并所有数据,也就是可以清除所有过期数据,而无法被清理的`SSTable C`明显是个例外,是个错误。
  161. 从代码层面看导致该错误的原因。原来的代码:
  162. ```c++
  163. void DBImpl::CompactRange(const Slice* begin, const Slice* end) {
  164. int max_level_with_files = 1;
  165. {
  166. MutexLock l(&mutex_);
  167. Version* base = versions_->current();
  168. for (int level = 1; level < config::kNumLevels; level++) {
  169. if (base->OverlapInLevel(level, begin, end)) {
  170. max_level_with_files = level;
  171. }
  172. }
  173. }
  174. TEST_CompactMemTable(); // TODO(sanjay): Skip if memtable does not overlap
  175. for (int level = 0; level < max_level_with_files; level++) {
  176. TEST_CompactRange(level, begin, end);
  177. }
  178. }
  179. void DBImpl::TEST_CompactRange(int level, const Slice* begin,
  180. const Slice* end) {
  181. assert(level >= 0);
  182. assert(level + 1 < config::kNumLevels);
  183. (......)
  184. }
  185. ```
  186. 这里注意两个数:`config::kNumLevels`和`max_level_with_files`:
  187. + config::kNumLevels:是LevelDB在启动时设定的数,表示总共使用的`level`层数。默认值为7
  188. + max_level_with_files:表示含有`SSTable`文件的最高层的编号。注意,这里的`level`编号是从0开始的,因此`max_level_with_files`理论最大值是`config::kNumLevels - 1`
  189. 可以看出与上述例子相符,对最后有文件的那一层不会进行全范围的合并,因此产生漏网之鱼,而最直接想到的解决办法就是让手动合并时也对这最后一层做一次全范围的合并,就可以清除所有的过期数据。
  190. 这样只需要让循环多走一层:
  191. ```c++
  192. for (int level = 0; level < max_level_with_files + 1; level++) {
  193. TEST_CompactRange(level, begin, end);
  194. }
  195. ```
  196. 但是这种方法仍然存在两个问题:
  197. 1. 最后有文件的一层(max_level_with_files)可能并没有达到合并的条件,也就是说其不应该被合并到下一层中,这也同样符合leveldb原本的逻辑,但是这样的做法会导致其合并至下一层。
  198. 2. 当存储数据已经堆积到整个leveldb的最底层时(即已达到`kNumLevels`),按照上述代码执行会导致致命错误并使数据库崩溃。
  199. 防止最底层的数据被合并的函数调用是唯一的解决办法,但是这个做法又回到了上一个问题,最底层的过期数据可能始终无法被完全清除。
  200. ### 1.2.4 合并的最终解决方案
  201. 为了完全解决这个问题并让`CompactRange`正常工作,我们提出了一个新的方案:
  202. 对于最后有文件的一层(即max_level_with_files),我们进行单独的处理,去除掉其中的过期数据,但不将其推向下一层。
  203. 实现上,去除一层(e.g. level n)中的过期数据,实际上等价于将`level n`与一个空的层合并,再将合并的结果输出回`level n`。
  204. 因此,我们可以直接利用leveldb中被我们修改过的合并功能(合并中drop过期数据)来实现清除一层中的过期数据。
  205. > CompactRange函数用于手动合并,对于leveldb的自动合并,我们并不需要强迫其清除其触碰不到的数据,因此只需要修改手动合并的部分
  206. 在实现上,引入参数`is_last_level`表示当前是否在处理`max_level_with_files`,如果是则按照上述逻辑清除该层过期数据,反之按照原本的合并正常进行
  207. 在结构体`ManualCompaction`和类`Compaction`中引入新的成员`is_max_level`:
  208. ```c++
  209. struct ManualCompaction {
  210. int level;
  211. bool is_last_level; // TTL: Used to check if last level with files
  212. bool done;
  213. const InternalKey* begin; // null means beginning of key range
  214. const InternalKey* end; // null means end of key range
  215. InternalKey tmp_storage; // Used to keep track of compaction progress
  216. };
  217. class Compaction {
  218. public:
  219. (...)
  220. bool is_last_level() const {return is_last_level_; }
  221. (...)
  222. private:
  223. (...)
  224. bool is_last_level_;
  225. (...)
  226. }
  227. ```
  228. 给方法`TEST_CompactRange`和`VersionSet::CompactRange`增加一个参数`is_last_level`,用来传递构造结构体`ManualCompaction`和类`Compaction`的相应值。
  229. 在`CompactRange`的上述循环中调用`TEST_CompactRange`时,会将`is_last_level`传给该方法
  230. ```c++
  231. for (int level = 0; level < max_level_with_files + 1; level++) {
  232. TEST_CompactRange(level, begin, end, level == max_level_with_files);
  233. }
  234. ```
  235. 在清除当前层过期数据的操作中,compaction中的inputs[1]应该为空,因此在`VersionSet::SetupOtherInputs`方法中,跳过对inputs[1]的填写:
  236. ```c++
  237. if (!c->is_last_level()) {
  238. current_->GetOverlappingInputs(level + 1, &smallest, &largest,
  239. &c->inputs_[1]);
  240. AddBoundaryInputs(icmp_, current_->files_[level + 1], &c->inputs_[1]);
  241. }
  242. ```
  243. 接下来我们要做的是让合并的结果输出到当前层`level`而不是`level+1`
  244. 需要修改两处:
  245. 1. DBImpl::DoCompactionWork中,stats_应该add在当前level上
  246. 2. DBImpl::InstallCompactionResults中,将结果写入当前level中
  247. 代码:
  248. ```c++
  249. Status DBImpl::DoCompactionWork(CompactionState* compact) {
  250. (...)
  251. if (!compact->compaction->is_last_level()) {
  252. stats_[compact->compaction->level() + 1].Add(stats);
  253. } else {
  254. // TTL: compaction for last level
  255. stats_[compact->compaction->level()].Add(stats);
  256. }
  257. (...)
  258. }
  259. Status DBImpl::InstallCompactionResults(CompactionState* compact) {
  260. (...)
  261. if (!compact->compaction->is_last_level()) {
  262. compact->compaction->edit()->AddFile(level + 1, out.number, out.file_size,
  263. out.smallest, out.largest);
  264. } else {
  265. // TTL: outputs of last level compaction should be writen to last level itself
  266. compact->compaction->edit()->AddFile(level, out.number, out.file_size,
  267. out.smallest, out.largest);
  268. }
  269. (...)
  270. }
  271. ```
  272. 通过以上修改后即解决了`CompactRange`的问题,使其能够正常工作
  273. ## 2. 测试用例和测试结果
  274. ### TestTTL.ReadTTL
  275. `TestTTL`中第一个测试样例,检测插入和读取数据时,读取过期数据能够正确返回`NotFound`。
  276. ![ReadTTL](img/test1_succ.png)
  277. ### TestTTL.CompactionTTL
  278. `TestTTL`中第二个测试样例,检测插入和合并数据,能够在手动触发所有数据的合并时清除所有过期数据。
  279. ![CompactionTTL](img/test2_succ.png)
  280. ### TestTTL.LastLevelCompaction
  281. 在解决了上面遇到的问题之后,本小组添加了一个测试样例,用来检测在含义`SSTable`的最底层能否正确合并、清理过期数据。
  282. 在该样例中将`kNumLevels`设置为`3`可以保证(同时Assert确认正确性)最后一层中存在数据,我们的实现仍然可以通过测试:
  283. > main分支中为原始配置,即kNumLevels = 7, 其层数过大,导致要测试最底层含有数据非常耗时,因此我们在其他分支中提供了kNumLevels = 3配置的实现用于测试
  284. `light_ver`分支:正确的合并实现,能通过测试
  285. ![LastLevelCompaction](img/test3_succ.png)
  286. 而采用上述直接添加一层循环并且跳过最底层避免崩溃的方法则无法通过测试:
  287. `naive_version`分支:简单增加一层循环并跳过最底层合并,无法清除最底层过期数据,因此无法通过测试
  288. ![LastLevelCompactionFail](img/test3_failure.png)
  289. 最后,展示三个测试样例一起运行的结果:
  290. ![All_pass](img/all_pass.jpg)