filer_copy.go 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588
  1. package command
  2. import (
  3. "context"
  4. "fmt"
  5. "io"
  6. "net/http"
  7. "os"
  8. "path/filepath"
  9. "strconv"
  10. "strings"
  11. "sync"
  12. "time"
  13. "google.golang.org/grpc"
  14. "github.com/seaweedfs/seaweedfs/weed/filer"
  15. "github.com/seaweedfs/seaweedfs/weed/operation"
  16. "github.com/seaweedfs/seaweedfs/weed/pb"
  17. "github.com/seaweedfs/seaweedfs/weed/pb/filer_pb"
  18. "github.com/seaweedfs/seaweedfs/weed/security"
  19. "github.com/seaweedfs/seaweedfs/weed/storage/needle"
  20. "github.com/seaweedfs/seaweedfs/weed/util"
  21. "github.com/seaweedfs/seaweedfs/weed/util/grace"
  22. "github.com/seaweedfs/seaweedfs/weed/wdclient"
  23. )
  24. var (
  25. copy CopyOptions
  26. waitGroup sync.WaitGroup
  27. )
  28. type CopyOptions struct {
  29. include *string
  30. replication *string
  31. collection *string
  32. ttl *string
  33. diskType *string
  34. maxMB *int
  35. masterClient *wdclient.MasterClient
  36. concurrentFiles *int
  37. concurrentChunks *int
  38. grpcDialOption grpc.DialOption
  39. masters []string
  40. cipher bool
  41. ttlSec int32
  42. checkSize *bool
  43. verbose *bool
  44. }
  45. func init() {
  46. cmdFilerCopy.Run = runCopy // break init cycle
  47. cmdFilerCopy.IsDebug = cmdFilerCopy.Flag.Bool("debug", false, "verbose debug information")
  48. copy.include = cmdFilerCopy.Flag.String("include", "", "pattens of files to copy, e.g., *.pdf, *.html, ab?d.txt, works together with -dir")
  49. copy.replication = cmdFilerCopy.Flag.String("replication", "", "replication type")
  50. copy.collection = cmdFilerCopy.Flag.String("collection", "", "optional collection name")
  51. copy.ttl = cmdFilerCopy.Flag.String("ttl", "", "time to live, e.g.: 1m, 1h, 1d, 1M, 1y")
  52. copy.diskType = cmdFilerCopy.Flag.String("disk", "", "[hdd|ssd|<tag>] hard drive or solid state drive or any tag")
  53. copy.maxMB = cmdFilerCopy.Flag.Int("maxMB", 4, "split files larger than the limit")
  54. copy.concurrentFiles = cmdFilerCopy.Flag.Int("c", 8, "concurrent file copy goroutines")
  55. copy.concurrentChunks = cmdFilerCopy.Flag.Int("concurrentChunks", 8, "concurrent chunk copy goroutines for each file")
  56. copy.checkSize = cmdFilerCopy.Flag.Bool("check.size", false, "copy when the target file size is different from the source file")
  57. copy.verbose = cmdFilerCopy.Flag.Bool("verbose", false, "print out details during copying")
  58. }
  59. var cmdFilerCopy = &Command{
  60. UsageLine: "filer.copy file_or_dir1 [file_or_dir2 file_or_dir3] http://localhost:8888/path/to/a/folder/",
  61. Short: "copy one or a list of files to a filer folder",
  62. Long: `copy one or a list of files, or batch copy one whole folder recursively, to a filer folder
  63. It can copy one or a list of files or folders.
  64. If copying a whole folder recursively:
  65. All files under the folder and sub folders will be copied.
  66. Optional parameter "-include" allows you to specify the file name patterns.
  67. If "maxMB" is set to a positive number, files larger than it would be split into chunks.
  68. `,
  69. }
  70. func runCopy(cmd *Command, args []string) bool {
  71. util.LoadConfiguration("security", false)
  72. if len(args) <= 1 {
  73. return false
  74. }
  75. filerDestination := args[len(args)-1]
  76. fileOrDirs := args[0 : len(args)-1]
  77. filerAddress, urlPath, err := pb.ParseUrl(filerDestination)
  78. if err != nil {
  79. fmt.Printf("The last argument should be a URL on filer: %v\n", err)
  80. return false
  81. }
  82. if !strings.HasSuffix(urlPath, "/") {
  83. fmt.Printf("The last argument should be a folder and end with \"/\"\n")
  84. return false
  85. }
  86. copy.grpcDialOption = security.LoadClientTLS(util.GetViper(), "grpc.client")
  87. masters, collection, replication, dirBuckets, maxMB, cipher, err := readFilerConfiguration(copy.grpcDialOption, filerAddress)
  88. if err != nil {
  89. fmt.Printf("read from filer %s: %v\n", filerAddress, err)
  90. return false
  91. }
  92. if strings.HasPrefix(urlPath, dirBuckets+"/") {
  93. restPath := urlPath[len(dirBuckets)+1:]
  94. if strings.Index(restPath, "/") > 0 {
  95. expectedBucket := restPath[:strings.Index(restPath, "/")]
  96. if *copy.collection == "" {
  97. *copy.collection = expectedBucket
  98. } else if *copy.collection != expectedBucket {
  99. fmt.Printf("destination %s uses collection \"%s\": unexpected collection \"%v\"\n", urlPath, expectedBucket, *copy.collection)
  100. return true
  101. }
  102. }
  103. }
  104. if *copy.collection == "" {
  105. *copy.collection = collection
  106. }
  107. if *copy.replication == "" {
  108. *copy.replication = replication
  109. }
  110. if *copy.maxMB == 0 {
  111. *copy.maxMB = int(maxMB)
  112. }
  113. copy.masters = masters
  114. copy.cipher = cipher
  115. ttl, err := needle.ReadTTL(*copy.ttl)
  116. if err != nil {
  117. fmt.Printf("parsing ttl %s: %v\n", *copy.ttl, err)
  118. return false
  119. }
  120. copy.ttlSec = int32(ttl.Minutes()) * 60
  121. if *cmdFilerCopy.IsDebug {
  122. grace.SetupProfiling("filer.copy.cpu.pprof", "filer.copy.mem.pprof")
  123. }
  124. fileCopyTaskChan := make(chan FileCopyTask, *copy.concurrentFiles)
  125. go func() {
  126. defer close(fileCopyTaskChan)
  127. for _, fileOrDir := range fileOrDirs {
  128. if err := genFileCopyTask(fileOrDir, urlPath, fileCopyTaskChan); err != nil {
  129. fmt.Fprintf(os.Stderr, "genFileCopyTask : %v\n", err)
  130. break
  131. }
  132. }
  133. }()
  134. for i := 0; i < *copy.concurrentFiles; i++ {
  135. waitGroup.Add(1)
  136. go func() {
  137. defer waitGroup.Done()
  138. worker := FileCopyWorker{
  139. options: &copy,
  140. filerAddress: filerAddress,
  141. signature: util.RandomInt32(),
  142. }
  143. if err := worker.copyFiles(fileCopyTaskChan); err != nil {
  144. fmt.Fprintf(os.Stderr, "copy file error: %v\n", err)
  145. return
  146. }
  147. }()
  148. }
  149. waitGroup.Wait()
  150. return true
  151. }
  152. func readFilerConfiguration(grpcDialOption grpc.DialOption, filerGrpcAddress pb.ServerAddress) (masters []string, collection, replication string, dirBuckets string, maxMB uint32, cipher bool, err error) {
  153. err = pb.WithGrpcFilerClient(false, 0, filerGrpcAddress, grpcDialOption, func(client filer_pb.SeaweedFilerClient) error {
  154. resp, err := client.GetFilerConfiguration(context.Background(), &filer_pb.GetFilerConfigurationRequest{})
  155. if err != nil {
  156. return fmt.Errorf("get filer %s configuration: %v", filerGrpcAddress, err)
  157. }
  158. masters, collection, replication, maxMB = resp.Masters, resp.Collection, resp.Replication, resp.MaxMb
  159. dirBuckets = resp.DirBuckets
  160. cipher = resp.Cipher
  161. return nil
  162. })
  163. return
  164. }
  165. func genFileCopyTask(fileOrDir string, destPath string, fileCopyTaskChan chan FileCopyTask) error {
  166. fi, err := os.Stat(fileOrDir)
  167. if err != nil {
  168. fmt.Fprintf(os.Stderr, "Error: read file %s: %v\n", fileOrDir, err)
  169. return nil
  170. }
  171. mode := fi.Mode()
  172. uid, gid := util.GetFileUidGid(fi)
  173. fileSize := fi.Size()
  174. if mode.IsDir() {
  175. fileSize = 0
  176. }
  177. fileCopyTaskChan <- FileCopyTask{
  178. sourceLocation: fileOrDir,
  179. destinationUrlPath: destPath,
  180. fileSize: fileSize,
  181. fileMode: fi.Mode(),
  182. uid: uid,
  183. gid: gid,
  184. }
  185. if mode.IsDir() {
  186. files, _ := os.ReadDir(fileOrDir)
  187. for _, subFileOrDir := range files {
  188. cleanedDestDirectory := destPath + fi.Name()
  189. if err = genFileCopyTask(fileOrDir+"/"+subFileOrDir.Name(), cleanedDestDirectory+"/", fileCopyTaskChan); err != nil {
  190. return err
  191. }
  192. }
  193. }
  194. return nil
  195. }
  196. type FileCopyWorker struct {
  197. options *CopyOptions
  198. filerAddress pb.ServerAddress
  199. signature int32
  200. }
  201. func (worker *FileCopyWorker) copyFiles(fileCopyTaskChan chan FileCopyTask) error {
  202. for task := range fileCopyTaskChan {
  203. if err := worker.doEachCopy(task); err != nil {
  204. return err
  205. }
  206. }
  207. return nil
  208. }
  209. type FileCopyTask struct {
  210. sourceLocation string
  211. destinationUrlPath string
  212. fileSize int64
  213. fileMode os.FileMode
  214. uid uint32
  215. gid uint32
  216. }
  217. func (worker *FileCopyWorker) doEachCopy(task FileCopyTask) error {
  218. f, err := os.Open(task.sourceLocation)
  219. if err != nil {
  220. fmt.Printf("Failed to open file %s: %v\n", task.sourceLocation, err)
  221. if _, ok := err.(*os.PathError); ok {
  222. fmt.Printf("skipping %s\n", task.sourceLocation)
  223. return nil
  224. }
  225. return err
  226. }
  227. defer f.Close()
  228. // this is a regular file
  229. if *worker.options.include != "" {
  230. if ok, _ := filepath.Match(*worker.options.include, filepath.Base(task.sourceLocation)); !ok {
  231. return nil
  232. }
  233. }
  234. if shouldCopy, err := worker.checkExistingFileFirst(task, f); err != nil {
  235. return fmt.Errorf("check existing file: %v", err)
  236. } else if !shouldCopy {
  237. if *worker.options.verbose {
  238. fmt.Printf("skipping copied file: %v\n", f.Name())
  239. }
  240. return nil
  241. }
  242. // find the chunk count
  243. chunkSize := int64(*worker.options.maxMB * 1024 * 1024)
  244. chunkCount := 1
  245. if chunkSize > 0 && task.fileSize > chunkSize {
  246. chunkCount = int(task.fileSize/chunkSize) + 1
  247. }
  248. if chunkCount == 1 {
  249. return worker.uploadFileAsOne(task, f)
  250. }
  251. return worker.uploadFileInChunks(task, f, chunkCount, chunkSize)
  252. }
  253. func (worker *FileCopyWorker) checkExistingFileFirst(task FileCopyTask, f *os.File) (shouldCopy bool, err error) {
  254. shouldCopy = true
  255. if !*worker.options.checkSize {
  256. return
  257. }
  258. fileStat, err := f.Stat()
  259. if err != nil {
  260. shouldCopy = false
  261. return
  262. }
  263. err = pb.WithGrpcFilerClient(false, worker.signature, worker.filerAddress, worker.options.grpcDialOption, func(client filer_pb.SeaweedFilerClient) error {
  264. request := &filer_pb.LookupDirectoryEntryRequest{
  265. Directory: task.destinationUrlPath,
  266. Name: filepath.Base(f.Name()),
  267. }
  268. resp, lookupErr := client.LookupDirectoryEntry(context.Background(), request)
  269. if lookupErr != nil {
  270. // mostly not found error
  271. return nil
  272. }
  273. if fileStat.Size() == int64(filer.FileSize(resp.Entry)) {
  274. shouldCopy = false
  275. }
  276. return nil
  277. })
  278. return
  279. }
  280. func (worker *FileCopyWorker) uploadFileAsOne(task FileCopyTask, f *os.File) error {
  281. // upload the file content
  282. fileName := filepath.Base(f.Name())
  283. var mimeType string
  284. var chunks []*filer_pb.FileChunk
  285. if task.fileMode&os.ModeDir == 0 && task.fileSize > 0 {
  286. mimeType = detectMimeType(f)
  287. data, err := io.ReadAll(f)
  288. if err != nil {
  289. return err
  290. }
  291. finalFileId, uploadResult, flushErr, _ := operation.UploadWithRetry(
  292. worker,
  293. &filer_pb.AssignVolumeRequest{
  294. Count: 1,
  295. Replication: *worker.options.replication,
  296. Collection: *worker.options.collection,
  297. TtlSec: worker.options.ttlSec,
  298. DiskType: *worker.options.diskType,
  299. Path: task.destinationUrlPath,
  300. },
  301. &operation.UploadOption{
  302. Filename: fileName,
  303. Cipher: worker.options.cipher,
  304. IsInputCompressed: false,
  305. MimeType: mimeType,
  306. PairMap: nil,
  307. },
  308. func(host, fileId string) string {
  309. return fmt.Sprintf("http://%s/%s", host, fileId)
  310. },
  311. util.NewBytesReader(data),
  312. )
  313. if flushErr != nil {
  314. return flushErr
  315. }
  316. chunks = append(chunks, uploadResult.ToPbFileChunk(finalFileId, 0, time.Now().UnixNano()))
  317. }
  318. if err := pb.WithGrpcFilerClient(false, worker.signature, worker.filerAddress, worker.options.grpcDialOption, func(client filer_pb.SeaweedFilerClient) error {
  319. request := &filer_pb.CreateEntryRequest{
  320. Directory: task.destinationUrlPath,
  321. Entry: &filer_pb.Entry{
  322. Name: fileName,
  323. Attributes: &filer_pb.FuseAttributes{
  324. Crtime: time.Now().Unix(),
  325. Mtime: time.Now().Unix(),
  326. Gid: task.gid,
  327. Uid: task.uid,
  328. FileSize: uint64(task.fileSize),
  329. FileMode: uint32(task.fileMode),
  330. Mime: mimeType,
  331. TtlSec: worker.options.ttlSec,
  332. },
  333. Chunks: chunks,
  334. },
  335. }
  336. if err := filer_pb.CreateEntry(client, request); err != nil {
  337. return fmt.Errorf("update fh: %v", err)
  338. }
  339. return nil
  340. }); err != nil {
  341. return fmt.Errorf("upload data %v to http://%s%s%s: %v\n", fileName, worker.filerAddress.ToHttpAddress(), task.destinationUrlPath, fileName, err)
  342. }
  343. return nil
  344. }
  345. func (worker *FileCopyWorker) uploadFileInChunks(task FileCopyTask, f *os.File, chunkCount int, chunkSize int64) error {
  346. fileName := filepath.Base(f.Name())
  347. mimeType := detectMimeType(f)
  348. chunksChan := make(chan *filer_pb.FileChunk, chunkCount)
  349. concurrentChunks := make(chan struct{}, *worker.options.concurrentChunks)
  350. var wg sync.WaitGroup
  351. var uploadError error
  352. fmt.Printf("uploading %s in %d chunks ...\n", fileName, chunkCount)
  353. for i := int64(0); i < int64(chunkCount) && uploadError == nil; i++ {
  354. wg.Add(1)
  355. concurrentChunks <- struct{}{}
  356. go func(i int64) {
  357. defer func() {
  358. wg.Done()
  359. <-concurrentChunks
  360. }()
  361. fileId, uploadResult, err, _ := operation.UploadWithRetry(
  362. worker,
  363. &filer_pb.AssignVolumeRequest{
  364. Count: 1,
  365. Replication: *worker.options.replication,
  366. Collection: *worker.options.collection,
  367. TtlSec: worker.options.ttlSec,
  368. DiskType: *worker.options.diskType,
  369. Path: task.destinationUrlPath + fileName,
  370. },
  371. &operation.UploadOption{
  372. Filename: fileName + "-" + strconv.FormatInt(i+1, 10),
  373. Cipher: worker.options.cipher,
  374. IsInputCompressed: false,
  375. MimeType: "",
  376. PairMap: nil,
  377. },
  378. func(host, fileId string) string {
  379. return fmt.Sprintf("http://%s/%s", host, fileId)
  380. },
  381. io.NewSectionReader(f, i*chunkSize, chunkSize),
  382. )
  383. if err != nil {
  384. uploadError = fmt.Errorf("upload data %v: %v\n", fileName, err)
  385. return
  386. }
  387. if uploadResult.Error != "" {
  388. uploadError = fmt.Errorf("upload %v result: %v\n", fileName, uploadResult.Error)
  389. return
  390. }
  391. chunksChan <- uploadResult.ToPbFileChunk(fileId, i*chunkSize, time.Now().UnixNano())
  392. fmt.Printf("uploaded %s-%d [%d,%d)\n", fileName, i+1, i*chunkSize, i*chunkSize+int64(uploadResult.Size))
  393. }(i)
  394. }
  395. wg.Wait()
  396. close(chunksChan)
  397. var chunks []*filer_pb.FileChunk
  398. for chunk := range chunksChan {
  399. chunks = append(chunks, chunk)
  400. }
  401. if uploadError != nil {
  402. var fileIds []string
  403. for _, chunk := range chunks {
  404. fileIds = append(fileIds, chunk.FileId)
  405. }
  406. operation.DeleteFiles(func() pb.ServerAddress {
  407. return pb.ServerAddress(copy.masters[0])
  408. }, false, worker.options.grpcDialOption, fileIds)
  409. return uploadError
  410. }
  411. manifestedChunks, manifestErr := filer.MaybeManifestize(worker.saveDataAsChunk, chunks)
  412. if manifestErr != nil {
  413. return fmt.Errorf("create manifest: %v", manifestErr)
  414. }
  415. if err := pb.WithGrpcFilerClient(false, worker.signature, worker.filerAddress, worker.options.grpcDialOption, func(client filer_pb.SeaweedFilerClient) error {
  416. request := &filer_pb.CreateEntryRequest{
  417. Directory: task.destinationUrlPath,
  418. Entry: &filer_pb.Entry{
  419. Name: fileName,
  420. Attributes: &filer_pb.FuseAttributes{
  421. Crtime: time.Now().Unix(),
  422. Mtime: time.Now().Unix(),
  423. Gid: task.gid,
  424. Uid: task.uid,
  425. FileSize: uint64(task.fileSize),
  426. FileMode: uint32(task.fileMode),
  427. Mime: mimeType,
  428. TtlSec: worker.options.ttlSec,
  429. },
  430. Chunks: manifestedChunks,
  431. },
  432. }
  433. if err := filer_pb.CreateEntry(client, request); err != nil {
  434. return fmt.Errorf("update fh: %v", err)
  435. }
  436. return nil
  437. }); err != nil {
  438. return fmt.Errorf("upload data %v to http://%s%s%s: %v\n", fileName, worker.filerAddress.ToHttpAddress(), task.destinationUrlPath, fileName, err)
  439. }
  440. fmt.Printf("copied %s => http://%s%s%s\n", f.Name(), worker.filerAddress.ToHttpAddress(), task.destinationUrlPath, fileName)
  441. return nil
  442. }
  443. func detectMimeType(f *os.File) string {
  444. head := make([]byte, 512)
  445. f.Seek(0, io.SeekStart)
  446. n, err := f.Read(head)
  447. if err == io.EOF {
  448. return ""
  449. }
  450. if err != nil {
  451. fmt.Printf("read head of %v: %v\n", f.Name(), err)
  452. return ""
  453. }
  454. f.Seek(0, io.SeekStart)
  455. mimeType := http.DetectContentType(head[:n])
  456. if mimeType == "application/octet-stream" {
  457. return ""
  458. }
  459. return mimeType
  460. }
  461. func (worker *FileCopyWorker) saveDataAsChunk(reader io.Reader, name string, offset int64, tsNs int64) (chunk *filer_pb.FileChunk, err error) {
  462. finalFileId, uploadResult, flushErr, _ := operation.UploadWithRetry(
  463. worker,
  464. &filer_pb.AssignVolumeRequest{
  465. Count: 1,
  466. Replication: *worker.options.replication,
  467. Collection: *worker.options.collection,
  468. TtlSec: worker.options.ttlSec,
  469. DiskType: *worker.options.diskType,
  470. Path: name,
  471. },
  472. &operation.UploadOption{
  473. Filename: name,
  474. Cipher: worker.options.cipher,
  475. IsInputCompressed: false,
  476. MimeType: "",
  477. PairMap: nil,
  478. },
  479. func(host, fileId string) string {
  480. return fmt.Sprintf("http://%s/%s", host, fileId)
  481. },
  482. reader,
  483. )
  484. if flushErr != nil {
  485. return nil, fmt.Errorf("upload data: %v", flushErr)
  486. }
  487. if uploadResult.Error != "" {
  488. return nil, fmt.Errorf("upload result: %v", uploadResult.Error)
  489. }
  490. return uploadResult.ToPbFileChunk(finalFileId, offset, tsNs), nil
  491. }
  492. var _ = filer_pb.FilerClient(&FileCopyWorker{})
  493. func (worker *FileCopyWorker) WithFilerClient(streamingMode bool, fn func(filer_pb.SeaweedFilerClient) error) (err error) {
  494. filerGrpcAddress := worker.filerAddress.ToGrpcAddress()
  495. err = pb.WithGrpcClient(streamingMode, worker.signature, func(grpcConnection *grpc.ClientConn) error {
  496. client := filer_pb.NewSeaweedFilerClient(grpcConnection)
  497. return fn(client)
  498. }, filerGrpcAddress, false, worker.options.grpcDialOption)
  499. return
  500. }
  501. func (worker *FileCopyWorker) AdjustedUrl(location *filer_pb.Location) string {
  502. return location.Url
  503. }
  504. func (worker *FileCopyWorker) GetDataCenter() string {
  505. return ""
  506. }