From e58022a5a6157842b6ec2dd4c7979f31020cfe23 Mon Sep 17 00:00:00 2001 From: Zhu Zhanyan Date: Tue, 8 Sep 2020 04:15:45 +0000 Subject: [PATCH] GitBook: [master] 34 pages modified --- docs/contributing/development-guide.md | 6 +++--- docs/reference/configuration-reference.md | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/contributing/development-guide.md b/docs/contributing/development-guide.md index 5aeaf64d8e..e71c91d00a 100644 --- a/docs/contributing/development-guide.md +++ b/docs/contributing/development-guide.md @@ -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 @@ -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() diff --git a/docs/reference/configuration-reference.md b/docs/reference/configuration-reference.md index a96ba88100..4d4f24dd9d 100644 --- a/docs/reference/configuration-reference.md +++ b/docs/reference/configuration-reference.md @@ -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: