summaryrefslogtreecommitdiff
path: root/zuul/zk/zkobject.py
blob: e7fc33d95880bdfc47741744757736ce5f967978 (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
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
# Copyright 2021 Acme Gating, LLC
#
# 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.

import contextlib
import json
import time
import types
import zlib

from kazoo.exceptions import (
    KazooException, NodeExistsError, NoNodeError, ZookeeperError)

from zuul.zk import sharding
from zuul.zk.exceptions import InvalidObjectError


class ZKContext:
    def __init__(self, zk_client, lock, stop_event, log):
        self.client = zk_client.client
        self.lock = lock
        self.stop_event = stop_event
        self.log = log
        self.cumulative_read_time = 0.0
        self.cumulative_write_time = 0.0
        self.cumulative_read_objects = 0
        self.cumulative_write_objects = 0
        self.cumulative_read_znodes = 0
        self.cumulative_write_znodes = 0
        self.cumulative_read_bytes = 0
        self.cumulative_write_bytes = 0

    def sessionIsValid(self):
        return ((not self.lock or self.lock.is_still_valid()) and
                (not self.stop_event or not self.stop_event.is_set()))


class LocalZKContext:
    """A Local ZKContext that means don't actually write anything to ZK"""

    def __init__(self, log):
        self.client = None
        self.lock = None
        self.stop_event = None
        self.log = log

    def sessionIsValid(self):
        return True


class ZKObject:
    _retry_interval = 5
    _zkobject_compressed_size = 0
    _zkobject_uncompressed_size = 0

    # Implementations of these two methods are required
    def getPath(self):
        """Return the path to save this object in ZK

        :returns: A string representation of the Znode path
        """
        raise NotImplementedError()

    def serialize(self, context):
        """Implement this method to return the data to save in ZK.

        :returns: A byte string
        """
        raise NotImplementedError()

    # This should work for most classes
    def deserialize(self, data, context):
        """Implement this method to convert serialized data into object
        attributes.

        :param bytes data: A byte string to deserialize
        :param ZKContext context: A ZKContext object with the current
            ZK session and lock.

        :returns: A dictionary of attributes and values to be set on
        the object.
        """
        return json.loads(data.decode('utf-8'))

    # These methods are public and shouldn't need to be overridden
    def updateAttributes(self, context, **kw):
        """Update attributes on this object and save to ZooKeeper

        Instead of using attribute assignment, call this method to
        update attributes on this object.  It will update the local
        values and also write out the updated object to ZooKeeper.

        :param ZKContext context: A ZKContext object with the current
            ZK session and lock.  Be sure to acquire the lock before
            calling methods on this object.  This object will validate
            that the lock is still valid before writing to ZooKeeper.

        All other parameters are keyword arguments which are
        attributes to be set.  Set as many attributes in one method
        call as possible for efficient network use.
        """
        old = self.__dict__.copy()
        self._set(**kw)
        serial = self._trySerialize(context)
        if hash(serial) != getattr(self, '_zkobject_hash', None):
            try:
                self._save(context, serial)
            except Exception:
                # Roll back our old values if we aren't able to update ZK.
                self._set(**old)
                raise

    @contextlib.contextmanager
    def activeContext(self, context):
        if self._active_context:
            raise RuntimeError(
                f"Another context is already active {self._active_context}")
        try:
            old = self.__dict__.copy()
            self._set(_active_context=context)
            yield
            serial = self._trySerialize(context)
            if hash(serial) != getattr(self, '_zkobject_hash', None):
                try:
                    self._save(context, serial)
                except Exception:
                    # Roll back our old values if we aren't able to update ZK.
                    self._set(**old)
                    raise
        finally:
            self._set(_active_context=None)

    @classmethod
    def new(klass, context, **kw):
        """Create a new instance and save it in ZooKeeper"""
        obj = klass()
        obj._set(**kw)
        data = obj._trySerialize(context)
        obj._save(context, data, create=True)
        return obj

    @classmethod
    def fromZK(klass, context, path, **kw):
        """Instantiate a new object from data in ZK"""
        obj = klass()
        obj._set(**kw)
        obj._load(context, path=path)
        return obj

    def refresh(self, context):
        """Update data from ZK"""
        self._load(context)

    def _trySerialize(self, context):
        if isinstance(context, LocalZKContext):
            return b''
        try:
            return self.serialize(context)
        except Exception:
            # A higher level must handle this exception, but log
            # ourself here so we know what object triggered it.
            context.log.error(
                "Exception serializing ZKObject %s", self)
            raise

    def delete(self, context):
        path = self.getPath()
        while context.sessionIsValid():
            try:
                context.client.delete(path, recursive=True)
                return
            except ZookeeperError:
                # These errors come from the server and are not
                # retryable.  Connection errors are KazooExceptions so
                # they aren't caught here and we will retry.
                context.log.error(
                    "Exception deleting ZKObject %s at %s", self, path)
                raise
            except KazooException:
                context.log.exception(
                    "Exception deleting ZKObject %s, will retry", self)
                time.sleep(self._retry_interval)
        raise Exception("ZooKeeper session or lock not valid")

    def estimateDataSize(self, seen=None):
        """Attempt to find all ZKObjects below this one and sum their
        compressed and uncompressed sizes.

        :returns: (compressed_size, uncompressed_size)
        """
        compressed_size = self._zkobject_compressed_size
        uncompressed_size = self._zkobject_uncompressed_size

        if seen is None:
            seen = {self}

        def walk(obj):
            compressed = 0
            uncompressed = 0
            if isinstance(obj, ZKObject):
                if obj in seen:
                    return 0, 0
                seen.add(obj)
                compressed, uncompressed = obj.estimateDataSize(seen)
            elif (isinstance(obj, dict) or
                  isinstance(obj, types.MappingProxyType)):
                for sub in obj.values():
                    c, u = walk(sub)
                    compressed += c
                    uncompressed += u
            elif (isinstance(obj, list) or
                  isinstance(obj, tuple)):
                for sub in obj:
                    c, u = walk(sub)
                    compressed += c
                    uncompressed += u
            return compressed, uncompressed

        c, u = walk(self.__dict__)
        compressed_size += c
        uncompressed_size += u

        return (compressed_size, uncompressed_size)

    # Private methods below

    def __init__(self):
        # Don't support any arguments in constructor to force us to go
        # through a save or restore path.
        super().__init__()
        self._set(_active_context=None)

    def _load(self, context, path=None):
        if path is None:
            path = self.getPath()
        while context.sessionIsValid():
            try:
                start = time.perf_counter()
                compressed_data, zstat = context.client.get(path)
                context.cumulative_read_time += time.perf_counter() - start
                context.cumulative_read_objects += 1
                context.cumulative_read_znodes += 1
                context.cumulative_read_bytes += len(compressed_data)

                self._set(_zkobject_hash=None)
                try:
                    data = zlib.decompress(compressed_data)
                except zlib.error:
                    # Fallback for old, uncompressed data
                    data = compressed_data
                self._set(**self.deserialize(data, context))
                self._set(_zstat=zstat,
                          _zkobject_hash=hash(data),
                          _zkobject_compressed_size=len(compressed_data),
                          _zkobject_uncompressed_size=len(data),
                          )
                return
            except ZookeeperError:
                # These errors come from the server and are not
                # retryable.  Connection errors are KazooExceptions so
                # they aren't caught here and we will retry.
                context.log.error(
                    "Exception loading ZKObject %s at %s", self, path)
                raise
            except KazooException:
                context.log.exception(
                    "Exception loading ZKObject %s at %s, will retry",
                    self, path)
                time.sleep(5)
            except Exception:
                # A higher level must handle this exception, but log
                # ourself here so we know what object triggered it.
                context.log.error(
                    "Exception loading ZKObject %s at %s", self, path)
                raise
        raise Exception("ZooKeeper session or lock not valid")

    def _save(self, context, data, create=False):
        if isinstance(context, LocalZKContext):
            return
        path = self.getPath()
        while context.sessionIsValid():
            try:
                compressed_data = zlib.compress(data)
                start = time.perf_counter()
                if create:
                    real_path, zstat = context.client.create(
                        path, compressed_data, makepath=True,
                        include_data=True)
                else:
                    zstat = context.client.set(path, compressed_data,
                                               version=self._zstat.version)
                context.cumulative_write_time += time.perf_counter() - start
                context.cumulative_write_objects += 1
                context.cumulative_write_znodes += 1
                context.cumulative_write_bytes += len(compressed_data)

                self._set(_zstat=zstat,
                          _zkobject_hash=hash(data),
                          _zkobject_compressed_size=len(compressed_data),
                          _zkobject_uncompressed_size=len(data),
                          )
                return
            except ZookeeperError:
                # These errors come from the server and are not
                # retryable.  Connection errors are KazooExceptions so
                # they aren't caught here and we will retry.
                context.log.error(
                    "Exception saving ZKObject %s at %s", self, path)
                raise
            except KazooException:
                context.log.exception(
                    "Exception saving ZKObject %s at %s, will retry",
                    self, path)
                time.sleep(self._retry_interval)
        raise Exception("ZooKeeper session or lock not valid")

    def __setattr__(self, name, value):
        if self._active_context:
            super().__setattr__(name, value)
        else:
            raise Exception("Unable to modify ZKObject %s" %
                            (repr(self),))

    def _set(self, **kw):
        for name, value in kw.items():
            super().__setattr__(name, value)


class ShardedZKObject(ZKObject):
    # If the node exists when we create we normally error, unless this
    # is set, in which case we proceed and truncate.
    truncate_on_create = False
    # Normally we delete nodes which have syntax errors, but the
    # pipeline summary is read without a write lock, so those are
    # expected.  Don't delete them in that case.
    delete_on_error = True

    def _load(self, context, path=None):
        if path is None:
            path = self.getPath()
        while context.sessionIsValid():
            try:
                self._set(_zkobject_hash=None)
                with sharding.BufferedShardReader(
                        context.client, path) as stream:
                    data = stream.read()
                    compressed_size = stream.compressed_bytes_read
                    context.cumulative_read_time += \
                        stream.cumulative_read_time
                    context.cumulative_read_objects += 1
                    context.cumulative_read_znodes += \
                        stream.znodes_read
                    context.cumulative_read_bytes += compressed_size

                if not data and context.client.exists(path) is None:
                    raise NoNodeError
                self._set(**self.deserialize(data, context))
                self._set(_zkobject_hash=hash(data),
                          _zkobject_compressed_size=compressed_size,
                          _zkobject_uncompressed_size=len(data),
                          )
                return
            except ZookeeperError:
                # These errors come from the server and are not
                # retryable.  Connection errors are KazooExceptions so
                # they aren't caught here and we will retry.
                context.log.error(
                    "Exception loading ZKObject %s at %s", self, path)
                raise
            except KazooException:
                context.log.exception(
                    "Exception loading ZKObject %s at %s, will retry",
                    self, path)
                time.sleep(5)
            except Exception as exc:
                # A higher level must handle this exception, but log
                # ourself here so we know what object triggered it.
                context.log.error(
                    "Exception loading ZKObject %s at %s", self, path)
                if self.delete_on_error:
                    self.delete(context)
                raise InvalidObjectError from exc
        raise Exception("ZooKeeper session or lock not valid")

    def _save(self, context, data, create=False):
        if isinstance(context, LocalZKContext):
            return
        path = self.getPath()
        while context.sessionIsValid():
            try:
                if (create and
                    not self.truncate_on_create and
                    context.client.exists(path) is not None):
                    raise NodeExistsError
                with sharding.BufferedShardWriter(
                        context.client, path) as stream:
                    stream.truncate(0)
                    stream.write(data)
                    stream.flush()
                    compressed_size = stream.compressed_bytes_written
                    context.cumulative_write_time += \
                        stream.cumulative_write_time
                    context.cumulative_write_objects += 1
                    context.cumulative_write_znodes += \
                        stream.znodes_written
                    context.cumulative_write_bytes += compressed_size

                self._set(_zkobject_hash=hash(data),
                          _zkobject_compressed_size=compressed_size,
                          _zkobject_uncompressed_size=len(data),
                          )
                return
            except ZookeeperError:
                # These errors come from the server and are not
                # retryable.  Connection errors are KazooExceptions so
                # they aren't caught here and we will retry.
                context.log.error(
                    "Exception saving ZKObject %s at %s", self, path)
                raise
            except KazooException:
                context.log.exception(
                    "Exception saving ZKObject %s at %s, will retry",
                    self, path)
                time.sleep(self._retry_interval)
        raise Exception("ZooKeeper session or lock not valid")