1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-09-14 04:50:36 +02:00

add memory usage report

This commit is contained in:
Chris Lu 2018-12-09 00:15:23 -08:00
parent ec5a305624
commit df4b9df142

View file

@ -1,38 +1,50 @@
package needle package needle
import ( import (
"fmt"
"log"
"runtime"
"testing" "testing"
"os" "os"
"log"
"github.com/chrislusf/seaweedfs/weed/util"
. "github.com/chrislusf/seaweedfs/weed/storage/types" . "github.com/chrislusf/seaweedfs/weed/storage/types"
"github.com/chrislusf/seaweedfs/weed/util"
) )
/* /*
To see the memory usage: To see the memory usage:
go test -run TestMemoryUsage
The TotalAlloc section shows the memory increase for each iteration.
go test -run TestMemoryUsage -memprofile=mem.out go test -run TestMemoryUsage -memprofile=mem.out
go tool pprof needle.test mem.out go tool pprof --alloc_space needle.test mem.out
*/ */
func TestMemoryUsage(t *testing.T) { func TestMemoryUsage(t *testing.T) {
indexFile, ie := os.OpenFile("../../../test/sample.idx", os.O_RDWR|os.O_RDONLY, 0644) var maps []*CompactMap
if ie != nil {
log.Fatalln(ie)
}
loadNewNeedleMap(indexFile)
indexFile.Close() for i := 0; i < 10; i++ {
indexFile, ie := os.OpenFile("../../../test/sample.idx", os.O_RDWR|os.O_RDONLY, 0644)
if ie != nil {
log.Fatalln(ie)
}
maps = append(maps, loadNewNeedleMap(indexFile))
indexFile.Close()
PrintMemUsage()
}
} }
func loadNewNeedleMap(file *os.File) { func loadNewNeedleMap(file *os.File) *CompactMap {
m := NewCompactMap() m := NewCompactMap()
bytes := make([]byte, NeedleEntrySize*1024) bytes := make([]byte, NeedleEntrySize)
count, e := file.Read(bytes) count, e := file.Read(bytes)
for count > 0 && e == nil { for count > 0 && e == nil {
for i := 0; i < count; i += NeedleEntrySize { for i := 0; i < count; i += NeedleEntrySize {
@ -43,44 +55,26 @@ func loadNewNeedleMap(file *os.File) {
if offset > 0 { if offset > 0 {
m.Set(NeedleId(key), offset, size) m.Set(NeedleId(key), offset, size)
} else { } else {
//delete(m, key) m.Delete(key)
} }
} }
count, e = file.Read(bytes) count, e = file.Read(bytes)
} }
m.report() return m
} }
// report memory usage func PrintMemUsage() {
func (cm *CompactMap) report() { var m runtime.MemStats
overFlowCount := 0; runtime.ReadMemStats(&m)
overwrittenByOverflow := 0; // For info on each, see: https://golang.org/pkg/runtime/#MemStats
entryCount := 0 fmt.Printf("Alloc = %v MiB", bToMb(m.Alloc))
compactSectionCount := 0 fmt.Printf("\tTotalAlloc = %v MiB", bToMb(m.TotalAlloc))
compactSectionEntryCount := 0 fmt.Printf("\tSys = %v MiB", bToMb(m.Sys))
for _, cs := range cm.list { fmt.Printf("\tNumGC = %v\n", m.NumGC)
compactSectionCount++ }
cs.RLock() func bToMb(b uint64) uint64 {
for range cs.overflow { return b / 1024 / 1024
overFlowCount++
entryCount++
}
for _, v := range cs.values {
compactSectionEntryCount++
if _, found := cs.overflow[v.Key]; !found {
entryCount++
} else {
overwrittenByOverflow++
}
}
cs.RUnlock()
}
println("overFlowCount", overFlowCount)
println("overwrittenByOverflow", overwrittenByOverflow)
println("entryCount", entryCount)
println("compactSectionCount", compactSectionCount)
println("compactSectionEntryCount", compactSectionEntryCount)
} }