Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
534df91
feat: Add Feature Store Support to V3
adishaa Jan 16, 2026
193d16f
Add feature store tests
adishaa Jan 16, 2026
f385794
feat(feature_store): Add Lake Formation support to Feature Group
bhhalim Jan 27, 2026
a984e47
docs(feature_store): Add Lake Formation governance example notebook
bhhalim Jan 29, 2026
6af3240
add role policy to notebook
BassemHalim Jan 29, 2026
34b90a7
chore(docs): update example notebook
bhhalim Feb 4, 2026
164c313
update setup instructions
BassemHalim Feb 6, 2026
07da9e7
add lf-multiaccount-demo + fix LakeformationConfig constructor
BassemHalim Feb 20, 2026
1a82acd
Merge remote-tracking branch 'upstream/master' into feature-store-lak…
BassemHalim Mar 4, 2026
914f0fd
reusing clients + bug fixes
BassemHalim Mar 4, 2026
d593488
feat: add disable_hybrid_access_mode + update tests
BassemHalim Mar 5, 2026
4ef9451
refactor: replace print() with logger.info() for S3 deny policy display
BassemHalim Mar 10, 2026
a6f4065
update integ tests
BassemHalim Mar 11, 2026
d21ca67
refactor: rename FeatureGroup to FeatureGroupManager
BassemHalim Mar 16, 2026
62a1e73
Basic functionality of iceberg property changing and retrieval in cre…
alexyoung13 Mar 19, 2026
dd53911
Added validation of IcebergProperties with valid list
alexyoung13 Mar 19, 2026
78b5bda
Added checking of only approved iceberg properties
alexyoung13 Mar 24, 2026
320e14f
Added checking of duplicate iceberg properties
alexyoung13 Mar 30, 2026
6d41abd
Added additional checking of duplicate iceberg properties and testing
alexyoung13 Mar 30, 2026
f0c84e3
Removed excess LakeFormation code to isolate Iceberg Properties change
alexyoung13 Mar 31, 2026
bdcbcf7
Removed excess LakeFormation tests and readded Athena Query tests
alexyoung13 Mar 31, 2026
c2426fe
Fixed event_time format in integ tests
alexyoung13 Mar 31, 2026
8158657
Removed excess fields from glue call in _get_iceberg_properties()
alexyoung13 Mar 31, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions docs/api/sagemaker_mlops.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,14 @@ Workflow Management
:undoc-members:
:show-inheritance:

Feature Store
-------------

.. automodule:: sagemaker.mlops.feature_store
:members:
:undoc-members:
:show-inheritance:

Local Development
-----------------

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,12 @@
# Licensed under the Apache License, Version 2.0
"""SageMaker FeatureStore V3 - powered by sagemaker-core."""

# Resources from core
# FeatureGroup with additional operational support
from sagemaker.core.resources import FeatureGroup, FeatureMetadata
from sagemaker.mlops.feature_store.feature_group_manager import FeatureGroupManager

# Resources from core
from sagemaker.core.resources import FeatureMetadata

# Shapes from core (Pydantic - no to_dict() needed)
from sagemaker.core.shapes import (
Expand Down Expand Up @@ -73,6 +77,7 @@
__all__ = [
# Resources
"FeatureGroup",
"FeatureGroupManager",
"FeatureMetadata",
# Shapes
"DataCatalogConfig",
Expand Down
Loading
Loading