Move ACD Connection-limiter into Pacer.
This commit is contained in:
parent
788ef76f1c
commit
bc5b63ffef
2 changed files with 44 additions and 28 deletions
|
@ -87,7 +87,6 @@ type FsAcd struct {
|
||||||
root string // the path we are working on
|
root string // the path we are working on
|
||||||
dirCache *dircache.DirCache // Map of directory path to directory id
|
dirCache *dircache.DirCache // Map of directory path to directory id
|
||||||
pacer *pacer.Pacer // pacer for API calls
|
pacer *pacer.Pacer // pacer for API calls
|
||||||
connTokens chan struct{} // Connection tokens for directory listings
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// FsObjectAcd describes a acd object
|
// FsObjectAcd describes a acd object
|
||||||
|
@ -174,12 +173,6 @@ func NewFs(name, root string) (fs.Fs, error) {
|
||||||
root: root,
|
root: root,
|
||||||
c: c,
|
c: c,
|
||||||
pacer: pacer.New().SetMinSleep(minSleep).SetMaxSleep(maxSleep).SetDecayConstant(decayConstant),
|
pacer: pacer.New().SetMinSleep(minSleep).SetMaxSleep(maxSleep).SetDecayConstant(decayConstant),
|
||||||
connTokens: make(chan struct{}, fs.Config.Checkers),
|
|
||||||
}
|
|
||||||
|
|
||||||
// Insert connection tokens.
|
|
||||||
for i := 0; i < fs.Config.Checkers; i++ {
|
|
||||||
f.connTokens <- struct{}{}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Update endpoints
|
// Update endpoints
|
||||||
|
@ -332,14 +325,10 @@ func (f *FsAcd) listAll(dirId string, title string, directoriesOnly bool, filesO
|
||||||
OUTER:
|
OUTER:
|
||||||
for {
|
for {
|
||||||
var resp *http.Response
|
var resp *http.Response
|
||||||
// Get a token
|
|
||||||
_ = <-f.connTokens
|
|
||||||
err = f.pacer.Call(func() (bool, error) {
|
err = f.pacer.Call(func() (bool, error) {
|
||||||
nodes, resp, err = f.c.Nodes.GetNodes(&opts)
|
nodes, resp, err = f.c.Nodes.GetNodes(&opts)
|
||||||
return shouldRetry(resp, err)
|
return shouldRetry(resp, err)
|
||||||
})
|
})
|
||||||
// Reinsert token
|
|
||||||
f.connTokens <- struct{}{}
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fs.Stats.Error()
|
fs.Stats.Error()
|
||||||
fs.ErrorLog(f, "Couldn't list files: %v", err)
|
fs.ErrorLog(f, "Couldn't list files: %v", err)
|
||||||
|
|
|
@ -16,6 +16,8 @@ type Pacer struct {
|
||||||
sleepTime time.Duration // Time to sleep for each transaction
|
sleepTime time.Duration // Time to sleep for each transaction
|
||||||
retries int // Max number of retries
|
retries int // Max number of retries
|
||||||
mu sync.Mutex // Protecting read/writes
|
mu sync.Mutex // Protecting read/writes
|
||||||
|
maxConnections int // Maximum number of concurrent connections
|
||||||
|
connTokens chan struct{} // Connection tokens
|
||||||
}
|
}
|
||||||
|
|
||||||
// Paced is a function which is called by the Call and CallNoRetry
|
// Paced is a function which is called by the Call and CallNoRetry
|
||||||
|
@ -34,7 +36,7 @@ func New() *Pacer {
|
||||||
pacer: make(chan struct{}, 1),
|
pacer: make(chan struct{}, 1),
|
||||||
}
|
}
|
||||||
p.sleepTime = p.minSleep
|
p.sleepTime = p.minSleep
|
||||||
|
p.SetMaxConnections(fs.Config.Checkers)
|
||||||
// Put the first pacing token in
|
// Put the first pacing token in
|
||||||
p.pacer <- struct{}{}
|
p.pacer <- struct{}{}
|
||||||
|
|
||||||
|
@ -59,6 +61,25 @@ func (p *Pacer) SetMaxSleep(t time.Duration) *Pacer {
|
||||||
return p
|
return p
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// SetMaxConnections sets the maximum number of concurrent connections.
|
||||||
|
// Setting the value to 0 will allow unlimited number of connections.
|
||||||
|
// Should not be changed once you have started calling the pacer.
|
||||||
|
// By default this will be set to fs.Config.Checkers.
|
||||||
|
func (p *Pacer) SetMaxConnections(n int) *Pacer {
|
||||||
|
p.mu.Lock()
|
||||||
|
defer p.mu.Unlock()
|
||||||
|
p.maxConnections = n
|
||||||
|
if n <= 0 {
|
||||||
|
p.connTokens = nil
|
||||||
|
} else {
|
||||||
|
p.connTokens = make(chan struct{}, n)
|
||||||
|
for i := 0; i < n; i++ {
|
||||||
|
p.connTokens <- struct{}{}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return p
|
||||||
|
}
|
||||||
|
|
||||||
// SetDecayConstant sets the decay constant for the pacer
|
// SetDecayConstant sets the decay constant for the pacer
|
||||||
//
|
//
|
||||||
// This is the speed the time falls back to the minimum after errors
|
// This is the speed the time falls back to the minimum after errors
|
||||||
|
@ -91,6 +112,9 @@ func (p *Pacer) beginCall() {
|
||||||
// Ticker more accurately, but then we'd have to work out how
|
// Ticker more accurately, but then we'd have to work out how
|
||||||
// not to run it when it wasn't needed
|
// not to run it when it wasn't needed
|
||||||
<-p.pacer
|
<-p.pacer
|
||||||
|
if p.maxConnections > 0 {
|
||||||
|
<-p.connTokens
|
||||||
|
}
|
||||||
|
|
||||||
p.mu.Lock()
|
p.mu.Lock()
|
||||||
// Restart the timer
|
// Restart the timer
|
||||||
|
@ -107,6 +131,9 @@ func (p *Pacer) beginCall() {
|
||||||
// Refresh the pace given an error that was returned. It returns a
|
// Refresh the pace given an error that was returned. It returns a
|
||||||
// boolean as to whether the operation should be retried.
|
// boolean as to whether the operation should be retried.
|
||||||
func (p *Pacer) endCall(again bool) {
|
func (p *Pacer) endCall(again bool) {
|
||||||
|
if p.maxConnections > 0 {
|
||||||
|
p.connTokens <- struct{}{}
|
||||||
|
}
|
||||||
p.mu.Lock()
|
p.mu.Lock()
|
||||||
oldSleepTime := p.sleepTime
|
oldSleepTime := p.sleepTime
|
||||||
if again {
|
if again {
|
||||||
|
|
Loading…
Reference in a new issue