mirror of
https://github.com/Luzifer/s3sync.git
synced 2024-12-20 19:41:15 +00:00
Fix: Made channels bigger for S3 processing
Buckets with many folders were able to freeze s3sync when all threads were trying to write into the prefix channel but it was at its CAP.
This commit is contained in:
parent
98f1d4f29d
commit
3237e3fd8d
1 changed files with 2 additions and 2 deletions
4
s3.go
4
s3.go
|
@ -47,8 +47,8 @@ func (s *s3Provider) ListFiles(prefix string) ([]file, error) {
|
|||
|
||||
processedPrefixes := []string{}
|
||||
|
||||
prefixChan := make(chan *string, 100)
|
||||
outputChan := make(chan file, 100)
|
||||
prefixChan := make(chan *string, 10000)
|
||||
outputChan := make(chan file, 10000)
|
||||
errChan := make(chan error, 10)
|
||||
syncChan := make(chan bool, 10)
|
||||
doneTimer := time.NewTicker(500 * time.Millisecond)
|
||||
|
|
Loading…
Reference in a new issue