-
Notifications
You must be signed in to change notification settings - Fork 114
/
Copy pathcontroller_with_too_many_client_handling.go
165 lines (143 loc) · 4.63 KB
/
controller_with_too_many_client_handling.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
package ledger
import (
"context"
"database/sql"
"errors"
"github.com/formancehq/go-libs/v2/platform/postgres"
ledger "github.com/formancehq/ledger/internal"
"go.opentelemetry.io/otel/attribute"
"go.opentelemetry.io/otel/trace"
"time"
)
//go:generate mockgen -write_source_comment=false -write_package_comment=false -source controller_with_too_many_client_handling.go -destination controller_with_too_many_client_handling_generated_test.go -package ledger . DelayCalculator -typed
type DelayCalculator interface {
Next(int) time.Duration
}
type DelayCalculatorFn func(int) time.Duration
func (fn DelayCalculatorFn) Next(iteration int) time.Duration {
return fn(iteration)
}
type ControllerWithTooManyClientHandling struct {
Controller
delayCalculator DelayCalculator
tracer trace.Tracer
}
func NewControllerWithTooManyClientHandling(
underlying Controller,
tracer trace.Tracer,
delayCalculator DelayCalculator,
) *ControllerWithTooManyClientHandling {
return &ControllerWithTooManyClientHandling{
Controller: underlying,
delayCalculator: delayCalculator,
tracer: tracer,
}
}
func (c *ControllerWithTooManyClientHandling) CreateTransaction(ctx context.Context, parameters Parameters[RunScript]) (*ledger.Log, *ledger.CreatedTransaction, error) {
var (
log *ledger.Log
createdTransaction *ledger.CreatedTransaction
err error
)
err = handleRetry(ctx, c.tracer, c.delayCalculator, func(ctx context.Context) error {
log, createdTransaction, err = c.Controller.CreateTransaction(ctx, parameters)
return err
})
return log, createdTransaction, err
}
func (c *ControllerWithTooManyClientHandling) RevertTransaction(ctx context.Context, parameters Parameters[RevertTransaction]) (*ledger.Log, *ledger.RevertedTransaction, error) {
var (
log *ledger.Log
revertedTransaction *ledger.RevertedTransaction
err error
)
err = handleRetry(ctx, c.tracer, c.delayCalculator, func(ctx context.Context) error {
log, revertedTransaction, err = c.Controller.RevertTransaction(ctx, parameters)
return err
})
return log, revertedTransaction, err
}
func (c *ControllerWithTooManyClientHandling) SaveTransactionMetadata(ctx context.Context, parameters Parameters[SaveTransactionMetadata]) (*ledger.Log, error) {
var (
log *ledger.Log
err error
)
err = handleRetry(ctx, c.tracer, c.delayCalculator, func(ctx context.Context) error {
log, err = c.Controller.SaveTransactionMetadata(ctx, parameters)
return err
})
return log, err
}
func (c *ControllerWithTooManyClientHandling) SaveAccountMetadata(ctx context.Context, parameters Parameters[SaveAccountMetadata]) (*ledger.Log, error) {
var (
log *ledger.Log
err error
)
err = handleRetry(ctx, c.tracer, c.delayCalculator, func(ctx context.Context) error {
log, err = c.Controller.SaveAccountMetadata(ctx, parameters)
return err
})
return log, err
}
func (c *ControllerWithTooManyClientHandling) DeleteTransactionMetadata(ctx context.Context, parameters Parameters[DeleteTransactionMetadata]) (*ledger.Log, error) {
var (
log *ledger.Log
err error
)
err = handleRetry(ctx, c.tracer, c.delayCalculator, func(ctx context.Context) error {
log, err = c.Controller.DeleteTransactionMetadata(ctx, parameters)
return err
})
return log, err
}
func (c *ControllerWithTooManyClientHandling) DeleteAccountMetadata(ctx context.Context, parameters Parameters[DeleteAccountMetadata]) (*ledger.Log, error) {
var (
log *ledger.Log
err error
)
err = handleRetry(ctx, c.tracer, c.delayCalculator, func(ctx context.Context) error {
log, err = c.Controller.DeleteAccountMetadata(ctx, parameters)
return err
})
return log, err
}
func (c *ControllerWithTooManyClientHandling) BeginTX(ctx context.Context, options *sql.TxOptions) (Controller, error) {
ctrl, err := c.Controller.BeginTX(ctx, options)
if err != nil {
return nil, err
}
return &ControllerWithTooManyClientHandling{
Controller: ctrl,
delayCalculator: c.delayCalculator,
tracer: c.tracer,
}, nil
}
var _ Controller = (*ControllerWithTooManyClientHandling)(nil)
func handleRetry(
ctx context.Context,
tracer trace.Tracer,
delayCalculator DelayCalculator,
fn func(ctx context.Context) error,
) error {
ctx, span := tracer.Start(ctx, "TooManyClientRetrier")
defer span.End()
count := 0
for {
err := fn(ctx)
if err != nil && errors.Is(err, postgres.ErrTooManyClient{}) {
delay := delayCalculator.Next(count)
if delay == 0 {
return err
}
select {
case <-ctx.Done():
return ctx.Err()
case <-time.After(delay):
count++
span.SetAttributes(attribute.Int("retry", count))
continue
}
}
return err
}
}