Skip to content
Open
Changes from all commits
Commits
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
Update README.md
the apply function's arguments were not correctly organized. the feast entity and feature table should be on a list; however, the feature table object will be considered as the project name which should be a string.
  • Loading branch information
alashti authored Nov 28, 2021
commit 2a36a38ccfd245800b670a6c64f92c5bfeb8b555
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ ft = feast.FeatureTable(
)

# Register objects in Feast
client.apply(entity, ft)
client.apply([entity, ft], client.project)

# Start spark streaming ingestion job that reads from kafka and writes to the online store
feast_spark.Client(client).start_stream_to_online_ingestion(ft)
```
```