2022-07-07 18:56:59 +00:00
|
|
|
package sync
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2023-06-12 11:44:00 +00:00
|
|
|
"errors"
|
|
|
|
"io/fs"
|
2022-07-07 18:56:59 +00:00
|
|
|
|
2023-06-12 11:44:00 +00:00
|
|
|
"github.com/databricks/cli/libs/filer"
|
|
|
|
"github.com/databricks/cli/libs/log"
|
2022-10-04 22:12:57 +00:00
|
|
|
"golang.org/x/sync/errgroup"
|
2022-07-07 18:56:59 +00:00
|
|
|
)
|
|
|
|
|
2023-03-09 12:29:05 +00:00
|
|
|
// Maximum number of concurrent requests during sync.
|
2022-10-04 22:12:57 +00:00
|
|
|
const MaxRequestsInFlight = 20
|
|
|
|
|
2023-06-12 11:44:00 +00:00
|
|
|
// Delete the specified path.
|
|
|
|
func (s *Sync) applyDelete(ctx context.Context, remoteName string) error {
|
|
|
|
s.notifyProgress(ctx, EventActionDelete, remoteName, 0.0)
|
|
|
|
|
|
|
|
err := s.filer.Delete(ctx, remoteName)
|
|
|
|
if err != nil && !errors.Is(err, fs.ErrNotExist) {
|
|
|
|
return err
|
2023-03-09 12:29:05 +00:00
|
|
|
}
|
|
|
|
|
2023-06-12 11:44:00 +00:00
|
|
|
s.notifyProgress(ctx, EventActionDelete, remoteName, 1.0)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove the directory at the specified path.
|
|
|
|
func (s *Sync) applyRmdir(ctx context.Context, remoteName string) error {
|
|
|
|
s.notifyProgress(ctx, EventActionDelete, remoteName, 0.0)
|
|
|
|
|
|
|
|
err := s.filer.Delete(ctx, remoteName)
|
|
|
|
if err != nil {
|
|
|
|
// Directory deletion is opportunistic, so we ignore errors.
|
|
|
|
log.Debugf(ctx, "error removing directory %s: %s", remoteName, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
s.notifyProgress(ctx, EventActionDelete, remoteName, 1.0)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create a directory at the specified path.
|
|
|
|
func (s *Sync) applyMkdir(ctx context.Context, localName string) error {
|
|
|
|
s.notifyProgress(ctx, EventActionPut, localName, 0.0)
|
|
|
|
|
|
|
|
err := s.filer.Mkdir(ctx, localName)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
s.notifyProgress(ctx, EventActionPut, localName, 1.0)
|
|
|
|
return nil
|
2023-03-09 12:29:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Perform a PUT of the specified local path.
|
2023-06-12 11:44:00 +00:00
|
|
|
func (s *Sync) applyPut(ctx context.Context, localName string) error {
|
|
|
|
s.notifyProgress(ctx, EventActionPut, localName, 0.0)
|
|
|
|
|
2024-08-19 15:41:02 +00:00
|
|
|
localFile, err := s.LocalRoot.Open(localName)
|
2023-06-12 11:44:00 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
defer localFile.Close()
|
|
|
|
|
|
|
|
opts := []filer.WriteMode{filer.CreateParentDirectories, filer.OverwriteIfExists}
|
|
|
|
err = s.filer.Write(ctx, localName, localFile, opts...)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
s.notifyProgress(ctx, EventActionPut, localName, 1.0)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func groupRunSingle(ctx context.Context, group *errgroup.Group, fn func(context.Context, string) error, path string) {
|
2023-03-09 12:29:05 +00:00
|
|
|
// Return early if the context has already been cancelled.
|
|
|
|
select {
|
|
|
|
case <-ctx.Done():
|
|
|
|
return
|
|
|
|
default:
|
|
|
|
// Proceed.
|
|
|
|
}
|
|
|
|
|
|
|
|
group.Go(func() error {
|
2023-06-12 11:44:00 +00:00
|
|
|
return fn(ctx, path)
|
2023-03-09 12:29:05 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2023-06-12 11:44:00 +00:00
|
|
|
func groupRunParallel(ctx context.Context, paths []string, fn func(context.Context, string) error) error {
|
2023-03-09 12:29:05 +00:00
|
|
|
group, ctx := errgroup.WithContext(ctx)
|
|
|
|
group.SetLimit(MaxRequestsInFlight)
|
|
|
|
|
2023-06-12 11:44:00 +00:00
|
|
|
for _, path := range paths {
|
|
|
|
groupRunSingle(ctx, group, fn, path)
|
2023-03-09 12:29:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Wait for goroutines to finish and return first non-nil error return if any.
|
|
|
|
return group.Wait()
|
2022-09-14 15:50:29 +00:00
|
|
|
}
|
2023-06-12 11:44:00 +00:00
|
|
|
|
|
|
|
func (s *Sync) applyDiff(ctx context.Context, d diff) error {
|
|
|
|
var err error
|
|
|
|
|
|
|
|
// Delete files in parallel.
|
|
|
|
err = groupRunParallel(ctx, d.delete, s.applyDelete)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete directories ordered by depth from leaf to root.
|
|
|
|
for _, group := range d.groupedRmdir() {
|
|
|
|
err = groupRunParallel(ctx, group, s.applyRmdir)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create directories (leafs only because intermediates are created automatically).
|
|
|
|
for _, group := range d.groupedMkdir() {
|
|
|
|
err = groupRunParallel(ctx, group, s.applyMkdir)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Put files in parallel.
|
|
|
|
err = groupRunParallel(ctx, d.put, s.applyPut)
|
|
|
|
|
|
|
|
return err
|
|
|
|
}
|