MCPcopy Index your code
hub / github.com/feast-dev/feast / list_feature_views

Method list_feature_views

sdk/python/feast/feature_store.py:536–551  ·  view source on GitHub ↗

Retrieves the list of feature views from the registry. Args: allow_cache: Whether to allow returning entities from a cached registry. tags: Filter by tags. Returns: A list of feature views.

(
        self, allow_cache: bool = False, tags: Optional[dict[str, str]] = None
    )

Source from the content-addressed store, hash-verified

534 return self._list_all_feature_views(allow_cache, tags=tags)
535
536 def list_feature_views(
537 self, allow_cache: bool = False, tags: Optional[dict[str, str]] = None
538 ) -> List[FeatureView]:
539 """
540 Retrieves the list of feature views from the registry.
541
542 Args:
543 allow_cache: Whether to allow returning entities from a cached registry.
544 tags: Filter by tags.
545
546 Returns:
547 A list of feature views.
548 """
549 return utils._list_feature_views(
550 self.registry, self.project, allow_cache, tags=tags
551 )
552
553 def list_batch_feature_views(
554 self, allow_cache: bool = False, tags: Optional[dict[str, str]] = None

Callers 15

teardownMethod · 0.95
test_end_to_endFunction · 0.95
mainFunction · 0.95
test_universal_cliFunction · 0.95
benchmark_writesFunction · 0.95
run_demoFunction · 0.95
run_demoFunction · 0.95
_list_feature_viewsFunction · 0.45
update_feature_freshnessFunction · 0.45

Calls 1

_list_feature_viewsMethod · 0.45

Tested by 15

test_end_to_endFunction · 0.76
mainFunction · 0.76
test_universal_cliFunction · 0.76
run_demoFunction · 0.76
run_demoFunction · 0.76
_test_list_fvsFunction · 0.36
test_apply_data_sourceFunction · 0.36
test_registry_cacheFunction · 0.36