filer_copy.go 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586
  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. }
  142. if err := worker.copyFiles(fileCopyTaskChan); err != nil {
  143. fmt.Fprintf(os.Stderr, "copy file error: %v\n", err)
  144. return
  145. }
  146. }()
  147. }
  148. waitGroup.Wait()
  149. return true
  150. }
  151. func readFilerConfiguration(grpcDialOption grpc.DialOption, filerGrpcAddress pb.ServerAddress) (masters []string, collection, replication string, dirBuckets string, maxMB uint32, cipher bool, err error) {
  152. err = pb.WithGrpcFilerClient(false, filerGrpcAddress, grpcDialOption, func(client filer_pb.SeaweedFilerClient) error {
  153. resp, err := client.GetFilerConfiguration(context.Background(), &filer_pb.GetFilerConfigurationRequest{})
  154. if err != nil {
  155. return fmt.Errorf("get filer %s configuration: %v", filerGrpcAddress, err)
  156. }
  157. masters, collection, replication, maxMB = resp.Masters, resp.Collection, resp.Replication, resp.MaxMb
  158. dirBuckets = resp.DirBuckets
  159. cipher = resp.Cipher
  160. return nil
  161. })
  162. return
  163. }
  164. func genFileCopyTask(fileOrDir string, destPath string, fileCopyTaskChan chan FileCopyTask) error {
  165. fi, err := os.Stat(fileOrDir)
  166. if err != nil {
  167. fmt.Fprintf(os.Stderr, "Error: read file %s: %v\n", fileOrDir, err)
  168. return nil
  169. }
  170. mode := fi.Mode()
  171. uid, gid := util.GetFileUidGid(fi)
  172. fileSize := fi.Size()
  173. if mode.IsDir() {
  174. fileSize = 0
  175. }
  176. fileCopyTaskChan <- FileCopyTask{
  177. sourceLocation: fileOrDir,
  178. destinationUrlPath: destPath,
  179. fileSize: fileSize,
  180. fileMode: fi.Mode(),
  181. uid: uid,
  182. gid: gid,
  183. }
  184. if mode.IsDir() {
  185. files, _ := os.ReadDir(fileOrDir)
  186. for _, subFileOrDir := range files {
  187. cleanedDestDirectory := destPath + fi.Name()
  188. if err = genFileCopyTask(fileOrDir+"/"+subFileOrDir.Name(), cleanedDestDirectory+"/", fileCopyTaskChan); err != nil {
  189. return err
  190. }
  191. }
  192. }
  193. return nil
  194. }
  195. type FileCopyWorker struct {
  196. options *CopyOptions
  197. filerAddress pb.ServerAddress
  198. }
  199. func (worker *FileCopyWorker) copyFiles(fileCopyTaskChan chan FileCopyTask) error {
  200. for task := range fileCopyTaskChan {
  201. if err := worker.doEachCopy(task); err != nil {
  202. return err
  203. }
  204. }
  205. return nil
  206. }
  207. type FileCopyTask struct {
  208. sourceLocation string
  209. destinationUrlPath string
  210. fileSize int64
  211. fileMode os.FileMode
  212. uid uint32
  213. gid uint32
  214. }
  215. func (worker *FileCopyWorker) doEachCopy(task FileCopyTask) error {
  216. f, err := os.Open(task.sourceLocation)
  217. if err != nil {
  218. fmt.Printf("Failed to open file %s: %v\n", task.sourceLocation, err)
  219. if _, ok := err.(*os.PathError); ok {
  220. fmt.Printf("skipping %s\n", task.sourceLocation)
  221. return nil
  222. }
  223. return err
  224. }
  225. defer f.Close()
  226. // this is a regular file
  227. if *worker.options.include != "" {
  228. if ok, _ := filepath.Match(*worker.options.include, filepath.Base(task.sourceLocation)); !ok {
  229. return nil
  230. }
  231. }
  232. if shouldCopy, err := worker.checkExistingFileFirst(task, f); err != nil {
  233. return fmt.Errorf("check existing file: %v", err)
  234. } else if !shouldCopy {
  235. if *worker.options.verbose {
  236. fmt.Printf("skipping copied file: %v\n", f.Name())
  237. }
  238. return nil
  239. }
  240. // find the chunk count
  241. chunkSize := int64(*worker.options.maxMB * 1024 * 1024)
  242. chunkCount := 1
  243. if chunkSize > 0 && task.fileSize > chunkSize {
  244. chunkCount = int(task.fileSize/chunkSize) + 1
  245. }
  246. if chunkCount == 1 {
  247. return worker.uploadFileAsOne(task, f)
  248. }
  249. return worker.uploadFileInChunks(task, f, chunkCount, chunkSize)
  250. }
  251. func (worker *FileCopyWorker) checkExistingFileFirst(task FileCopyTask, f *os.File) (shouldCopy bool, err error) {
  252. shouldCopy = true
  253. if !*worker.options.checkSize {
  254. return
  255. }
  256. fileStat, err := f.Stat()
  257. if err != nil {
  258. shouldCopy = false
  259. return
  260. }
  261. err = pb.WithGrpcFilerClient(false, worker.filerAddress, worker.options.grpcDialOption, func(client filer_pb.SeaweedFilerClient) error {
  262. request := &filer_pb.LookupDirectoryEntryRequest{
  263. Directory: task.destinationUrlPath,
  264. Name: filepath.Base(f.Name()),
  265. }
  266. resp, lookupErr := client.LookupDirectoryEntry(context.Background(), request)
  267. if lookupErr != nil {
  268. // mostly not found error
  269. return nil
  270. }
  271. if fileStat.Size() == int64(filer.FileSize(resp.Entry)) {
  272. shouldCopy = false
  273. }
  274. return nil
  275. })
  276. return
  277. }
  278. func (worker *FileCopyWorker) uploadFileAsOne(task FileCopyTask, f *os.File) error {
  279. // upload the file content
  280. fileName := filepath.Base(f.Name())
  281. var mimeType string
  282. var chunks []*filer_pb.FileChunk
  283. if task.fileMode&os.ModeDir == 0 && task.fileSize > 0 {
  284. mimeType = detectMimeType(f)
  285. data, err := io.ReadAll(f)
  286. if err != nil {
  287. return err
  288. }
  289. finalFileId, uploadResult, flushErr, _ := operation.UploadWithRetry(
  290. worker,
  291. &filer_pb.AssignVolumeRequest{
  292. Count: 1,
  293. Replication: *worker.options.replication,
  294. Collection: *worker.options.collection,
  295. TtlSec: worker.options.ttlSec,
  296. DiskType: *worker.options.diskType,
  297. Path: task.destinationUrlPath,
  298. },
  299. &operation.UploadOption{
  300. Filename: fileName,
  301. Cipher: worker.options.cipher,
  302. IsInputCompressed: false,
  303. MimeType: mimeType,
  304. PairMap: nil,
  305. },
  306. func(host, fileId string) string {
  307. return fmt.Sprintf("http://%s/%s", host, fileId)
  308. },
  309. util.NewBytesReader(data),
  310. )
  311. if flushErr != nil {
  312. return flushErr
  313. }
  314. chunks = append(chunks, uploadResult.ToPbFileChunk(finalFileId, 0))
  315. }
  316. if err := pb.WithGrpcFilerClient(false, worker.filerAddress, worker.options.grpcDialOption, func(client filer_pb.SeaweedFilerClient) error {
  317. request := &filer_pb.CreateEntryRequest{
  318. Directory: task.destinationUrlPath,
  319. Entry: &filer_pb.Entry{
  320. Name: fileName,
  321. Attributes: &filer_pb.FuseAttributes{
  322. Crtime: time.Now().Unix(),
  323. Mtime: time.Now().Unix(),
  324. Gid: task.gid,
  325. Uid: task.uid,
  326. FileSize: uint64(task.fileSize),
  327. FileMode: uint32(task.fileMode),
  328. Mime: mimeType,
  329. TtlSec: worker.options.ttlSec,
  330. },
  331. Chunks: chunks,
  332. },
  333. }
  334. if err := filer_pb.CreateEntry(client, request); err != nil {
  335. return fmt.Errorf("update fh: %v", err)
  336. }
  337. return nil
  338. }); err != nil {
  339. return fmt.Errorf("upload data %v to http://%s%s%s: %v\n", fileName, worker.filerAddress.ToHttpAddress(), task.destinationUrlPath, fileName, err)
  340. }
  341. return nil
  342. }
  343. func (worker *FileCopyWorker) uploadFileInChunks(task FileCopyTask, f *os.File, chunkCount int, chunkSize int64) error {
  344. fileName := filepath.Base(f.Name())
  345. mimeType := detectMimeType(f)
  346. chunksChan := make(chan *filer_pb.FileChunk, chunkCount)
  347. concurrentChunks := make(chan struct{}, *worker.options.concurrentChunks)
  348. var wg sync.WaitGroup
  349. var uploadError error
  350. fmt.Printf("uploading %s in %d chunks ...\n", fileName, chunkCount)
  351. for i := int64(0); i < int64(chunkCount) && uploadError == nil; i++ {
  352. wg.Add(1)
  353. concurrentChunks <- struct{}{}
  354. go func(i int64) {
  355. defer func() {
  356. wg.Done()
  357. <-concurrentChunks
  358. }()
  359. fileId, uploadResult, err, _ := operation.UploadWithRetry(
  360. worker,
  361. &filer_pb.AssignVolumeRequest{
  362. Count: 1,
  363. Replication: *worker.options.replication,
  364. Collection: *worker.options.collection,
  365. TtlSec: worker.options.ttlSec,
  366. DiskType: *worker.options.diskType,
  367. Path: task.destinationUrlPath + fileName,
  368. },
  369. &operation.UploadOption{
  370. Filename: fileName + "-" + strconv.FormatInt(i+1, 10),
  371. Cipher: worker.options.cipher,
  372. IsInputCompressed: false,
  373. MimeType: "",
  374. PairMap: nil,
  375. },
  376. func(host, fileId string) string {
  377. return fmt.Sprintf("http://%s/%s", host, fileId)
  378. },
  379. io.NewSectionReader(f, i*chunkSize, chunkSize),
  380. )
  381. if err != nil {
  382. uploadError = fmt.Errorf("upload data %v: %v\n", fileName, err)
  383. return
  384. }
  385. if uploadResult.Error != "" {
  386. uploadError = fmt.Errorf("upload %v result: %v\n", fileName, uploadResult.Error)
  387. return
  388. }
  389. chunksChan <- uploadResult.ToPbFileChunk(fileId, i*chunkSize)
  390. fmt.Printf("uploaded %s-%d [%d,%d)\n", fileName, i+1, i*chunkSize, i*chunkSize+int64(uploadResult.Size))
  391. }(i)
  392. }
  393. wg.Wait()
  394. close(chunksChan)
  395. var chunks []*filer_pb.FileChunk
  396. for chunk := range chunksChan {
  397. chunks = append(chunks, chunk)
  398. }
  399. if uploadError != nil {
  400. var fileIds []string
  401. for _, chunk := range chunks {
  402. fileIds = append(fileIds, chunk.FileId)
  403. }
  404. operation.DeleteFiles(func() pb.ServerAddress {
  405. return pb.ServerAddress(copy.masters[0])
  406. }, false, worker.options.grpcDialOption, fileIds)
  407. return uploadError
  408. }
  409. manifestedChunks, manifestErr := filer.MaybeManifestize(worker.saveDataAsChunk, chunks)
  410. if manifestErr != nil {
  411. return fmt.Errorf("create manifest: %v", manifestErr)
  412. }
  413. if err := pb.WithGrpcFilerClient(false, worker.filerAddress, worker.options.grpcDialOption, func(client filer_pb.SeaweedFilerClient) error {
  414. request := &filer_pb.CreateEntryRequest{
  415. Directory: task.destinationUrlPath,
  416. Entry: &filer_pb.Entry{
  417. Name: fileName,
  418. Attributes: &filer_pb.FuseAttributes{
  419. Crtime: time.Now().Unix(),
  420. Mtime: time.Now().Unix(),
  421. Gid: task.gid,
  422. Uid: task.uid,
  423. FileSize: uint64(task.fileSize),
  424. FileMode: uint32(task.fileMode),
  425. Mime: mimeType,
  426. TtlSec: worker.options.ttlSec,
  427. },
  428. Chunks: manifestedChunks,
  429. },
  430. }
  431. if err := filer_pb.CreateEntry(client, request); err != nil {
  432. return fmt.Errorf("update fh: %v", err)
  433. }
  434. return nil
  435. }); err != nil {
  436. return fmt.Errorf("upload data %v to http://%s%s%s: %v\n", fileName, worker.filerAddress.ToHttpAddress(), task.destinationUrlPath, fileName, err)
  437. }
  438. fmt.Printf("copied %s => http://%s%s%s\n", f.Name(), worker.filerAddress.ToHttpAddress(), task.destinationUrlPath, fileName)
  439. return nil
  440. }
  441. func detectMimeType(f *os.File) string {
  442. head := make([]byte, 512)
  443. f.Seek(0, io.SeekStart)
  444. n, err := f.Read(head)
  445. if err == io.EOF {
  446. return ""
  447. }
  448. if err != nil {
  449. fmt.Printf("read head of %v: %v\n", f.Name(), err)
  450. return ""
  451. }
  452. f.Seek(0, io.SeekStart)
  453. mimeType := http.DetectContentType(head[:n])
  454. if mimeType == "application/octet-stream" {
  455. return ""
  456. }
  457. return mimeType
  458. }
  459. func (worker *FileCopyWorker) saveDataAsChunk(reader io.Reader, name string, offset int64) (chunk *filer_pb.FileChunk, err error) {
  460. finalFileId, uploadResult, flushErr, _ := operation.UploadWithRetry(
  461. worker,
  462. &filer_pb.AssignVolumeRequest{
  463. Count: 1,
  464. Replication: *worker.options.replication,
  465. Collection: *worker.options.collection,
  466. TtlSec: worker.options.ttlSec,
  467. DiskType: *worker.options.diskType,
  468. Path: name,
  469. },
  470. &operation.UploadOption{
  471. Filename: name,
  472. Cipher: worker.options.cipher,
  473. IsInputCompressed: false,
  474. MimeType: "",
  475. PairMap: nil,
  476. },
  477. func(host, fileId string) string {
  478. return fmt.Sprintf("http://%s/%s", host, fileId)
  479. },
  480. reader,
  481. )
  482. if flushErr != nil {
  483. return nil, fmt.Errorf("upload data: %v", flushErr)
  484. }
  485. if uploadResult.Error != "" {
  486. return nil, fmt.Errorf("upload result: %v", uploadResult.Error)
  487. }
  488. return uploadResult.ToPbFileChunk(finalFileId, offset), nil
  489. }
  490. var _ = filer_pb.FilerClient(&FileCopyWorker{})
  491. func (worker *FileCopyWorker) WithFilerClient(streamingMode bool, fn func(filer_pb.SeaweedFilerClient) error) (err error) {
  492. filerGrpcAddress := worker.filerAddress.ToGrpcAddress()
  493. err = pb.WithGrpcClient(streamingMode, func(grpcConnection *grpc.ClientConn) error {
  494. client := filer_pb.NewSeaweedFilerClient(grpcConnection)
  495. return fn(client)
  496. }, filerGrpcAddress, false, worker.options.grpcDialOption)
  497. return
  498. }
  499. func (worker *FileCopyWorker) AdjustedUrl(location *filer_pb.Location) string {
  500. return location.Url
  501. }
  502. func (worker *FileCopyWorker) GetDataCenter() string {
  503. return ""
  504. }