-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathregistry.py
More file actions
1176 lines (1034 loc) · 46 KB
/
registry.py
File metadata and controls
1176 lines (1034 loc) · 46 KB
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
# Copyright 2019 The Feast Authors
#
# 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
#
# https://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 logging
from datetime import datetime, timedelta, timezone
from enum import Enum
from pathlib import Path
from threading import Lock
from typing import Any, Dict, List, Optional, Union
from urllib.parse import urlparse
from google.protobuf.internal.containers import RepeatedCompositeFieldContainer
from google.protobuf.message import Message
from feast.base_feature_view import BaseFeatureView
from feast.data_source import DataSource
from feast.entity import Entity
from feast.errors import (
ConflictingFeatureViewNames,
DataSourceNotFoundException,
EntityNotFoundException,
FeatureServiceNotFoundException,
FeatureViewNotFoundException,
PermissionNotFoundException,
ProjectNotFoundException,
ProjectObjectNotFoundException,
ValidationReferenceNotFound,
)
from feast.feature_service import FeatureService
from feast.feature_view import FeatureView
from feast.importer import import_class
from feast.infra.infra_object import Infra
from feast.infra.registry import proto_registry_utils
from feast.infra.registry.base_registry import BaseRegistry
from feast.infra.registry.registry_store import NoopRegistryStore
from feast.on_demand_feature_view import OnDemandFeatureView
from feast.permissions.auth_model import AuthConfig, NoAuthConfig
from feast.permissions.permission import Permission
from feast.project import Project
from feast.project_metadata import ProjectMetadata
from feast.protos.feast.core.Registry_pb2 import Registry as RegistryProto
from feast.repo_config import RegistryConfig
from feast.repo_contents import RepoContents
from feast.saved_dataset import SavedDataset, ValidationReference
from feast.stream_feature_view import StreamFeatureView
from feast.utils import _utc_now
REGISTRY_SCHEMA_VERSION = "1"
REGISTRY_STORE_CLASS_FOR_TYPE = {
"GCSRegistryStore": "feast.infra.registry.gcs.GCSRegistryStore",
"S3RegistryStore": "feast.infra.registry.s3.S3RegistryStore",
"FileRegistryStore": "feast.infra.registry.file.FileRegistryStore",
"AzureRegistryStore": "feast.infra.registry.contrib.azure.azure_registry_store.AzBlobRegistryStore",
"HDFSRegistryStore": "feast.infra.registry.contrib.hdfs.hdfs_registry_store.HDFSRegistryStore",
}
REGISTRY_STORE_CLASS_FOR_SCHEME = {
"gs": "GCSRegistryStore",
"s3": "S3RegistryStore",
"file": "FileRegistryStore",
"hdfs": "HDFSRegistryStore",
"": "FileRegistryStore",
}
class FeastObjectType(Enum):
PROJECT = "project"
DATA_SOURCE = "data source"
ENTITY = "entity"
FEATURE_VIEW = "feature view"
ON_DEMAND_FEATURE_VIEW = "on demand feature view"
STREAM_FEATURE_VIEW = "stream feature view"
FEATURE_SERVICE = "feature service"
PERMISSION = "permission"
@staticmethod
def get_objects_from_registry(
registry: "BaseRegistry", project: str
) -> Dict["FeastObjectType", List[Any]]:
return {
FeastObjectType.PROJECT: [
project_obj
for project_obj in registry.list_projects()
if project_obj.name == project
],
FeastObjectType.DATA_SOURCE: registry.list_data_sources(project=project),
FeastObjectType.ENTITY: registry.list_entities(project=project),
FeastObjectType.FEATURE_VIEW: registry.list_feature_views(project=project),
FeastObjectType.ON_DEMAND_FEATURE_VIEW: registry.list_on_demand_feature_views(
project=project
),
FeastObjectType.STREAM_FEATURE_VIEW: registry.list_stream_feature_views(
project=project,
),
FeastObjectType.FEATURE_SERVICE: registry.list_feature_services(
project=project
),
FeastObjectType.PERMISSION: registry.list_permissions(project=project),
}
@staticmethod
def get_objects_from_repo_contents(
repo_contents: RepoContents,
) -> Dict["FeastObjectType", List[Any]]:
return {
FeastObjectType.PROJECT: repo_contents.projects,
FeastObjectType.DATA_SOURCE: repo_contents.data_sources,
FeastObjectType.ENTITY: repo_contents.entities,
FeastObjectType.FEATURE_VIEW: repo_contents.feature_views,
FeastObjectType.ON_DEMAND_FEATURE_VIEW: repo_contents.on_demand_feature_views,
FeastObjectType.STREAM_FEATURE_VIEW: repo_contents.stream_feature_views,
FeastObjectType.FEATURE_SERVICE: repo_contents.feature_services,
FeastObjectType.PERMISSION: repo_contents.permissions,
}
FEAST_OBJECT_TYPES = [feast_object_type for feast_object_type in FeastObjectType]
logger = logging.getLogger(__name__)
def get_registry_store_class_from_type(registry_store_type: str):
if not registry_store_type.endswith("RegistryStore"):
raise Exception('Registry store class name should end with "RegistryStore"')
if registry_store_type in REGISTRY_STORE_CLASS_FOR_TYPE:
registry_store_type = REGISTRY_STORE_CLASS_FOR_TYPE[registry_store_type]
module_name, registry_store_class_name = registry_store_type.rsplit(".", 1)
return import_class(module_name, registry_store_class_name, "RegistryStore")
def get_registry_store_class_from_scheme(registry_path: str):
uri = urlparse(registry_path)
if uri.scheme not in REGISTRY_STORE_CLASS_FOR_SCHEME:
raise Exception(
f"Registry path {registry_path} has unsupported scheme {uri.scheme}. "
f"Supported schemes are file, s3, gs and hdfs."
)
else:
registry_store_type = REGISTRY_STORE_CLASS_FOR_SCHEME[uri.scheme]
return get_registry_store_class_from_type(registry_store_type)
class Registry(BaseRegistry):
def apply_user_metadata(
self,
project: str,
feature_view: BaseFeatureView,
metadata_bytes: Optional[bytes],
):
pass
def get_user_metadata(
self, project: str, feature_view: BaseFeatureView
) -> Optional[bytes]:
pass
def set_project_metadata(self, project: str, key: str, value: str):
"""Set a custom project metadata key-value pair in the registry backend."""
if hasattr(self._registry_store, "set_project_metadata"):
self._registry_store.set_project_metadata(project, key, value)
else:
raise NotImplementedError(
"set_project_metadata not implemented for this registry backend"
)
def get_project_metadata(self, project: str, key: str) -> Optional[str]:
"""Get a custom project metadata value by key from the registry backend."""
if hasattr(self._registry_store, "get_project_metadata"):
return self._registry_store.get_project_metadata(project, key)
else:
raise NotImplementedError(
"get_project_metadata not implemented for this registry backend"
)
# The cached_registry_proto object is used for both reads and writes. In particular,
# all write operations refresh the cache and modify it in memory; the write must
# then be persisted to the underlying RegistryStore with a call to commit().
cached_registry_proto: RegistryProto
cached_registry_proto_created: datetime
cached_registry_proto_ttl: timedelta
def __init__(
self,
project: str,
registry_config: Optional[RegistryConfig],
repo_path: Optional[Path],
auth_config: AuthConfig = NoAuthConfig(),
):
"""
Create the Registry object.
Args:
registry_config: RegistryConfig object containing the destination path and cache ttl,
repo_path: Path to the base of the Feast repository
or where it will be created if it does not exist yet.
"""
self._refresh_lock = Lock()
self._auth_config = auth_config
registry_proto = RegistryProto()
registry_proto.registry_schema_version = REGISTRY_SCHEMA_VERSION
self.cached_registry_proto = registry_proto
self.cached_registry_proto_created = _utc_now()
self.purge_feast_metadata = (
registry_config.purge_feast_metadata
if registry_config is not None
else False
)
self.cache_mode = (
registry_config.cache_mode if registry_config is not None else "sync"
)
self._file_mtime = None
self._file_path = None
if registry_config:
registry_store_type = registry_config.registry_store_type
registry_path = registry_config.path
if registry_store_type is None:
cls = get_registry_store_class_from_scheme(registry_path)
else:
cls = get_registry_store_class_from_type(str(registry_store_type))
self._registry_store = cls(registry_config, repo_path)
self.cached_registry_proto_ttl = timedelta(
seconds=(
registry_config.cache_ttl_seconds
if registry_config.cache_ttl_seconds is not None
else 0
)
)
from feast.infra.registry.file import FileRegistryStore
if isinstance(self._registry_store, FileRegistryStore):
self._file_path = self._registry_store._filepath
if self._file_path.exists():
self._file_mtime = self._file_path.stat().st_mtime
try:
registry_proto = self._registry_store.get_registry_proto()
self.cached_registry_proto = registry_proto
self.cached_registry_proto_created = _utc_now()
# Sync feast_metadata to projects table
# when purge_feast_metadata is set to True, Delete data from
# feast_metadata table and list_project_metadata will not return any data
self._sync_feast_metadata_to_projects_table()
except FileNotFoundError:
logger.info("Registry file not found. Creating new registry.")
self.commit()
def _sync_feast_metadata_to_projects_table(self):
"""
Sync feast_metadata to projects table
"""
feast_metadata_projects = []
projects_set = []
# List of project in project_metadata
for project_metadata in self.cached_registry_proto.project_metadata:
project = ProjectMetadata.from_proto(project_metadata)
feast_metadata_projects.append(project.project_name)
if len(feast_metadata_projects) > 0:
# List of project in projects
for project_metadata in self.cached_registry_proto.projects:
project = Project.from_proto(project_metadata)
projects_set.append(project.name)
# Find object in feast_metadata_projects but not in projects
projects_to_sync = set(feast_metadata_projects) - set(projects_set)
# Sync feast_metadata to projects table
for project_name in projects_to_sync:
project = Project(name=project_name)
self.cached_registry_proto.projects.append(project.to_proto())
if self.purge_feast_metadata:
self.cached_registry_proto.project_metadata = []
def clone(self) -> "Registry":
new_registry = Registry("project", None, None, self._auth_config)
new_registry.cached_registry_proto_ttl = timedelta(seconds=0)
new_registry.cached_registry_proto = (
self.cached_registry_proto.__deepcopy__()
if self.cached_registry_proto
else RegistryProto()
)
new_registry.cached_registry_proto_created = _utc_now()
new_registry._registry_store = NoopRegistryStore()
return new_registry
def update_infra(self, infra: Infra, project: str, commit: bool = True):
self._prepare_registry_for_changes(project)
assert self.cached_registry_proto
self.cached_registry_proto.infra.CopyFrom(infra.to_proto())
if commit:
self.commit()
def get_infra(self, project: str, allow_cache: bool = False) -> Infra:
registry_proto = self._get_registry_proto(
project=project, allow_cache=allow_cache
)
return Infra.from_proto(registry_proto.infra)
def apply_entity(self, entity: Entity, project: str, commit: bool = True):
entity.is_valid()
now = _utc_now()
if not entity.created_timestamp:
entity.created_timestamp = now
entity.last_updated_timestamp = now
entity_proto = entity.to_proto()
entity_proto.spec.project = project
self._prepare_registry_for_changes(project)
assert self.cached_registry_proto
for idx, existing_entity_proto in enumerate(
self.cached_registry_proto.entities
):
if (
existing_entity_proto.spec.name == entity_proto.spec.name
and existing_entity_proto.spec.project == project
):
entity.created_timestamp = (
existing_entity_proto.meta.created_timestamp.ToDatetime()
)
entity_proto = entity.to_proto()
entity_proto.spec.project = project
del self.cached_registry_proto.entities[idx]
break
self.cached_registry_proto.entities.append(entity_proto)
if commit:
self.commit()
def list_entities(
self,
project: str,
allow_cache: bool = False,
tags: Optional[dict[str, str]] = None,
) -> List[Entity]:
registry_proto = self._get_registry_proto(
project=project, allow_cache=allow_cache
)
return proto_registry_utils.list_entities(registry_proto, project, tags)
def list_data_sources(
self,
project: str,
allow_cache: bool = False,
tags: Optional[dict[str, str]] = None,
) -> List[DataSource]:
registry_proto = self._get_registry_proto(
project=project, allow_cache=allow_cache
)
return proto_registry_utils.list_data_sources(registry_proto, project, tags)
def apply_data_source(
self, data_source: DataSource, project: str, commit: bool = True
):
now = _utc_now()
if not data_source.created_timestamp:
data_source.created_timestamp = now
data_source.last_updated_timestamp = now
registry = self._prepare_registry_for_changes(project)
for idx, existing_data_source_proto in enumerate(registry.data_sources):
if existing_data_source_proto.name == data_source.name:
existing_data_source = DataSource.from_proto(existing_data_source_proto)
# Check if the data source has actually changed
if existing_data_source == data_source:
return
else:
# Preserve created_timestamp from existing data source
data_source.created_timestamp = (
existing_data_source.created_timestamp
)
del registry.data_sources[idx]
break
data_source_proto = data_source.to_proto()
data_source_proto.project = project
data_source_proto.data_source_class_type = (
f"{data_source.__class__.__module__}.{data_source.__class__.__name__}"
)
self.cached_registry_proto.data_sources.append(data_source_proto)
if commit:
self.commit()
def delete_data_source(self, name: str, project: str, commit: bool = True):
self._prepare_registry_for_changes(project)
assert self.cached_registry_proto
for idx, data_source_proto in enumerate(
self.cached_registry_proto.data_sources
):
if data_source_proto.name == name:
del self.cached_registry_proto.data_sources[idx]
if commit:
self.commit()
return
raise DataSourceNotFoundException(name)
def apply_feature_service(
self, feature_service: FeatureService, project: str, commit: bool = True
):
now = _utc_now()
if not feature_service.created_timestamp:
feature_service.created_timestamp = now
feature_service.last_updated_timestamp = now
feature_service_proto = feature_service.to_proto()
feature_service_proto.spec.project = project
registry = self._prepare_registry_for_changes(project)
for idx, existing_feature_service_proto in enumerate(registry.feature_services):
if (
existing_feature_service_proto.spec.name
== feature_service_proto.spec.name
and existing_feature_service_proto.spec.project == project
):
feature_service.created_timestamp = (
existing_feature_service_proto.meta.created_timestamp.ToDatetime()
)
feature_service_proto = feature_service.to_proto()
feature_service_proto.spec.project = project
del registry.feature_services[idx]
self.cached_registry_proto.feature_services.append(feature_service_proto)
if commit:
self.commit()
def list_feature_services(
self,
project: str,
allow_cache: bool = False,
tags: Optional[dict[str, str]] = None,
) -> List[FeatureService]:
registry_proto = self._get_registry_proto(
project=project, allow_cache=allow_cache
)
return proto_registry_utils.list_feature_services(registry_proto, project, tags)
def get_feature_service(
self, name: str, project: str, allow_cache: bool = False
) -> FeatureService:
registry_proto = self._get_registry_proto(
project=project, allow_cache=allow_cache
)
return proto_registry_utils.get_feature_service(registry_proto, name, project)
def get_entity(self, name: str, project: str, allow_cache: bool = False) -> Entity:
registry_proto = self._get_registry_proto(
project=project, allow_cache=allow_cache
)
return proto_registry_utils.get_entity(registry_proto, name, project)
def apply_feature_view(
self, feature_view: BaseFeatureView, project: str, commit: bool = True
):
feature_view.ensure_valid()
now = _utc_now()
if not feature_view.created_timestamp:
feature_view.created_timestamp = now
feature_view.last_updated_timestamp = now
feature_view_proto = feature_view.to_proto()
feature_view_proto.spec.project = project
self._prepare_registry_for_changes(project)
assert self.cached_registry_proto
self._check_conflicting_feature_view_names(feature_view)
existing_feature_views_of_same_type: RepeatedCompositeFieldContainer
if isinstance(feature_view, StreamFeatureView):
existing_feature_views_of_same_type = (
self.cached_registry_proto.stream_feature_views
)
elif isinstance(feature_view, FeatureView):
existing_feature_views_of_same_type = (
self.cached_registry_proto.feature_views
)
elif isinstance(feature_view, OnDemandFeatureView):
existing_feature_views_of_same_type = (
self.cached_registry_proto.on_demand_feature_views
)
else:
raise ValueError(f"Unexpected feature view type: {type(feature_view)}")
for idx, existing_feature_view_proto in enumerate(
existing_feature_views_of_same_type
):
if (
existing_feature_view_proto.spec.name == feature_view_proto.spec.name
and existing_feature_view_proto.spec.project == project
):
if (
feature_view.__class__.from_proto(existing_feature_view_proto)
== feature_view
):
return
else:
existing_feature_view = type(feature_view).from_proto(
existing_feature_view_proto
)
feature_view.created_timestamp = (
existing_feature_view.created_timestamp
)
if isinstance(feature_view, (FeatureView, StreamFeatureView)):
feature_view.update_materialization_intervals(
existing_feature_view.materialization_intervals
)
feature_view_proto = feature_view.to_proto()
feature_view_proto.spec.project = project
del existing_feature_views_of_same_type[idx]
break
existing_feature_views_of_same_type.append(feature_view_proto)
if commit:
self.commit()
def list_stream_feature_views(
self,
project: str,
allow_cache: bool = False,
tags: Optional[dict[str, str]] = None,
) -> List[StreamFeatureView]:
registry_proto = self._get_registry_proto(
project=project, allow_cache=allow_cache
)
return proto_registry_utils.list_stream_feature_views(
registry_proto, project, tags
)
def list_on_demand_feature_views(
self,
project: str,
allow_cache: bool = False,
tags: Optional[dict[str, str]] = None,
) -> List[OnDemandFeatureView]:
registry_proto = self._get_registry_proto(
project=project, allow_cache=allow_cache
)
return proto_registry_utils.list_on_demand_feature_views(
registry_proto, project, tags
)
def get_on_demand_feature_view(
self, name: str, project: str, allow_cache: bool = False
) -> OnDemandFeatureView:
registry_proto = self._get_registry_proto(
project=project, allow_cache=allow_cache
)
return proto_registry_utils.get_on_demand_feature_view(
registry_proto, name, project
)
def get_data_source(
self, name: str, project: str, allow_cache: bool = False
) -> DataSource:
registry_proto = self._get_registry_proto(
project=project, allow_cache=allow_cache
)
return proto_registry_utils.get_data_source(registry_proto, name, project)
def apply_materialization(
self,
feature_view: Union[FeatureView, OnDemandFeatureView],
project: str,
start_date: datetime,
end_date: datetime,
commit: bool = True,
):
self._prepare_registry_for_changes(project)
assert self.cached_registry_proto
for idx, existing_feature_view_proto in enumerate(
self.cached_registry_proto.feature_views
):
if (
existing_feature_view_proto.spec.name == feature_view.name
and existing_feature_view_proto.spec.project == project
):
existing_feature_view = FeatureView.from_proto(
existing_feature_view_proto
)
existing_feature_view.materialization_intervals.append(
(start_date, end_date)
)
existing_feature_view.last_updated_timestamp = _utc_now()
feature_view_proto = existing_feature_view.to_proto()
feature_view_proto.spec.project = project
del self.cached_registry_proto.feature_views[idx]
self.cached_registry_proto.feature_views.append(feature_view_proto)
if commit:
self.commit()
return
for idx, existing_stream_feature_view_proto in enumerate(
self.cached_registry_proto.stream_feature_views
):
if (
existing_stream_feature_view_proto.spec.name == feature_view.name
and existing_stream_feature_view_proto.spec.project == project
):
existing_stream_feature_view = StreamFeatureView.from_proto(
existing_stream_feature_view_proto
)
existing_stream_feature_view.materialization_intervals.append(
(start_date, end_date)
)
existing_stream_feature_view.last_updated_timestamp = _utc_now()
stream_feature_view_proto = existing_stream_feature_view.to_proto()
stream_feature_view_proto.spec.project = project
del self.cached_registry_proto.stream_feature_views[idx]
self.cached_registry_proto.stream_feature_views.append(
stream_feature_view_proto
)
if commit:
self.commit()
return
def list_all_feature_views(
self,
project: str,
allow_cache: bool = False,
tags: Optional[dict[str, str]] = None,
) -> List[BaseFeatureView]:
registry_proto = self._get_registry_proto(
project=project, allow_cache=allow_cache
)
return proto_registry_utils.list_all_feature_views(
registry_proto, project, tags
)
def get_any_feature_view(
self, name: str, project: str, allow_cache: bool = False
) -> BaseFeatureView:
registry_proto = self._get_registry_proto(
project=project, allow_cache=allow_cache
)
return proto_registry_utils.get_any_feature_view(registry_proto, name, project)
def list_feature_views(
self,
project: str,
allow_cache: bool = False,
tags: Optional[dict[str, str]] = None,
) -> List[FeatureView]:
registry_proto = self._get_registry_proto(
project=project, allow_cache=allow_cache
)
return proto_registry_utils.list_feature_views(registry_proto, project, tags)
def get_feature_view(
self, name: str, project: str, allow_cache: bool = False
) -> FeatureView:
registry_proto = self._get_registry_proto(
project=project, allow_cache=allow_cache
)
return proto_registry_utils.get_feature_view(registry_proto, name, project)
def get_stream_feature_view(
self, name: str, project: str, allow_cache: bool = False
) -> StreamFeatureView:
registry_proto = self._get_registry_proto(
project=project, allow_cache=allow_cache
)
return proto_registry_utils.get_stream_feature_view(
registry_proto, name, project
)
def delete_feature_service(self, name: str, project: str, commit: bool = True):
self._prepare_registry_for_changes(project)
assert self.cached_registry_proto
for idx, feature_service_proto in enumerate(
self.cached_registry_proto.feature_services
):
if (
feature_service_proto.spec.name == name
and feature_service_proto.spec.project == project
):
del self.cached_registry_proto.feature_services[idx]
if commit:
self.commit()
return
raise FeatureServiceNotFoundException(name, project)
def delete_feature_view(self, name: str, project: str, commit: bool = True):
self._prepare_registry_for_changes(project)
assert self.cached_registry_proto
for idx, existing_feature_view_proto in enumerate(
self.cached_registry_proto.feature_views
):
if (
existing_feature_view_proto.spec.name == name
and existing_feature_view_proto.spec.project == project
):
del self.cached_registry_proto.feature_views[idx]
if commit:
self.commit()
return
for idx, existing_on_demand_feature_view_proto in enumerate(
self.cached_registry_proto.on_demand_feature_views
):
if (
existing_on_demand_feature_view_proto.spec.name == name
and existing_on_demand_feature_view_proto.spec.project == project
):
del self.cached_registry_proto.on_demand_feature_views[idx]
if commit:
self.commit()
return
for idx, existing_stream_feature_view_proto in enumerate(
self.cached_registry_proto.stream_feature_views
):
if (
existing_stream_feature_view_proto.spec.name == name
and existing_stream_feature_view_proto.spec.project == project
):
del self.cached_registry_proto.stream_feature_views[idx]
if commit:
self.commit()
return
raise FeatureViewNotFoundException(name, project)
def delete_entity(self, name: str, project: str, commit: bool = True):
self._prepare_registry_for_changes(project)
assert self.cached_registry_proto
for idx, existing_entity_proto in enumerate(
self.cached_registry_proto.entities
):
if (
existing_entity_proto.spec.name == name
and existing_entity_proto.spec.project == project
):
del self.cached_registry_proto.entities[idx]
if commit:
self.commit()
return
raise EntityNotFoundException(name, project)
def apply_saved_dataset(
self,
saved_dataset: SavedDataset,
project: str,
commit: bool = True,
):
now = _utc_now()
if not saved_dataset.created_timestamp:
saved_dataset.created_timestamp = now
saved_dataset.last_updated_timestamp = now
saved_dataset_proto = saved_dataset.to_proto()
saved_dataset_proto.spec.project = project
self._prepare_registry_for_changes(project)
assert self.cached_registry_proto
for idx, existing_saved_dataset_proto in enumerate(
self.cached_registry_proto.saved_datasets
):
if (
existing_saved_dataset_proto.spec.name == saved_dataset_proto.spec.name
and existing_saved_dataset_proto.spec.project == project
):
saved_dataset.created_timestamp = (
existing_saved_dataset_proto.meta.created_timestamp.ToDatetime()
)
saved_dataset.min_event_timestamp = (
existing_saved_dataset_proto.meta.min_event_timestamp.ToDatetime()
)
saved_dataset.max_event_timestamp = (
existing_saved_dataset_proto.meta.max_event_timestamp.ToDatetime()
)
saved_dataset_proto = saved_dataset.to_proto()
saved_dataset_proto.spec.project = project
del self.cached_registry_proto.saved_datasets[idx]
break
self.cached_registry_proto.saved_datasets.append(saved_dataset_proto)
if commit:
self.commit()
def get_saved_dataset(
self, name: str, project: str, allow_cache: bool = False
) -> SavedDataset:
registry_proto = self._get_registry_proto(
project=project, allow_cache=allow_cache
)
return proto_registry_utils.get_saved_dataset(registry_proto, name, project)
def list_saved_datasets(
self,
project: str,
allow_cache: bool = False,
tags: Optional[dict[str, str]] = None,
) -> List[SavedDataset]:
registry_proto = self._get_registry_proto(
project=project, allow_cache=allow_cache
)
return proto_registry_utils.list_saved_datasets(registry_proto, project, tags)
def apply_validation_reference(
self,
validation_reference: ValidationReference,
project: str,
commit: bool = True,
):
validation_reference_proto = validation_reference.to_proto()
validation_reference_proto.project = project
registry_proto = self._prepare_registry_for_changes(project)
for idx, existing_validation_reference in enumerate(
registry_proto.validation_references
):
if (
existing_validation_reference.name == validation_reference_proto.name
and existing_validation_reference.project == project
):
del registry_proto.validation_references[idx]
break
registry_proto.validation_references.append(validation_reference_proto)
if commit:
self.commit()
def get_validation_reference(
self, name: str, project: str, allow_cache: bool = False
) -> ValidationReference:
registry_proto = self._get_registry_proto(
project=project, allow_cache=allow_cache
)
return proto_registry_utils.get_validation_reference(
registry_proto, name, project
)
def list_validation_references(
self,
project: str,
allow_cache: bool = False,
tags: Optional[dict[str, str]] = None,
) -> List[ValidationReference]:
registry_proto = self._get_registry_proto(
project=project, allow_cache=allow_cache
)
return proto_registry_utils.list_validation_references(
registry_proto, project, tags
)
def delete_validation_reference(self, name: str, project: str, commit: bool = True):
self._prepare_registry_for_changes(project)
assert self.cached_registry_proto
for idx, existing_validation_reference in enumerate(
self.cached_registry_proto.validation_references
):
if (
existing_validation_reference.name == name
and existing_validation_reference.project == project
):
del self.cached_registry_proto.validation_references[idx]
if commit:
self.commit()
return
raise ValidationReferenceNotFound(name, project=project)
def list_project_metadata(
self, project: str, allow_cache: bool = False
) -> List[ProjectMetadata]:
registry_proto = self._get_registry_proto(
project=project, allow_cache=allow_cache
)
return proto_registry_utils.list_project_metadata(registry_proto, project)
def commit(self):
"""Commits the state of the registry cache to the remote registry store."""
if self.cached_registry_proto:
self._registry_store.update_registry_proto(self.cached_registry_proto)
if self._file_path is not None and self._file_path.exists():
try:
self._file_mtime = self._file_path.stat().st_mtime
except (OSError, FileNotFoundError):
pass
def refresh(self, project: Optional[str] = None):
"""Refreshes the state of the registry cache by fetching the registry state from the remote registry store."""
self._get_registry_proto(project=project, allow_cache=False)
def teardown(self):
"""Tears down (removes) the registry."""
self._registry_store.teardown()
def proto(self) -> RegistryProto:
return self.cached_registry_proto or RegistryProto()
def _prepare_registry_for_changes(self, project_name: str):
"""Prepares the Registry for changes by refreshing the cache if necessary."""
assert self.cached_registry_proto is not None
try:
# Check if the project exists in the registry cache
self.get_project(name=project_name, allow_cache=True)
return self.cached_registry_proto
except ProjectObjectNotFoundException:
# If the project does not exist in cache, refresh cache from store
registry_proto = self._registry_store.get_registry_proto()
self.cached_registry_proto = registry_proto
self.cached_registry_proto_created = _utc_now()
try:
# Check if the project exists in the registry cache after refresh from store
self.get_project(name=project_name)
except ProjectObjectNotFoundException:
# If the project still does not exist, create it
project_proto = Project(name=project_name).to_proto()
self.cached_registry_proto.projects.append(project_proto)
if not self.purge_feast_metadata:
project_metadata_proto = ProjectMetadata(
project_name=project_name
).to_proto()
self.cached_registry_proto.project_metadata.append(
project_metadata_proto
)
self.commit()
return self.cached_registry_proto
def _get_registry_proto(
self, project: Optional[str], allow_cache: bool = False
) -> RegistryProto:
"""Returns the cached or remote registry state
Args:
project: Name of the Feast project (optional)
allow_cache: Whether to allow the use of the registry cache when fetching the RegistryProto
Returns: Returns a RegistryProto object which represents the state of the registry
"""
with self._refresh_lock:
# For file-based registries in sync mode, check file modification time
# to detect changes immediately, not just based on TTL
file_modified = False
if (
allow_cache
and self.cache_mode == "sync"
and self._file_path is not None
and self._file_path.exists()
):
try:
current_mtime = self._file_path.stat().st_mtime
if self._file_mtime is None or current_mtime > self._file_mtime:
file_modified = True
self._file_mtime = current_mtime
except (OSError, FileNotFoundError):
file_modified = True
expired = (self.cached_registry_proto_created is None) or (
self.cached_registry_proto_ttl.total_seconds()
> 0 # 0 ttl means infinity
and (
_utc_now()
> (
self.cached_registry_proto_created
+ self.cached_registry_proto_ttl
)
)
)
# Refresh if expired or file was modified (for sync mode with file registry)
if allow_cache and not expired and not file_modified:
return self.cached_registry_proto
if file_modified:
logger.info("Registry file modified, so refreshing")
else:
logger.info("Registry cache expired, so refreshing")
registry_proto = self._registry_store.get_registry_proto()
self.cached_registry_proto = registry_proto