Skip to content

Commit 7e35ca9

Browse files
woopgitbook-bot
authored andcommitted
GitBook: [v0.4-branch] 24 pages and 3 assets modified
1 parent d143064 commit 7e35ca9

5 files changed

Lines changed: 3 additions & 31 deletions

File tree

24.1 KB
Loading

docs/.gitbook/assets/basic-architecture-diagram (3).svg

Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 1 addition & 0 deletions
Loading

docs/user-guide/feature-retrieval.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,5 +125,5 @@ data = client.get_online_features(
125125
)
126126
```
127127

128-
Online serving with Feast is built to be very low latency. Feast Serving provides a [gRPC API](https://api.docs.feast.dev/grpc/feast.serving.pb.html) that is backed by [Redis](https://redis.io/). We also provide support for [Python](https://api.docs.feast.dev/python/), [Go](https://godoc.org/github.com/gojek/feast/sdk/go), and Java clients.
128+
Online serving with Feast is built to be very low latency. Feast Serving provides a [gRPC API](https://api.docs.feast.dev/grpc/feast.serving.pb.html) that is backed by [Redis](https://redis.io/). We also provide support for [Python](https://api.docs.feast.dev/python/), [Go](https://godoc.org/github.com/gojek/feast/sdk/go), and Java clients.
129129

docs/user-guide/feature-sets.md

Lines changed: 0 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -52,33 +52,3 @@ cust_trans_fs = FeatureSet.from_yaml("customer_transactions_feature_set.yaml")
5252
client.ingest(cust_trans_fs, customer_data)
5353
```
5454

55-
### Making changes to Feature Sets
56-
57-
In order to facilitate the need for feature set definitions to change over time, a limited set of changes can be made to existing feature sets.
58-
59-
To apply changes to a feature set:
60-
61-
```text
62-
# With existing feature set
63-
cust_trans_fs = FeatureSet.from_yaml("customer_transactions_feature_set.yaml")
64-
65-
# Add new feature
66-
cust_trans_fs.add(Feature(name="avg_basket_size", dtype=ValueType.INT32))
67-
68-
# Apply changed feature set
69-
client.apply(cust_trans_fs)
70-
```
71-
72-
Permitted changes include:
73-
74-
* Adding new features
75-
* Deleting existing features \(note that deleted features are _tombstoned_ and remain on record_,_ rather than removed completely; as a result, new features will not be able to take the names of these deleted features\)
76-
* Changing features' TFX schemas
77-
* Changing the feature set's source and max age
78-
79-
Note that the following are **not** allowed:
80-
81-
* Changes to project or name of the feature set.
82-
* Changes to entities.
83-
* Changes to names and types of existing features.
84-

0 commit comments

Comments
 (0)