summaryrefslogtreecommitdiff
path: root/tests/test_dogpile.py
blob: 55386e04a170a3277e3319aae6d91f218006315c (plain)
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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
from unittest import TestCase
import time
import threading
from dogpile import Dogpile, SyncReaderDogpile, NeedRegenerationException
from dogpile.nameregistry import NameRegistry
import contextlib
import math
import logging
log = logging.getLogger(__name__)

class ConcurrencyTest(TestCase):
    # expiretime, time to create, num usages, time spend using, delay btw usage
    timings = [
        # quick one
        (2, .5, 50, .05, .1),

        # slow creation time
        (5, 2, 50, .1, .1),

    ]

    _assertion_lock = threading.Lock()

    def test_rudimental(self):
        for exp, crt, nu, ut, dt in self.timings:
            self._test_multi(
                10, exp, crt, nu, ut, dt,
            )

    def test_rudimental_slow_write(self):
        self._test_multi(
            10, 2, .5, 50, .05, .1,
            slow_write_time=2
        )

    def test_return_while_in_progress(self):
        self._test_multi(
            10, 5, 2, 50, 1, .1,
            inline_create='get_value'
        )

    def test_rudimental_long_create(self):
        self._test_multi(
            10, 2, 2.5, 50, .05, .1,
        )

    def test_get_value_plus_created_slow_write(self):
        self._test_multi(
            10, 2, .5, 50, .05, .1,
            inline_create='get_value_plus_created',
            slow_write_time=2
        )

    def test_get_value_plus_created_long_create(self):
        self._test_multi(
            10, 2, 2.5, 50, .05, .1,
            inline_create='get_value_plus_created',
        )

    def test_get_value_plus_created_registry_unsafe_cache(self):
        self._test_multi(
            10, 1, .6, 100, .05, .1,
            inline_create='get_value_plus_created',
            cache_expire_time='unsafe'
        )

    def test_get_value_plus_created_registry_safe_cache(self):
        for exp, crt, nu, ut, dt in self.timings:
            self._test_multi(
                10, exp, crt, nu, ut, dt,
                inline_create='get_value_plus_created',
                cache_expire_time='safe'
            )

    def _assert_synchronized(self):
        acq = self._assertion_lock.acquire(False)
        assert acq, "Could not acquire"

        @contextlib.contextmanager
        def go():
            try:
                yield {}
            except:
                raise
            finally:
                self._assertion_lock.release()
        return go()

    def _assert_log(self, cond, msg, *args):
        if cond:
            log.debug(msg, *args)
        else:
            log.error("Assertion failed: " + msg, *args)
            assert False, msg % args

    def _test_multi(self, num_threads, 
                            expiretime, 
                            creation_time,
                            num_usages, 
                            usage_time, 
                            delay_time,
                            cache_expire_time=None,
                            slow_write_time=None,
                            inline_create='rudimental'):

        if slow_write_time:
            dogpile_cls = SyncReaderDogpile
        else:
            dogpile_cls = Dogpile

        # the registry feature should not be used
        # unless the value + created time func is used.
        use_registry = inline_create == 'get_value_plus_created'

        if use_registry:
            reg = NameRegistry(dogpile_cls)
            get_dogpile = lambda: reg.get(expiretime)
        else:
            dogpile = dogpile_cls(expiretime)
            get_dogpile = lambda: dogpile

        unsafe_cache = False
        if cache_expire_time:
            if cache_expire_time == 'unsafe':
                unsafe_cache = True
                cache_expire_time = expiretime *.8
            elif cache_expire_time == 'safe':
                cache_expire_time = (expiretime + creation_time) * 1.1
            else:
                assert False, cache_expire_time

            log.info("Cache expire time: %s", cache_expire_time)

            effective_expiretime = min(cache_expire_time, expiretime)
        else:
            effective_expiretime = expiretime

        effective_creation_time= creation_time
        if slow_write_time:
            effective_creation_time += slow_write_time

        max_stale = (effective_expiretime + effective_creation_time + 
                        usage_time + delay_time) * 1.1

        the_resource = []
        slow_waiters = [0]
        failures = [0]

        def create_impl(dogpile):
            log.debug("creating resource...")
            time.sleep(creation_time)

            if slow_write_time:
                with dogpile.acquire_write_lock():
                    saved = list(the_resource)
                    # clear out the resource dict so that
                    # usage threads hitting it will
                    # raise
                    the_resource[:] = []
                    time.sleep(slow_write_time)
                    the_resource[:] = saved
            the_resource.append(time.time())
            return the_resource[-1]

        if inline_create == 'get_value_plus_created':
            def create_resource(dogpile):
                with self._assert_synchronized():
                    value = create_impl(dogpile)
                    return value, time.time()
        else:
            def create_resource(dogpile):
                with self._assert_synchronized():
                    return create_impl(dogpile)

        if cache_expire_time:
            def get_value():
                if not the_resource:
                    raise NeedRegenerationException()
                if time.time() - the_resource[-1] > cache_expire_time:
                    # should never hit a cache invalidation 
                    # if we've set expiretime below the cache 
                    # expire time (assuming a cache which
                    # honors this).
                    self._assert_log(
                        cache_expire_time < expiretime,
                        "Cache expiration hit, cache "
                        "expire time %s, expiretime %s",
                        cache_expire_time,
                        expiretime,
                    )

                    raise NeedRegenerationException()

                if inline_create == 'get_value_plus_created':
                    return the_resource[-1], the_resource[-1]
                else:
                    return the_resource[-1]
        else:
            def get_value():
                if not the_resource:
                    raise NeedRegenerationException()
                if inline_create == 'get_value_plus_created':
                    return the_resource[-1], the_resource[-1]
                else:
                    return the_resource[-1]

        if inline_create == 'rudimental':
            assert not cache_expire_time

            @contextlib.contextmanager
            def enter_dogpile_block(dogpile):
                with dogpile.acquire(lambda: create_resource(dogpile)) as x:
                    yield the_resource[-1]
        elif inline_create == 'get_value':
            @contextlib.contextmanager
            def enter_dogpile_block(dogpile):
                with dogpile.acquire(
                        lambda: create_resource(dogpile), 
                        get_value
                    ) as rec:
                    yield rec
        elif inline_create == 'get_value_plus_created':
            @contextlib.contextmanager
            def enter_dogpile_block(dogpile):
                with dogpile.acquire(
                        lambda: create_resource(dogpile), 
                        value_and_created_fn=get_value
                    ) as rec:
                    yield rec
        else:
            assert False, inline_create


        def use_dogpile():
            try:
                for i in range(num_usages):
                    dogpile = get_dogpile()
                    now = time.time()
                    with enter_dogpile_block(dogpile) as value:
                        waited = time.time() - now
                        if waited > .01:
                            slow_waiters[0] += 1
                        check_value(value, waited)
                        time.sleep(usage_time)
                    time.sleep(delay_time)
            except:
                log.error("thread failed", exc_info=True)
                failures[0] += 1

        def check_value(value, waited):
            assert value

            # time since the current resource was
            # created
            time_since_create = time.time() - value

            self._assert_log(
                time_since_create < max_stale,
                "Time since create %.4f max stale time %s, "
                    "total waited %s",
                time_since_create, max_stale, 
                slow_waiters[0]
            )

        started_at = time.time()
        threads = []
        for i in range(num_threads):
            t = threading.Thread(target=use_dogpile)
            t.start()
            threads.append(t)
        for t in threads:
            t.join()
        actual_run_time = time.time() - started_at

        # time spent starts with num usages * time per usage, with a 10% fudge
        expected_run_time = (num_usages * (usage_time + delay_time)) * 1.1

        expected_generations = math.ceil(expected_run_time / effective_expiretime)

        if unsafe_cache:
            expected_slow_waiters = expected_generations * num_threads
        else:
            expected_slow_waiters = expected_generations + num_threads - 1

        if slow_write_time:
            expected_slow_waiters = num_threads * expected_generations

        # time spent also increments by one wait period in the beginning...
        expected_run_time += effective_creation_time

        # and a fudged version of the periodic waiting time anticipated
        # for a single thread...
        expected_run_time += (expected_slow_waiters * effective_creation_time) / num_threads
        expected_run_time *= 1.1

        log.info("Test Summary")
        log.info("num threads: %s; expiretime: %s; creation_time: %s; "
                "num_usages: %s; "
                "usage_time: %s; delay_time: %s", 
            num_threads, expiretime, creation_time, num_usages, 
            usage_time, delay_time
        )
        log.info("cache expire time: %s; unsafe cache: %s slow "
                "write time: %s; inline: %s; registry: %s", 
            cache_expire_time, unsafe_cache, slow_write_time, 
            inline_create, use_registry)
        log.info("Estimated run time %.2f actual run time %.2f", 
                    expected_run_time, actual_run_time)
        log.info("Effective expiretime (min(cache_exp_time, exptime)) %s", 
                    effective_expiretime)
        log.info("Expected slow waits %s, Total slow waits %s", 
                    expected_slow_waiters, slow_waiters[0])
        log.info("Total generations %s Max generations expected %s" % (
            len(the_resource), expected_generations
        ))

        assert not failures[0], "%s failures occurred" % failures[0]
        assert actual_run_time <= expected_run_time

        assert slow_waiters[0] <= expected_slow_waiters, \
            "Number of slow waiters %s exceeds expected slow waiters %s" % (
                slow_waiters[0],
                expected_slow_waiters
            )
        assert len(the_resource) <= expected_generations,\
            "Number of resource generations %d exceeded "\
            "expected %d" % (len(the_resource), 
                expected_generations)

class DogpileTest(TestCase):
    def test_single_create(self):
        dogpile = Dogpile(2)
        the_resource = [0]

        def create_resource():
            the_resource[0] += 1

        with dogpile.acquire(create_resource):
            assert the_resource[0] == 1

        with dogpile.acquire(create_resource):
            assert the_resource[0] == 1

        time.sleep(2)
        with dogpile.acquire(create_resource):
            assert the_resource[0] == 2

        with dogpile.acquire(create_resource):
            assert the_resource[0] == 2

    def test_no_expiration(self):
        dogpile = Dogpile(None)
        the_resource = [0]

        def create_resource():
            the_resource[0] += 1

        with dogpile.acquire(create_resource):
            assert the_resource[0] == 1

        with dogpile.acquire(create_resource):
            assert the_resource[0] == 1