1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-09-19 15:31:05 +02:00
seaweedfs/go/storage
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
..
compact_map.go follow golint suggestions 2015-03-10 00:20:34 -07:00
compact_map_perf_test.go
compact_map_test.go
compress.go
crc.go
file_id.go
needle.go
needle_map.go Add boltdb for volume needle map 2015-03-29 11:04:32 -07:00
needle_map_boltdb.go Add boltdb for volume needle map 2015-03-29 11:04:32 -07:00
needle_map_leveldb.go Add boltdb for volume needle map 2015-03-29 11:04:32 -07:00
needle_map_memory.go add leveldb support for needle map 2015-03-27 16:34:58 -07:00
needle_read_write.go follow golint suggestions 2015-03-10 00:20:34 -07:00
replica_placement.go
replica_placement_test.go
store.go Add boltdb for volume needle map 2015-03-29 11:04:32 -07:00
store_vacuum.go follow golint suggestions 2015-03-10 00:20:34 -07:00
volume.go Add boltdb for volume needle map 2015-03-29 11:04:32 -07:00
volume_id.go
volume_info.go
volume_super_block.go
volume_super_block_test.go
volume_ttl.go tweaking ui 2015-03-22 12:50:04 -07:00
volume_ttl_test.go
volume_vacuum.go Add boltdb for volume needle map 2015-03-29 11:04:32 -07:00
volume_version.go