You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: module_3/README.md
+3-7Lines changed: 3 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -82,15 +82,11 @@ Start up the Docker daemon and then use Docker Compose to spin up the services a
82
82
```console
83
83
$ docker-compose up
84
84
85
-
Creating network "module_1_default" with the default driver
86
-
Creating zookeeper ... done
85
+
Creating network "module_3_default" with the default driver
87
86
Creating redis ... done
88
-
Creating broker ... done
89
87
Creating feast_feature_server ... done
90
-
Creating feast_push_server ... done
91
-
Creating kafka_events ... done
92
88
Creating registry ... done
93
-
Attaching to zookeeper, redis, broker, feast_push_server, feast_feature_server, kafka_events, registry
89
+
Attaching to redis, feast_feature_server, registry
94
90
...
95
91
```
96
92
@@ -203,7 +199,7 @@ There are two broad approaches with streaming
203
199
- This means that Feast only needs to know about a "batch feature" because the assumption is those batch features are sufficiently fresh.
204
200
- **BUT** there are limits to how fresh your features are. You won't be able to get to minute level freshness.
205
201
2. **[Complex, very fresh features]** Build separate streaming pipelines for very fresh features
206
-
- It is on you to build out a separate streaming pipeline (e.g. using Spark Structured Streaming or Flink), ensuring the transformation logic is consistent with batch transformations, and calling the push API as per module 1.
202
+
- It is on you to build out a separate streaming pipeline (e.g. using Spark Structured Streaming or Flink), ensuring the transformation logic is consistent with batch transformations, and calling the push API as per [module 1](../module_1/README.md).
207
203
208
204
Feast will help enforce a consistent schema across batch + streaming features as they land in the online store.
0 commit comments