Skip to content

Commit f793376

Browse files
authored
Merge pull request #35 from ciaran28/main
Readme Update for Feature Store Integration
2 parents cbe887a + f34d58e commit f793376

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

.github/MLOps_Engineer/Utilities/Bash/utilsSetEnvVariables.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,11 @@ DATABRICKS_INSTANCE="$(az databricks workspace list -g $RESOURCE_GROUP_NAME --qu
1616
WORKSPACE_ID=$(az databricks workspace list -g $RESOURCE_GROUP_NAME --query "[].id" -o tsv)
1717
AZ_KEYVAULT_NAME=$(az keyvault list -g $RESOURCE_GROUP_NAME --query "[].name" -o tsv)
1818
SUBSCRIPTION_ID=$( az account show --query id -o tsv )
19+
echo $SUBSCRIPTION_ID
20+
echo $DATABRICKS_ORDGID
21+
echo $WORKSPACE_ID
22+
echo $AZ_KEYVAULT_NAME
23+
echo $SUBSCRIPTION_ID
1924
#DATABRICKS_TOKEN=$(az keyvault secret show --name "dbkstoken" --vault-name $AZ_KEYVAULT_NAME --query "value" -o tsv)
2025

2126

README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,22 @@ https://learn.microsoft.com/en-us/azure/databricks/machine-learning/mlops/deploy
152152

153153
---
154154
---
155+
## Feature Store Integration
156+
157+
In an organization, thousands of features are buried in different scripts and in different formats; they are not captured, organized, or preserved, and thus cannot be reused and leveraged by teams other than those who generated them.
158+
159+
Because feature engineering is so important for machine learning models and features cannot be shared, data scientists must duplicate their feature engineering efforts across teams.
160+
161+
To solve those problems, a concept called feature store was developed, so that:
162+
163+
- Features are centralized in an organization and can be reused
164+
- Features can be served in real-time with low latency
165+
166+
![image](https://user-images.githubusercontent.com/108273509/216114586-0c4dea68-a98c-4cf6-938a-ceecf11b12a8.png)
167+
168+
---
169+
---
170+
155171

156172
## Create Repository
157173
<details open>

0 commit comments

Comments
 (0)