首页 > 代码库 > leveldb Arena
leveldb Arena
背景
我们都知道,对于一个高性能的服务器端程序来说,内存的使用非常重要。C++提供了new/delete来管理内存的申请和释放,但是对于小对象来说,直接使用new/delete代价比较大,要付出额外的空间和时间,性价比不高。
另外,我们也要避免多次的申请和释放引起的内存碎片。一旦碎片到达一定程度,即使剩余内存总量够用,但由于缺乏足够的连续空闲空间,导致内存不够用的假象。
c++ STL为了避免内存碎片,实现一个复杂的内存池,leveldb中则没有那么复杂,只是实现了一个"一次性"内存池Arena。
在leveldb里面,并不是所有的地方都使用了这个内存池,主要是memtable使用,主要是用于临时存放用户的更新数据,由于更新的数据可能很小,所以这里使用内存池就很合适。
原理
为了避免小对象的频繁分配,需要减少对new的调用,最简单的做法就是申请大块的内存,多次分给客户。
leveldb用一个vector<char *>来保存所有的内存分配记录,默认每次申请4k的内存,记录下剩余指针和剩余内存字节数,每当有新的申请,如果当前剩余的字节能满足需要,则直接返回给用户,如果不能,对于超过1k的请求,直接new返回,小于1K的请求,则申请一个新的4k块,从中分配一部分给用户。
但是这样的一个问题就是当前块剩余的部分就浪费了,改进的方法,针对每个block都记录剩余字节,这样就需要遍历来查找合适的block,要付出一些性能的代价。google的做法是浪费就浪费吧:-)
至于释放,需要释放整个内存池来释放所占内存,这个和leveldb的需求有关,memtable不需要释放单次内存,flush到硬盘后整个memtable销毁。
Arena.h
//z 2014-06-05 10:48:50 L.209‘47470 BG57IV3 T1840949363.K.F1370514324[T6,L108,R4,V118]
- // Copyright (c) 2011 The LevelDB Authors. All rights reserved.
- // Use of this source code is governed by a BSD-style license that can be
- // found in the LICENSE file. See the AUTHORS file for names of contributors.
- #ifndef STORAGE_LEVELDB_UTIL_ARENA_H_
- #define STORAGE_LEVELDB_UTIL_ARENA_H_
- #include <cstddef>
- #include <vector>
- #include <assert.h>
- #include <stdint.h>
- namespace leveldb
- {
- /*//z
- 思路:
- 先在上一次分配的内存块中查找是否剩余空间能否容纳当前申请的空间;如果足以容纳,直接使用剩余空间
- 否则视其大小重新分配一块空间:如果大于1024,直接分配一块新空间,大小与申请空间大小同
- 如果小于1024,说明上一块空间剩余空间小于1024,那么重新分配一块4096大小的空间,使用该空间来存放待申请的空间
- */
- class Arena
- {
- public:
- Arena();
- ~Arena();
- // Return a pointer to a newly allocated memory block of "bytes" bytes.
- char* Allocate(size_t bytes);
- // Allocate memory with the normal alignment guarantees provided by malloc
- char* AllocateAligned(size_t bytes);
- // Returns an estimate of the total memory usage of data allocated
- // by the arena (including space allocated but not yet used for user
- // allocations).
- size_t MemoryUsage() const
- {
- return blocks_memory_ + blocks_.capacity() * sizeof(char*);
- }
- private:
- char* AllocateFallback(size_t bytes);
- char* AllocateNewBlock(size_t block_bytes);
- // Allocation state
- char* alloc_ptr_;
- size_t alloc_bytes_remaining_;
- // Array of new[] allocated memory blocks
- std::vector<char*> blocks_;
- // Bytes of memory in blocks allocated so far
- size_t blocks_memory_;
- // No copying allowed
- Arena(const Arena&);
- void operator=(const Arena&);
- };
- inline char* Arena::Allocate(size_t bytes)
- {
- // The semantics of what to return are a bit messy if we allow
- // 0-byte allocations, so we disallow them here (we don‘t need
- // them for our internal use).
- assert(bytes > 0);
- //z 在一块直接分配好的内存上移动一下指针即可;事实上可能会存在很多的浪费。
- if (bytes <= alloc_bytes_remaining_)
- {
- char* result = alloc_ptr_;
- alloc_ptr_ += bytes;
- alloc_bytes_remaining_ -= bytes;
- return result;
- }
- //z 如果剩余控件不足与容纳,那么根据bytes大小决定是否重新分配一块标准大小的内存(4096),或者要是bytes大于1024,直接
- //z 分配其大小的内存,原标准块内存仍旧有用。
- //z 如果小于 1024 ,说明原标准块剩余内存不足以容纳1024,新分配一块标准块内存,用此来为bytes分配对应内存。
- return AllocateFallback(bytes);
- }
- }
- #endif // STORAGE_LEVELDB_UTIL_ARENA_H_
//z 2014-06-05 10:48:50 L.209‘47470 BG57IV3 T1840949363.K.F1370514324[T6,L108,R4,V118]
arena.cc
- // Copyright (c) 2011 The LevelDB Authors. All rights reserved.
- // Use of this source code is governed by a BSD-style license that can be
- // found in the LICENSE file. See the AUTHORS file for names of contributors.
- #include "util/arena.h"
- #include <assert.h>
- namespace leveldb {
- //z 常量变量名k开头
- static const int kBlockSize = 4096;
- //z 初始化
- Arena::Arena() {
- blocks_memory_ = 0;
- alloc_ptr_ = NULL; // First allocation will allocate a block
- alloc_bytes_remaining_ = 0;
- }
- Arena::~Arena() {
- //z 删除申请的内存
- for (size_t i = 0; i < blocks_.size(); i++) {
- delete[] blocks_[i];
- }
- }
- char* Arena::AllocateFallback(size_t bytes) {
- //z 如果申请的bytes > 1024
- if (bytes > kBlockSize / 4) {
- // Object is more than a quarter of our block size. Allocate it separately
- // to avoid wasting too much space in leftover bytes.
- char* result = AllocateNewBlock(bytes);
- return result;
- }
- // We waste the remaining space in the current block.
- //z 不大于1024时,分配一块标准大小的内存
- alloc_ptr_ = AllocateNewBlock(kBlockSize);
- alloc_bytes_remaining_ = kBlockSize;
- //z 指定返回的位置
- char* result = alloc_ptr_;
- //z 移动指针位置至空闲内存开始的地方
- alloc_ptr_ += bytes;
- //z 记录还剩下多少内存
- alloc_bytes_remaining_ -= bytes;
- return result;
- }
- char* Arena::AllocateAligned(size_t bytes) {
- //z 这个值是固定的,不用每次都求一次?但是代价非常小,求一次也无所为?
- const int align = sizeof(void*); // We‘ll align to pointer size
- assert((align & (align-1)) == 0); // Pointer size should be a power of 2
- //z 求的其余数
- size_t current_mod = reinterpret_cast<uintptr_t>(alloc_ptr_) & (align-1);
- size_t slop = (current_mod == 0 ? 0 : align - current_mod);
- size_t needed = bytes + slop;
- char* result;
- //z 如果剩余的空间足以容纳所需要的内存
- if (needed <= alloc_bytes_remaining_) {
- //z 对齐返回地址
- result = alloc_ptr_ + slop;
- alloc_ptr_ += needed;
- alloc_bytes_remaining_ -= needed;
- } else {
- // AllocateFallback always returned aligned memory
- //z 否则直接分配一块新的内存
- //z 在这种情况下这块内存可能很小
- result = AllocateFallback(bytes);
- }
- //z 确保返回地址是对齐的
- assert((reinterpret_cast<uintptr_t>(result) & (align-1)) == 0);
- return result;
- }
- //z 在不小于一个page的时候,直接采用这种方式
- char* Arena::AllocateNewBlock(size_t block_bytes) {
- char* result = new char[block_bytes];
- blocks_memory_ += block_bytes;
- blocks_.push_back(result);
- return result;
- }
- }
//z 2014-06-05 10:48:50 L.209‘47470 BG57IV3 T1840949363.K.F1370514324[T6,L108,R4,V118]