forked from neo4j/neo4j-go-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
retry.go
96 lines (81 loc) · 2.51 KB
/
retry.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/*
* Copyright (c) 2002-2019 "Neo4j,"
* Neo4j Sweden AB [http://neo4j.com]
*
* This file is part of Neo4j.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package neo4j
import (
"math/rand"
"strings"
"time"
)
type retryLogic struct {
logging Logging
initialRetryDelay time.Duration
maxRetryTime time.Duration
delayMultiplier float64
delayJitter float64
}
func newRetryLogic(config *Config) *retryLogic {
return &retryLogic{
logging: config.Log,
initialRetryDelay: 1 * time.Second,
maxRetryTime: config.MaxTransactionRetryTime,
delayMultiplier: 2.0,
delayJitter: 0.2,
}
}
func computeDelayWithJitter(logic *retryLogic, delay time.Duration) time.Duration {
jitter := time.Duration(float64(delay) * logic.delayJitter)
nextDelay := delay - jitter + time.Duration(2*float64(jitter)*rand.Float64())
return nextDelay
}
func (logic *retryLogic) retry(work func() (interface{}, string, error)) (interface{}, error) {
var result interface{}
count := 0
result = nil
id := "unknown"
err := error(nil)
suppressedErrors := make([]string, 0)
startTime := time.Time{}
nextDelay := logic.initialRetryDelay
for true {
count++
result, id, err = work()
if err == nil {
return result, nil
}
if isRetriableError(err) {
suppressedErrors = append(suppressedErrors, err.Error())
if startTime.IsZero() {
startTime = time.Now()
}
elapsed := time.Since(startTime)
if elapsed < logic.maxRetryTime {
delayWithJitter := computeDelayWithJitter(logic, nextDelay)
warningf(logic.logging, "[%s]: retryable operation failed to complete [error: %s] and will be retried in %dms", id, err.Error(), delayWithJitter.Nanoseconds()/int64(time.Millisecond))
time.Sleep(delayWithJitter)
nextDelay = delayWithJitter
continue
}
}
break
}
if count == 1 {
return nil, err
}
return nil, newDriverError("[%s]: retryable operation failed to complete after %d tries, suppressed errors: [%s]", id, count, strings.Join(suppressedErrors, ", "))
}