-
Notifications
You must be signed in to change notification settings - Fork 905
/
Copy pathschema_registry_client.py
1802 lines (1371 loc) · 62.7 KB
/
schema_registry_client.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
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
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright 2020 Confluent Inc.
#
# 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 json
import logging
import random
import time
import urllib
from urllib.parse import unquote, urlparse
import httpx
from attrs import define as _attrs_define
from attrs import field as _attrs_field
from collections import defaultdict
from enum import Enum
from threading import Lock
from typing import List, Dict, Type, TypeVar, \
cast, Optional, Union, Any, Tuple
from cachetools import TTLCache, LRUCache
from httpx import Response
from .error import SchemaRegistryError
# TODO: consider adding `six` dependency or employing a compat file
# Python 2.7 is officially EOL so compatibility issue will be come more the norm.
# We need a better way to handle these issues.
# Six is one possibility but the compat file pattern used by requests
# is also quite nice.
#
# six: https://pypi.org/project/six/
# compat file : https://github.com/psf/requests/blob/master/requests/compat.py
try:
string_type = basestring # noqa
def _urlencode(value: str) -> str:
return urllib.quote(value, safe='')
except NameError:
string_type = str
def _urlencode(value: str) -> str:
return urllib.parse.quote(value, safe='')
log = logging.getLogger(__name__)
VALID_AUTH_PROVIDERS = ['URL', 'USER_INFO']
class _BaseRestClient(object):
def __init__(self, conf: dict):
# copy dict to avoid mutating the original
conf_copy = conf.copy()
base_url = conf_copy.pop('url', None)
if base_url is None:
raise ValueError("Missing required configuration property url")
if not isinstance(base_url, string_type):
raise TypeError("url must be a str, not " + str(type(base_url)))
base_urls = []
for url in base_url.split(','):
url = url.strip().rstrip('/')
if not url.startswith('http') and not url.startswith('mock'):
raise ValueError("Invalid url {}".format(url))
base_urls.append(url)
if not base_urls:
raise ValueError("Missing required configuration property url")
self.base_urls = base_urls
self.verify = True
ca = conf_copy.pop('ssl.ca.location', None)
if ca is not None:
self.verify = ca
key: Optional[str] = conf_copy.pop('ssl.key.location', None)
client_cert: Optional[str] = conf_copy.pop('ssl.certificate.location', None)
self.cert: Union[str, Tuple[str, str], None] = None
if client_cert is not None and key is not None:
self.cert = (client_cert, key)
if client_cert is not None and key is None:
self.cert = client_cert
if key is not None and client_cert is None:
raise ValueError("ssl.certificate.location required when"
" configuring ssl.key.location")
parsed = urlparse(self.base_urls[0])
try:
userinfo = (unquote(parsed.username), unquote(parsed.password))
except (AttributeError, TypeError):
userinfo = ("", "")
if 'basic.auth.user.info' in conf_copy:
if userinfo != ('', ''):
raise ValueError("basic.auth.user.info configured with"
" userinfo credentials in the URL."
" Remove userinfo credentials from the url or"
" remove basic.auth.user.info from the"
" configuration")
userinfo = tuple(conf_copy.pop('basic.auth.user.info', '').split(':', 1))
if len(userinfo) != 2:
raise ValueError("basic.auth.user.info must be in the form"
" of {username}:{password}")
self.auth = userinfo if userinfo != ('', '') else None
# The following adds support for proxy config
# If specified: it uses the specified proxy details when making requests
self.proxy = None
proxy = conf_copy.pop('proxy', None)
if proxy is not None:
self.proxy = proxy
self.timeout = None
timeout = conf_copy.pop('timeout', None)
if timeout is not None:
self.timeout = timeout
self.cache_capacity = 1000
cache_capacity = conf_copy.pop('cache.capacity', None)
if cache_capacity is not None:
if not isinstance(cache_capacity, (int, float)):
raise TypeError("cache.capacity must be a number, not " + str(type(cache_capacity)))
self.cache_capacity = cache_capacity
self.cache_latest_ttl_sec = None
cache_latest_ttl_sec = conf_copy.pop('cache.latest.ttl.sec', None)
if cache_latest_ttl_sec is not None:
if not isinstance(cache_latest_ttl_sec, (int, float)):
raise TypeError("cache.latest.ttl.sec must be a number, not " + str(type(cache_latest_ttl_sec)))
self.cache_latest_ttl_sec = cache_latest_ttl_sec
self.max_retries = 3
max_retries = conf_copy.pop('max.retries', None)
if max_retries is not None:
if not isinstance(timeout, (int, float)):
raise TypeError("max.retries must be a number, not " + str(type(max_retries)))
self.max_retries = max_retries
self.retries_wait_ms = 1000
retries_wait_ms = conf_copy.pop('retries.wait.ms', None)
if retries_wait_ms is not None:
if not isinstance(retries_wait_ms, (int, float)):
raise TypeError("retries.wait.ms must be a number, not "
+ str(type(retries_wait_ms)))
self.retries_wait_ms = retries_wait_ms
self.retries_max_wait_ms = 20000
retries_max_wait_ms = conf_copy.pop('retries.max.wait.ms', None)
if retries_max_wait_ms is not None:
if not isinstance(retries_max_wait_ms, (int, float)):
raise TypeError("retries.max.wait.ms must be a number, not "
+ str(type(retries_max_wait_ms)))
self.retries_max_wait_ms = retries_max_wait_ms
# Any leftover keys are unknown to _RestClient
if len(conf_copy) > 0:
raise ValueError("Unrecognized properties: {}"
.format(", ".join(conf_copy.keys())))
def get(self, url: str, query: dict = None) -> Any:
raise NotImplementedError()
def post(self, url: str, body: dict, **kwargs) -> Any:
raise NotImplementedError()
def delete(self, url: str) -> Any:
raise NotImplementedError()
def put(self, url: str, body: dict = None) -> Any:
raise NotImplementedError()
class _RestClient(_BaseRestClient):
"""
HTTP client for Confluent Schema Registry.
See SchemaRegistryClient for configuration details.
Args:
conf (dict): Dictionary containing _RestClient configuration
"""
def __init__(self, conf: dict):
super().__init__(conf)
self.session = httpx.Client(
verify=self.verify,
cert=self.cert,
auth=self.auth,
proxy=self.proxy,
timeout=self.timeout
)
def get(self, url: str, query: dict = None) -> Any:
return self.send_request(url, method='GET', query=query)
def post(self, url: str, body: dict, **kwargs) -> Any:
return self.send_request(url, method='POST', body=body)
def delete(self, url: str) -> Any:
return self.send_request(url, method='DELETE')
def put(self, url: str, body: dict = None) -> Any:
return self.send_request(url, method='PUT', body=body)
def send_request(
self, url: str, method: str, body: dict = None,
query: dict = None
) -> Any:
"""
Sends HTTP request to the SchemaRegistry, trying each base URL in turn.
All unsuccessful attempts will raise a SchemaRegistryError with the
response contents. In most cases this will be accompanied by a
Schema Registry supplied error code.
In the event the response is malformed an error_code of -1 will be used.
Args:
url (str): Request path
method (str): HTTP method
body (str): Request content
query (dict): Query params to attach to the URL
Returns:
dict: Schema Registry response content.
"""
headers = {'Accept': "application/vnd.schemaregistry.v1+json,"
" application/vnd.schemaregistry+json,"
" application/json"}
if body is not None:
body = json.dumps(body)
headers = {'Content-Length': str(len(body)),
'Content-Type': "application/vnd.schemaregistry.v1+json"}
response = None
for i, base_url in enumerate(self.base_urls):
try:
response = self.send_http_request(
base_url, url, method, headers, body, query)
if is_success(response.status_code):
return response.json()
if not is_retriable(response.status_code) or i == len(self.base_urls) - 1:
break
except Exception as e:
if i == len(self.base_urls) - 1:
# Raise the exception since we have no more urls to try
raise e
try:
raise SchemaRegistryError(response.status_code,
response.json().get('error_code'),
response.json().get('message'))
# Schema Registry may return malformed output when it hits unexpected errors
except (ValueError, KeyError, AttributeError):
raise SchemaRegistryError(response.status_code,
-1,
"Unknown Schema Registry Error: "
+ str(response.content))
def send_http_request(
self, base_url: str, url: str, method: str, headers: dict,
body: Optional[str] = None, query: dict = None
) -> Response:
"""
Sends HTTP request to the SchemaRegistry.
All unsuccessful attempts will raise a SchemaRegistryError with the
response contents. In most cases this will be accompanied by a
Schema Registry supplied error code.
In the event the response is malformed an error_code of -1 will be used.
Args:
base_url (str): Schema Registry base URL
url (str): Request path
method (str): HTTP method
headers (dict): Headers
body (str): Request content
query (dict): Query params to attach to the URL
Returns:
Response: Schema Registry response content.
"""
for i in range(self.max_retries + 1):
response = self.session.request(
method, url="/".join([base_url, url]),
headers=headers, data=body, params=query)
if is_success(response.status_code):
return response
if not is_retriable(response.status_code) or i >= self.max_retries:
return response
time.sleep(full_jitter(self.retries_wait_ms, self.retries_max_wait_ms, i) / 1000)
def is_success(status_code: int) -> bool:
return 200 <= status_code <= 299
def is_retriable(status_code: int) -> bool:
return status_code in (408, 429, 500, 502, 503, 504)
def full_jitter(base_delay_ms: int, max_delay_ms: int, retries_attempted: int) -> float:
no_jitter_delay = base_delay_ms * (2.0 ** retries_attempted)
return random.random() * min(no_jitter_delay, max_delay_ms)
class _SchemaCache(object):
"""
Thread-safe cache for use with the Schema Registry Client.
This cache may be used to retrieve schema ids, schemas or to check
known subject membership.
"""
def __init__(self):
self.lock = Lock()
self.schemaid_index = {}
self.schema_index = {}
self.schema_id_index = defaultdict(dict)
self.schema_index = defaultdict(dict)
self.rs_id_index = defaultdict(dict)
self.rs_version_index = defaultdict(dict)
self.rs_schema_index = defaultdict(dict)
def set_schema(self, subject: str, schema_id: int, schema: 'Schema'):
"""
Add a Schema identified by schema_id to the cache.
Args:
subject (str): The subject this schema is associated with
schema_id (int): Schema's registration id
schema (Schema): Schema instance
"""
with self.lock:
self.schema_id_index[subject][schema_id] = schema
self.schema_index[subject][schema] = schema_id
def set_registered_schema(self, registered_schema: 'RegisteredSchema'):
"""
Add a RegisteredSchema to the cache.
Args:
registered_schema (RegisteredSchema): RegisteredSchema instance
"""
subject = registered_schema.subject
schema_id = registered_schema.schema_id
version = registered_schema.version
schema = registered_schema.schema
with self.lock:
self.schema_id_index[subject][schema_id] = schema
self.schema_index[subject][schema] = schema_id
self.rs_id_index[subject][schema_id] = registered_schema
self.rs_version_index[subject][version] = registered_schema
self.rs_schema_index[subject][schema] = registered_schema
def get_schema_by_id(self, subject: str, schema_id: int) -> Optional['Schema']:
"""
Get the schema instance associated with schema id from the cache.
Args:
subject (str): The subject this schema is associated with
schema_id (int): Id used to identify a schema
Returns:
Schema: The schema if known; else None
"""
with self.lock:
return self.schema_id_index.get(subject, {}).get(schema_id, None)
def get_id_by_schema(self, subject: str, schema: 'Schema') -> Optional[int]:
"""
Get the schema id associated with schema instance from the cache.
Args:
subject (str): The subject this schema is associated with
schema (Schema): The schema
Returns:
int: The schema id if known; else None
"""
with self.lock:
return self.schema_index.get(subject, {}).get(schema, None)
def get_registered_by_subject_schema(self, subject: str, schema: 'Schema') -> Optional['RegisteredSchema']:
"""
Get the schema associated with this schema registered under subject.
Args:
subject (str): The subject this schema is associated with
schema (Schema): The schema associated with this schema
Returns:
RegisteredSchema: The registered schema if known; else None
"""
with self.lock:
return self.rs_schema_index.get(subject, {}).get(schema, None)
def get_registered_by_subject_id(self, subject: str, schema_id: int) -> Optional['RegisteredSchema']:
"""
Get the schema associated with this id registered under subject.
Args:
subject (str): The subject this schema is associated with
schema_id (int): The schema id associated with this schema
Returns:
RegisteredSchema: The registered schema if known; else None
"""
with self.lock:
return self.rs_id_index.get(subject, {}).get(schema_id, None)
def get_registered_by_subject_version(self, subject: str, version: int) -> Optional['RegisteredSchema']:
"""
Get the schema associated with this version registered under subject.
Args:
subject (str): The subject this schema is associated with
version (int): The version associated with this schema
Returns:
RegisteredSchema: The registered schema if known; else None
"""
with self.lock:
return self.rs_version_index.get(subject, {}).get(version, None)
def remove_by_subject(self, subject: str):
"""
Remove schemas with the given subject.
Args:
subject (str): The subject
"""
with self.lock:
if subject in self.schema_id_index:
del self.schema_id_index[subject]
if subject in self.schema_index:
del self.schema_index[subject]
if subject in self.rs_id_index:
del self.rs_id_index[subject]
if subject in self.rs_version_index:
del self.rs_version_index[subject]
if subject in self.rs_schema_index:
del self.rs_schema_index[subject]
def remove_by_subject_version(self, subject: str, version: int):
"""
Remove schemas with the given subject.
Args:
subject (str): The subject
version (int) The version
"""
with self.lock:
if subject in self.rs_id_index:
for schema_id, registered_schema in self.rs_id_index[subject].items():
if registered_schema.version == version:
del self.rs_schema_index[subject][schema_id]
if subject in self.rs_schema_index:
for schema, registered_schema in self.rs_schema_index[subject].items():
if registered_schema.version == version:
del self.rs_schema_index[subject][schema]
rs = None
if subject in self.rs_version_index:
if version in self.rs_version_index[subject]:
rs = self.rs_version_index[subject][version]
del self.rs_version_index[subject][version]
if rs is not None:
if subject in self.schema_id_index:
if rs.schema_id in self.schema_id_index[subject]:
del self.schema_id_index[subject][rs.schema_id]
if rs.schema in self.schema_index[subject]:
del self.schema_index[subject][rs.schema]
def clear(self):
"""
Clear the cache.
"""
with self.lock:
self.schema_id_index.clear()
self.schema_index.clear()
self.rs_id_index.clear()
self.rs_version_index.clear()
self.rs_schema_index.clear()
class SchemaRegistryClient(object):
"""
A Confluent Schema Registry client.
Configuration properties (* indicates a required field):
+------------------------------+------+-------------------------------------------------+
| Property name | type | Description |
+==============================+======+=================================================+
| ``url`` * | str | Comma-separated list of Schema Registry URLs. |
+------------------------------+------+-------------------------------------------------+
| | | Path to CA certificate file used |
| ``ssl.ca.location`` | str | to verify the Schema Registry's |
| | | private key. |
+------------------------------+------+-------------------------------------------------+
| | | Path to client's private key |
| | | (PEM) used for authentication. |
| ``ssl.key.location`` | str | |
| | | ``ssl.certificate.location`` must also be set. |
+------------------------------+------+-------------------------------------------------+
| | | Path to client's public key (PEM) used for |
| | | authentication. |
| ``ssl.certificate.location`` | str | |
| | | May be set without ssl.key.location if the |
| | | private key is stored within the PEM as well. |
+------------------------------+------+-------------------------------------------------+
| | | Client HTTP credentials in the form of |
| | | ``username:password``. |
| ``basic.auth.user.info`` | str | |
| | | By default userinfo is extracted from |
| | | the URL if present. |
+------------------------------+------+-------------------------------------------------+
| | | |
| ``proxy`` | str | Proxy such as http://localhost:8030. |
| | | |
+------------------------------+------+-------------------------------------------------+
| | | |
| ``timeout`` | int | Request timeout. |
| | | |
+------------------------------+------+-------------------------------------------------+
| | | |
| ``cache.capacity`` | int | Cache capacity. Defaults to 1000. |
| | | |
+------------------------------+------+-------------------------------------------------+
| | | |
| ``cache.latest.ttl.sec`` | int | TTL in seconds for caching the latest schema. |
| | | |
+------------------------------+------+-------------------------------------------------+
| | | |
| ``max.retries`` | int | Maximum retries for a request. Defaults to 2. |
| | | |
+------------------------------+------+-------------------------------------------------+
| | | Maximum time to wait for the first retry. |
| | | When jitter is applied, the actual wait may |
| ``retries.wait.ms`` | int | be less. |
| | | |
| | | Defaults to 1000. |
+------------------------------+------+-------------------------------------------------+
Args:
conf (dict): Schema Registry client configuration.
See Also:
`Confluent Schema Registry documentation <http://confluent.io/docs/current/schema-registry/docs/intro.html>`_
""" # noqa: E501
def __init__(self, conf: dict):
self._conf = conf
self._rest_client = _RestClient(conf)
self._cache = _SchemaCache()
cache_capacity = self._rest_client.cache_capacity
cache_ttl = self._rest_client.cache_latest_ttl_sec
if cache_ttl is not None:
self._latest_version_cache = TTLCache(cache_capacity, cache_ttl)
self._latest_with_metadata_cache = TTLCache(cache_capacity, cache_ttl)
else:
self._latest_version_cache = LRUCache(cache_capacity)
self._latest_with_metadata_cache = LRUCache(cache_capacity)
def __enter__(self):
return self
def __exit__(self, *args):
if self._rest_client is not None:
self._rest_client.session.close()
def config(self):
return self._conf
def register_schema(
self, subject_name: str, schema: 'Schema',
normalize_schemas: bool = False
) -> int:
"""
Registers a schema under ``subject_name``.
Args:
subject_name (str): subject to register a schema under
schema (Schema): Schema instance to register
normalize_schemas (bool): Normalize schema before registering
Returns:
int: Schema id
Raises:
SchemaRegistryError: if Schema violates this subject's
Compatibility policy or is otherwise invalid.
See Also:
`POST Subject API Reference <https://docs.confluent.io/current/schema-registry/develop/api.html#post--subjects-(string-%20subject)-versions>`_
""" # noqa: E501
registered_schema = self.register_schema_full_response(subject_name, schema, normalize_schemas)
return registered_schema.schema_id
def register_schema_full_response(
self, subject_name: str, schema: 'Schema',
normalize_schemas: bool = False
) -> 'RegisteredSchema':
"""
Registers a schema under ``subject_name``.
Args:
subject_name (str): subject to register a schema under
schema (Schema): Schema instance to register
normalize_schemas (bool): Normalize schema before registering
Returns:
int: Schema id
Raises:
SchemaRegistryError: if Schema violates this subject's
Compatibility policy or is otherwise invalid.
See Also:
`POST Subject API Reference <https://docs.confluent.io/current/schema-registry/develop/api.html#post--subjects-(string-%20subject)-versions>`_
""" # noqa: E501
schema_id = self._cache.get_id_by_schema(subject_name, schema)
if schema_id is not None:
return RegisteredSchema(schema_id, schema, subject_name, None)
request = schema.to_dict()
response = self._rest_client.post(
'subjects/{}/versions?normalize={}'.format(_urlencode(subject_name), normalize_schemas),
body=request)
registered_schema = RegisteredSchema.from_dict(response)
self._cache.set_schema(subject_name, registered_schema.schema_id, registered_schema.schema)
return registered_schema
def get_schema(
self, schema_id: int, subject_name: str = None, fmt: str = None
) -> 'Schema':
"""
Fetches the schema associated with ``schema_id`` from the
Schema Registry. The result is cached so subsequent attempts will not
require an additional round-trip to the Schema Registry.
Args:
schema_id (int): Schema id
subject_name (str): Subject name the schema is registered under
fmt (str): Format of the schema
Returns:
Schema: Schema instance identified by the ``schema_id``
Raises:
SchemaRegistryError: If schema can't be found.
See Also:
`GET Schema API Reference <https://docs.confluent.io/current/schema-registry/develop/api.html#get--schemas-ids-int-%20id>`_
""" # noqa: E501
schema = self._cache.get_schema_by_id(subject_name, schema_id)
if schema is not None:
return schema
query = {'subject': subject_name} if subject_name is not None else None
if fmt is not None:
if query is not None:
query['format'] = fmt
else:
query = {'format': fmt}
response = self._rest_client.get('schemas/ids/{}'.format(schema_id), query)
schema = Schema.from_dict(response)
self._cache.set_schema(subject_name, schema_id, schema)
return schema
def lookup_schema(
self, subject_name: str, schema: 'Schema',
normalize_schemas: bool = False, deleted: bool = False
) -> 'RegisteredSchema':
"""
Returns ``schema`` registration information for ``subject``.
Args:
subject_name (str): Subject name the schema is registered under
schema (Schema): Schema instance.
normalize_schemas (bool): Normalize schema before registering
deleted (bool): Whether to include deleted schemas.
Returns:
RegisteredSchema: Subject registration information for this schema.
Raises:
SchemaRegistryError: If schema or subject can't be found
See Also:
`POST Subject API Reference <https://docs.confluent.io/current/schema-registry/develop/api.html#post--subjects-(string-%20subject)-versions>`_
""" # noqa: E501
registered_schema = self._cache.get_registered_by_subject_schema(subject_name, schema)
if registered_schema is not None:
return registered_schema
request = schema.to_dict()
response = self._rest_client.post('subjects/{}?normalize={}&deleted={}'
.format(_urlencode(subject_name), normalize_schemas, deleted),
body=request)
registered_schema = RegisteredSchema.from_dict(response)
self._cache.set_registered_schema(registered_schema)
return registered_schema
def get_subjects(self) -> List[str]:
"""
List all subjects registered with the Schema Registry
Returns:
list(str): Registered subject names
Raises:
SchemaRegistryError: if subjects can't be found
See Also:
`GET subjects API Reference <https://docs.confluent.io/current/schema-registry/develop/api.html#get--subjects-(string-%20subject)-versions>`_
""" # noqa: E501
return self._rest_client.get('subjects')
def delete_subject(self, subject_name: str, permanent: bool = False) -> List[int]:
"""
Deletes the specified subject and its associated compatibility level if
registered. It is recommended to use this API only when a topic needs
to be recycled or in development environments.
Args:
subject_name (str): subject name
permanent (bool): True for a hard delete, False (default) for a soft delete
Returns:
list(int): Versions deleted under this subject
Raises:
SchemaRegistryError: if the request was unsuccessful.
See Also:
`DELETE Subject API Reference <https://docs.confluent.io/current/schema-registry/develop/api.html#delete--subjects-(string-%20subject)>`_
""" # noqa: E501
if permanent:
versions = self._rest_client.delete('subjects/{}?permanent=true'
.format(_urlencode(subject_name)))
self._cache.remove_by_subject(subject_name)
else:
versions = self._rest_client.delete('subjects/{}'
.format(_urlencode(subject_name)))
return versions
def get_latest_version(
self, subject_name: str, fmt: str = None
) -> 'RegisteredSchema':
"""
Retrieves latest registered version for subject
Args:
subject_name (str): Subject name.
fmt (str): Format of the schema
Returns:
RegisteredSchema: Registration information for this version.
Raises:
SchemaRegistryError: if the version can't be found or is invalid.
See Also:
`GET Subject Version API Reference <https://docs.confluent.io/current/schema-registry/develop/api.html#get--subjects-(string-%20subject)-versions-(versionId-%20version)>`_
""" # noqa: E501
registered_schema = self._latest_version_cache.get(subject_name, None)
if registered_schema is not None:
return registered_schema
query = {'format': fmt} if fmt is not None else None
response = self._rest_client.get('subjects/{}/versions/{}'
.format(_urlencode(subject_name),
'latest'), query)
registered_schema = RegisteredSchema.from_dict(response)
self._latest_version_cache[subject_name] = registered_schema
return registered_schema
def get_latest_with_metadata(
self, subject_name: str, metadata: Dict[str, str],
deleted: bool = False, fmt: str = None
) -> 'RegisteredSchema':
"""
Retrieves latest registered version for subject with the given metadata
Args:
subject_name (str): Subject name.
metadata (dict): The key-value pairs for the metadata.
deleted (bool): Whether to include deleted schemas.
fmt (str): Format of the schema
Returns:
RegisteredSchema: Registration information for this version.
Raises:
SchemaRegistryError: if the version can't be found or is invalid.
""" # noqa: E501
cache_key = (subject_name, frozenset(metadata.items()), deleted)
registered_schema = self._latest_with_metadata_cache.get(cache_key, None)
if registered_schema is not None:
return registered_schema
query = {'deleted': deleted, 'format': fmt} if fmt is not None else {'deleted': deleted}
keys = metadata.keys()
if keys:
query['key'] = [_urlencode(key) for key in keys]
query['value'] = [_urlencode(metadata[key]) for key in keys]
response = self._rest_client.get('subjects/{}/metadata'
.format(_urlencode(subject_name)), query)
registered_schema = RegisteredSchema.from_dict(response)
self._latest_with_metadata_cache[cache_key] = registered_schema
return registered_schema
def get_version(
self, subject_name: str, version: int,
deleted: bool = False, fmt: str = None
) -> 'RegisteredSchema':
"""
Retrieves a specific schema registered under ``subject_name``.
Args:
subject_name (str): Subject name.
version (int): version number. Defaults to latest version.
deleted (bool): Whether to include deleted schemas.
fmt (str): Format of the schema
Returns:
RegisteredSchema: Registration information for this version.
Raises:
SchemaRegistryError: if the version can't be found or is invalid.
See Also:
`GET Subject Version API Reference <https://docs.confluent.io/current/schema-registry/develop/api.html#get--subjects-(string-%20subject)-versions-(versionId-%20version)>`_
""" # noqa: E501
registered_schema = self._cache.get_registered_by_subject_version(subject_name, version)
if registered_schema is not None:
return registered_schema
query = {'deleted': deleted, 'format': fmt} if fmt is not None else {'deleted': deleted}
response = self._rest_client.get('subjects/{}/versions/{}'
.format(_urlencode(subject_name),
version), query)
registered_schema = RegisteredSchema.from_dict(response)
self._cache.set_registered_schema(registered_schema)
return registered_schema
def get_versions(self, subject_name: str) -> List[int]:
"""
Get a list of all versions registered with this subject.
Args:
subject_name (str): Subject name.
Returns:
list(int): Registered versions
Raises:
SchemaRegistryError: If subject can't be found
See Also:
`GET Subject Versions API Reference <https://docs.confluent.io/current/schema-registry/develop/api.html#post--subjects-(string-%20subject)-versions>`_
""" # noqa: E501
return self._rest_client.get('subjects/{}/versions'.format(_urlencode(subject_name)))
def delete_version(self, subject_name: str, version: int, permanent: bool = False) -> int:
"""
Deletes a specific version registered to ``subject_name``.
Args:
subject_name (str) Subject name
version (int): Version number
permanent (bool): True for a hard delete, False (default) for a soft delete
Returns:
int: Version number which was deleted
Raises:
SchemaRegistryError: if the subject or version cannot be found.
See Also:
`Delete Subject Version API Reference <https://docs.confluent.io/current/schema-registry/develop/api.html#delete--subjects-(string-%20subject)-versions-(versionId-%20version)>`_
""" # noqa: E501
if permanent:
response = self._rest_client.delete('subjects/{}/versions/{}?permanent=true'
.format(_urlencode(subject_name),
version))
self._cache.remove_by_subject_version(subject_name, version)
else:
response = self._rest_client.delete('subjects/{}/versions/{}'
.format(_urlencode(subject_name),
version))
return response
def set_compatibility(self, subject_name: Optional[str] = None, level: str = None) -> str:
"""
Update global or subject level compatibility level.
Args:
level (str): Compatibility level. See API reference for a list of
valid values.
subject_name (str, optional): Subject to update. Sets global compatibility
level policy if not set.
Returns:
str: The newly configured compatibility level.
Raises:
SchemaRegistryError: If the compatibility level is invalid.