1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-09-18 15:00:53 +02:00
seaweedfs/go
chrislusf 1b6ab2f6af Add boltdb for volume needle map
boltdb is fairly slow to write, about 6 minutes for recreating index
for 1553934 files. Boltdb loads 1,553,934 x 16 = 24,862,944bytes from
disk, and generate the boltdb as large as 134,217,728 bytes in 6
minutes.

To compare, for leveldb, it recreates index in leveldb as large as
27,188,148 bytes in 8 seconds.
For in memory version, it loads the index in

To test the memory consumption, the leveldb or boltdb index are
created. And the server is restarted. Using the benchmark tool to read
lots of files. There are 7 volumes in benchmark collection, each with
about 1553K files.
For leveldb, the memory starts at 142,884KB, and stays at 179,340KB.
For boltdb, the memory starts at 73,756KB, and stays at 144,564KB.
For in-memory, the memory starts at 368,152KB, and stays at 448,032KB.
2015-03-29 11:04:32 -07:00
..
filer follow golint suggestions 2015-03-10 00:20:34 -07:00
glog formatting code by: goimports -w=true . 2014-10-26 11:34:55 -07:00
images formatting code by: goimports -w=true . 2014-10-26 11:34:55 -07:00
operation Add better error message. 2015-03-19 10:48:28 -07:00
proto Add optional admin port to volume server, to seperate admin operations from normal file operations. 2015-01-18 17:03:38 -08:00
security merge conflicts 2015-02-07 15:35:28 -08:00
sequence formatting code by: goimports -w=true . 2014-10-26 11:34:55 -07:00
stats tweaking ui 2015-03-22 12:50:04 -07:00
storage Add boltdb for volume needle map 2015-03-29 11:04:32 -07:00
tools switch it back to chris's repo 2014-12-14 00:35:26 -08:00
topology follow golint suggestions 2015-03-10 00:20:34 -07:00
util add leveldb support for needle map 2015-03-27 16:34:58 -07:00
weed Add boltdb for volume needle map 2015-03-29 11:04:32 -07:00