aboutsummaryrefslogtreecommitdiff
path: root/go/tools/read_index.go
diff options
context:
space:
mode:
Diffstat (limited to 'go/tools/read_index.go')
-rw-r--r--go/tools/read_index.go28
1 files changed, 0 insertions, 28 deletions
diff --git a/go/tools/read_index.go b/go/tools/read_index.go
deleted file mode 100644
index 1543f4482..000000000
--- a/go/tools/read_index.go
+++ /dev/null
@@ -1,28 +0,0 @@
-package main
-
-import (
- "flag"
- "fmt"
- "log"
- "os"
-
- "github.com/chrislusf/seaweedfs/go/storage"
-)
-
-var (
- indexFileName = flag.String("file", "", ".idx file to analyze")
-)
-
-func main() {
- flag.Parse()
- indexFile, err := os.OpenFile(*indexFileName, os.O_RDONLY, 0644)
- if err != nil {
- log.Fatalf("Create Volume Index [ERROR] %s\n", err)
- }
- defer indexFile.Close()
-
- storage.WalkIndexFile(indexFile, func(key uint64, offset, size uint32) error {
- fmt.Printf("key %d, offset %d, size %d, nextOffset %d\n", key, offset*8, size, offset*8+size)
- return nil
- })
-}