-
Notifications
You must be signed in to change notification settings - Fork 76
/
Copy path__init__.py
195 lines (174 loc) · 7.53 KB
/
__init__.py
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
# Copyright 2018 Canonical Ltd.
#
# 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.
"""Collection of utilities to support zaza tests etc."""
import logging
import time
from keystoneauth1.exceptions.connection import ConnectFailure
NEVER_RETRY_EXCEPTIONS = (
AssertionError,
AttributeError,
ImportError,
IndexError,
KeyError,
NotImplementedError,
OverflowError,
RecursionError,
ReferenceError,
RuntimeError,
SyntaxError,
IndentationError,
SystemExit,
TypeError,
UnicodeError,
ZeroDivisionError,
)
class ObjectRetrierWraps(object):
"""An automatic retrier for an object.
This is designed to be used with an instance of an object. Basically, it
wraps the object and any attributes that are fetched. Essentially, it is
used to provide retries on method calls on openstack client objects in
tests to increase robustness of tests.
Although, technically this is bad, retries can be logged with the optional
log method.
Usage:
# get a client that does 3 retries, waits 5 seconds between retries and
# retries on any error.
some_client = ObjectRetrierWraps(get_some_client)
# this gets retried up to 3 times.
things = some_client.list_things()
Note, it is quite simple. It wraps the object and on a getattr(obj, name)
it finds the name and then returns a wrapped version of that name. On a
call, it returns the value of that call. It only wraps objects in the
chain that are either callable or have a __getattr__() method. i.e. one
that can then be retried or further fetched. This means that if a.b.c() is
a chain of objects, and we just wrap 'a', then 'b' and 'c' will both be
wrapped that the 'c' object __call__() method will be the one that is
actually retried.
Note: this means that properties that do method calls won't be retried.
This is a limitation that may be addressed in the future, if it is needed.
"""
def __init__(self, obj, num_retries=3, initial_interval=5.0, backoff=1.0,
max_interval=15.0, total_wait=30.0, retry_exceptions=None,
log=None):
"""Initialise the retrier object.
:param obj: The object to wrap. Ought to be an instance of something
that you want to get methods on to call or be called itself.
:type obj: Any
:param num_retries: The (maximum) number of retries. May not be hit if
the total_wait time is exceeded.
:type num_retries: int
:param initial_interval: The initial or starting interval between
retries.
:type initial_interval: float
:param backoff: The exponential backoff multiple. 1 is linear.
:type backoff: float
:param max_interval: The maximum interval between retries.
If backoff is >1 then the initial_interval will never grow larger
than max_interval.
:type max_interval: float
:param retry_exceptions: The list of exceptions to retry on, or None.
If a list, then it will only retry if the exception is one of the
ones in the list.
:type retry_exceptions: List[Exception]
:param log: If False, disable logging; if None (the default) or True,
use logging.warn; otherwise use the passed param `log`.
:type param: None | Boolean | Callable
"""
# Note we use semi-private variable names that shouldn't clash with any
# on the actual object.
self.__obj = obj
if log in (None, True):
_log = logging.warning
elif log is False:
_log = lambda *_, **__: None # noqa
else:
_log = log
self.__kwargs = {
'num_retries': num_retries,
'initial_interval': initial_interval,
'backoff': backoff,
'max_interval': max_interval,
'total_wait': total_wait,
'retry_exceptions': retry_exceptions,
'log': _log,
}
_log(f"ObjectRetrierWraps: wrapping {self.__obj}")
def __getattr__(self, name):
"""Get attribute; delegates to wrapped object."""
obj = self.__obj
attr = getattr(obj, name)
if callable(attr):
return ObjectRetrierWraps(attr, **self.__kwargs)
if attr.__class__.__module__ == 'builtins':
return attr
return ObjectRetrierWraps(attr, **self.__kwargs)
def __call__(self, *args, **kwargs):
"""Call the object; delegates to the wrapped object."""
obj = self.__obj
retry = 0
wait = self.__kwargs['initial_interval']
max_interval = self.__kwargs['max_interval']
log = self.__kwargs['log']
backoff = self.__kwargs['backoff']
total_wait = self.__kwargs['total_wait']
num_retries = self.__kwargs['num_retries']
retry_exceptions = self.__kwargs['retry_exceptions']
wait_so_far = 0
while True:
try:
return obj(*args, **kwargs)
except Exception as e:
# if retry_exceptions is not None, or the type of the exception
# is not in the list of retries, then raise an exception
# immediately. This means that if retry_exceptions is None,
# then the method is always retried.
if isinstance(e, NEVER_RETRY_EXCEPTIONS):
log("ObjectRetrierWraps: error {} is never caught; raising"
.format(str(e)))
raise
if (retry_exceptions is not None and
type(e) not in retry_exceptions):
raise
retry += 1
if retry > num_retries:
log("ObjectRetrierWraps: exceeded number of retries, "
"so erroring out")
raise e
log("ObjectRetrierWraps: call failed: retrying in {} "
"seconds" .format(wait))
time.sleep(wait)
wait_so_far += wait
if wait_so_far >= total_wait:
raise e
wait = wait * backoff
if wait > max_interval:
wait = max_interval
def retry_on_connect_failure(client, **kwargs):
"""Retry an object that eventually gets resolved to a call.
Specifically, this uses ObjectRetrierWraps but only against the
keystoneauth1.exceptions.connection.ConnectFailure exeception.
:params client: the object that may throw and exception when called.
:type client: Any
:params **kwargs: the arguments supplied to the ObjectRetrierWraps init
method
:type **kwargs: Dict[Any]
:returns: client wrapped in an ObjectRetrierWraps instance
:rtype: ObjectRetrierWraps[client]
"""
kwcopy = kwargs.copy()
if 'retry_exceptions' not in kwcopy:
kwcopy['retry_exceptions'] = []
if ConnectFailure not in kwcopy['retry_exceptions']:
kwcopy['retry_exceptions'].append(ConnectFailure)
return ObjectRetrierWraps(client, **kwcopy)