Skip to content

Commit

Permalink
GitBook: [master] 34 pages modified
Browse files Browse the repository at this point in the history
  • Loading branch information
Zhu Zhanyan authored and gitbook-bot committed Sep 8, 2020
1 parent dbec473 commit e58022a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions docs/contributing/development-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ Note that Feast currently only supports source of type `KAFKA`, so you must have

### 4.7 Ingestion and Population of Feature Values

```text
```python
# Produce FeatureRow messages to Kafka so it will be ingested by Feast
# and written to the registered stores.
# Make sure the value here is the topic assigned to the feature set
Expand Down Expand Up @@ -416,8 +416,8 @@ timestamp.FromJsonString(
)
row.event_timestamp.CopyFrom(timestamp)

# The format is [PROJECT_NAME]/[FEATURE_NAME]:[VERSION]
row.feature_set = "your_project_name/driver:1"
# The format is [PROJECT_NAME]/[FEATURE_NAME]
row.feature_set = "your_project_name/driver"

producer.send("your-kafka-topic", row.SerializeToString())
producer.flush()
Expand Down
2 changes: 1 addition & 1 deletion docs/reference/configuration-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ The Configuration Reference will walk through how to configure each Feast compon
* [Feast CLI and Feast Python SDK](configuration-reference.md#3-feast-cli-and-feast-python-sdk)
* [Feast Go and Java SDK](configuration-reference.md#4-feast-java-and-go-sdk)

## [2. Feast Core, Serving and Job Controller](configuration-reference.md#3-feast-cli-and-feast-python-sdk)
## 2. Feast Core, Serving and Job Controller

Available Configuration Properties for Feast Core, Serving and Job Controller can be referenced from the corresponding `application.yml` of each component:

Expand Down

0 comments on commit e58022a

Please sign in to comment.