2016-06-03 01:09:14 +00:00
package command
2013-01-21 03:44:23 +00:00
import (
"archive/tar"
2013-01-22 23:07:19 +00:00
"bytes"
2014-10-26 18:25:02 +00:00
"fmt"
2013-01-21 03:44:23 +00:00
"os"
"path"
2015-07-09 06:19:54 +00:00
"path/filepath"
2013-01-21 03:44:23 +00:00
"strconv"
"strings"
2013-01-22 23:07:19 +00:00
"text/template"
2013-01-21 03:44:23 +00:00
"time"
2014-10-26 18:34:55 +00:00
2016-06-03 01:09:14 +00:00
"github.com/chrislusf/seaweedfs/weed/glog"
"github.com/chrislusf/seaweedfs/weed/storage"
2018-07-08 09:28:04 +00:00
"github.com/chrislusf/seaweedfs/weed/storage/types"
2018-07-15 03:51:17 +00:00
"io"
2013-01-21 03:44:23 +00:00
)
2013-01-22 23:07:19 +00:00
const (
defaultFnFormat = ` {{ .Mime }} / {{ .Id }} : {{ .Name }} `
2015-05-26 06:53:45 +00:00
timeFormat = "2006-01-02T15:04:05"
2013-01-22 23:07:19 +00:00
)
2015-06-02 02:25:01 +00:00
var (
export ExportOptions
)
type ExportOptions struct {
dir * string
collection * string
volumeId * int
}
2013-01-21 03:44:23 +00:00
var cmdExport = & Command {
2015-05-26 06:53:45 +00:00
UsageLine : "export -dir=/tmp -volumeId=234 -o=/dir/name.tar -fileNameFormat={{.Name}} -newer='" + timeFormat + "'" ,
2013-01-21 03:51:27 +00:00
Short : "list or export files from one volume data file" ,
Long : ` List all files in a volume , or Export all files in a volume to a tar file if the output is specified .
2014-08-25 18:37:00 +00:00
2013-03-19 04:29:25 +00:00
The format of file name in the tar file can be customized . Default is { { . Mime } } / { { . Id } } : { { . Name } } . Also available is { { . Key } } .
2013-01-21 03:44:23 +00:00
` ,
}
2015-06-02 02:25:01 +00:00
func init ( ) {
cmdExport . Run = runExport // break init cycle
export . dir = cmdExport . Flag . String ( "dir" , "." , "input data directory to store volume data files" )
export . collection = cmdExport . Flag . String ( "collection" , "" , "the volume collection name" )
export . volumeId = cmdExport . Flag . Int ( "volumeId" , - 1 , "a volume id. The volume .dat and .idx files should already exist in the dir." )
}
2013-01-21 03:44:23 +00:00
var (
2018-07-15 03:51:17 +00:00
output = cmdExport . Flag . String ( "o" , "" , "output tar file name, must ends with .tar, or just a \"-\" for stdout" )
format = cmdExport . Flag . String ( "fileNameFormat" , defaultFnFormat , "filename formatted with {{.Mime}} {{.Id}} {{.Name}} {{.Ext}}" )
newer = cmdExport . Flag . String ( "newer" , "" , "export only files newer than this time, default is all files. Must be specified in RFC3339 without timezone, e.g. 2006-01-02T15:04:05" )
showDeleted = cmdExport . Flag . Bool ( "deleted" , false , "export deleted files. only applies if -o is not specified" )
limit = cmdExport . Flag . Int ( "limit" , 0 , "only show first n entries if specified" )
2015-06-02 07:23:41 +00:00
2015-06-02 07:33:13 +00:00
tarOutputFile * tar . Writer
tarHeader tar . Header
fileNameTemplate * template . Template
fileNameTemplateBuffer = bytes . NewBuffer ( nil )
newerThan time . Time
newerThanUnix int64 = - 1
localLocation , _ = time . LoadLocation ( "Local" )
2013-01-21 03:44:23 +00:00
)
2018-07-15 03:51:17 +00:00
func printNeedle ( vid storage . VolumeId , n * storage . Needle , version storage . Version , deleted bool ) {
key := storage . NewFileIdFromNeedle ( vid , n ) . String ( )
size := n . DataSize
if version == storage . Version1 {
size = n . Size
}
fmt . Printf ( "%s\t%s\t%d\t%t\t%s\t%s\t%s\t%t\n" ,
key ,
n . Name ,
size ,
n . IsGzipped ( ) ,
n . Mime ,
n . LastModifiedString ( ) ,
n . Ttl . String ( ) ,
deleted ,
)
}
2013-01-21 03:44:23 +00:00
func runExport ( cmd * Command , args [ ] string ) bool {
2015-05-20 12:11:12 +00:00
var err error
if * newer != "" {
if newerThan , err = time . ParseInLocation ( timeFormat , * newer , localLocation ) ; err != nil {
fmt . Println ( "cannot parse 'newer' argument: " + err . Error ( ) )
return false
}
newerThanUnix = newerThan . Unix ( )
}
2015-06-02 07:23:41 +00:00
if * export . volumeId == - 1 {
2013-01-21 03:44:23 +00:00
return false
}
2015-06-02 07:33:13 +00:00
if * output != "" {
if * output != "-" && ! strings . HasSuffix ( * output , ".tar" ) {
fmt . Println ( "the output file" , * output , "should be '-' or end with .tar" )
2013-01-22 01:50:10 +00:00
return false
}
2013-01-22 23:07:19 +00:00
2015-06-02 07:33:13 +00:00
if fileNameTemplate , err = template . New ( "name" ) . Parse ( * format ) ; err != nil {
2013-01-22 23:07:19 +00:00
fmt . Println ( "cannot parse format " + * format + ": " + err . Error ( ) )
return false
}
2015-06-02 07:33:13 +00:00
var outputFile * os . File
if * output == "-" {
outputFile = os . Stdout
2013-01-21 03:44:23 +00:00
} else {
2015-06-02 07:33:13 +00:00
if outputFile , err = os . Create ( * output ) ; err != nil {
glog . Fatalf ( "cannot open output tar %s: %s" , * output , err )
2013-01-21 03:44:23 +00:00
}
}
2015-06-02 07:33:13 +00:00
defer outputFile . Close ( )
tarOutputFile = tar . NewWriter ( outputFile )
defer tarOutputFile . Close ( )
2013-01-21 03:44:23 +00:00
t := time . Now ( )
tarHeader = tar . Header { Mode : 0644 ,
ModTime : t , Uid : os . Getuid ( ) , Gid : os . Getgid ( ) ,
2018-07-22 00:39:10 +00:00
Typeflag : tar . TypeReg ,
2013-01-21 03:44:23 +00:00
AccessTime : t , ChangeTime : t }
}
2015-06-02 07:23:41 +00:00
fileName := strconv . Itoa ( * export . volumeId )
if * export . collection != "" {
fileName = * export . collection + "_" + fileName
2014-01-22 04:51:07 +00:00
}
2015-06-02 07:23:41 +00:00
vid := storage . VolumeId ( * export . volumeId )
indexFile , err := os . OpenFile ( path . Join ( * export . dir , fileName + ".idx" ) , os . O_RDONLY , 0644 )
2013-01-21 03:44:23 +00:00
if err != nil {
2013-08-09 06:57:22 +00:00
glog . Fatalf ( "Create Volume Index [ERROR] %s\n" , err )
2013-01-21 03:44:23 +00:00
}
defer indexFile . Close ( )
2017-05-27 05:51:25 +00:00
needleMap , err := storage . LoadBtreeNeedleMap ( indexFile )
2013-02-10 21:41:25 +00:00
if err != nil {
2014-04-17 07:16:44 +00:00
glog . Fatalf ( "cannot load needle map from %s: %s" , indexFile . Name ( ) , err )
2013-02-10 21:41:25 +00:00
}
2013-01-21 03:44:23 +00:00
2013-01-22 01:50:10 +00:00
var version storage . Version
2018-07-15 03:51:17 +00:00
if tarOutputFile == nil {
fmt . Printf ( "key\tname\tsize\tgzip\tmime\tmodified\tttl\tdeleted\n" )
}
var counter = 0
2015-06-02 07:23:41 +00:00
err = storage . ScanVolumeFile ( * export . dir , * export . collection , vid ,
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 18:04:32 +00:00
storage . NeedleMapInMemory ,
func ( superBlock storage . SuperBlock ) error {
version = superBlock . Version ( )
return nil
} , true , func ( n * storage . Needle , offset int64 ) error {
2015-06-02 07:33:13 +00:00
nv , ok := needleMap . Get ( n . Id )
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 18:04:32 +00:00
glog . V ( 3 ) . Infof ( "key %d offset %d size %d disk_size %d gzip %v ok %v nv %+v" ,
2018-07-24 08:36:04 +00:00
n . Id , offset , n . Size , n . DiskSize ( version ) , n . IsGzipped ( ) , ok , nv )
2018-07-15 03:51:17 +00:00
if ok && nv . Size > 0 && int64 ( nv . Offset ) * types . NeedlePaddingSize == offset {
2015-05-20 12:11:12 +00:00
if newerThanUnix >= 0 && n . HasLastModifiedDate ( ) && n . LastModified < uint64 ( newerThanUnix ) {
glog . V ( 3 ) . Infof ( "Skipping this file, as it's old enough: LastModified %d vs %d" ,
n . LastModified , newerThanUnix )
return nil
}
2018-07-15 03:51:17 +00:00
counter ++
if * limit > 0 && counter > * limit {
return io . EOF
}
if tarOutputFile != nil {
return writeFile ( vid , n )
} else {
printNeedle ( vid , n , version , false )
return nil
}
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 18:04:32 +00:00
}
if ! ok {
2018-07-15 03:51:17 +00:00
if * showDeleted && tarOutputFile == nil {
if n . DataSize > 0 {
printNeedle ( vid , n , version , true )
} else {
n . Name = [ ] byte ( "*tombstone" )
printNeedle ( vid , n , version , true )
}
}
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 18:04:32 +00:00
glog . V ( 2 ) . Infof ( "This seems deleted %d size %d" , n . Id , n . Size )
} else {
glog . V ( 2 ) . Infof ( "Skipping later-updated Id %d size %d" , n . Id , n . Size )
}
return nil
} )
2018-07-15 03:51:17 +00:00
if err != nil && err != io . EOF {
2013-08-09 06:57:22 +00:00
glog . Fatalf ( "Export Volume File [ERROR] %s\n" , err )
2013-01-21 03:44:23 +00:00
}
return true
}
2013-01-22 23:07:19 +00:00
type nameParams struct {
Name string
2018-07-08 09:28:04 +00:00
Id types . NeedleId
2013-01-22 23:07:19 +00:00
Mime string
Key string
2015-07-09 06:19:54 +00:00
Ext string
2013-01-22 23:07:19 +00:00
}
2018-07-15 03:51:17 +00:00
func writeFile ( vid storage . VolumeId , n * storage . Needle ) ( err error ) {
2014-03-24 04:57:10 +00:00
key := storage . NewFileIdFromNeedle ( vid , n ) . String ( )
2018-07-15 03:51:17 +00:00
fileNameTemplateBuffer . Reset ( )
if err = fileNameTemplate . Execute ( fileNameTemplateBuffer ,
nameParams {
Name : string ( n . Name ) ,
Id : n . Id ,
Mime : string ( n . Mime ) ,
Key : key ,
Ext : filepath . Ext ( string ( n . Name ) ) ,
} ,
) ; err != nil {
return err
}
2013-01-22 23:07:19 +00:00
2018-07-15 03:51:17 +00:00
fileName := fileNameTemplateBuffer . String ( )
2015-06-02 07:33:13 +00:00
2018-07-15 03:51:17 +00:00
if n . IsGzipped ( ) && path . Ext ( fileName ) != ".gz" {
fileName = fileName + ".gz"
}
2013-01-22 23:07:19 +00:00
2018-07-15 03:51:17 +00:00
tarHeader . Name , tarHeader . Size = fileName , int64 ( len ( n . Data ) )
if n . HasLastModifiedDate ( ) {
tarHeader . ModTime = time . Unix ( int64 ( n . LastModified ) , 0 )
2013-01-21 03:44:23 +00:00
} else {
2018-07-15 03:51:17 +00:00
tarHeader . ModTime = time . Unix ( 0 , 0 )
}
tarHeader . ChangeTime = tarHeader . ModTime
if err = tarOutputFile . WriteHeader ( & tarHeader ) ; err != nil {
return err
2013-01-21 03:44:23 +00:00
}
2018-07-15 03:51:17 +00:00
_ , err = tarOutputFile . Write ( n . Data )
2013-01-21 03:44:23 +00:00
return
}