Skip to content

Commit f221fcb

Browse files
committed
Fix missing indent in README
Signed-off-by: Danny Chiao <danny@tecton.ai>
1 parent 3d7a1ca commit f221fcb

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

module_1/README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ In this module, we focus on building features for online serving, and keeping th
2121
- [A note on Feast feature servers + push servers](#a-note-on-feast-feature-servers--push-servers)
2222
- [Step 7: Scaling up and scheduling materialization](#step-7-scaling-up-and-scheduling-materialization)
2323
- [Background: configuring materialization](#background-configuring-materialization)
24-
- [Step 7a: Scheduling materialization](#step-7a-scheduling-materialization)
24+
- [Step 7: Scheduling materialization](#step-7-scheduling-materialization)
25+
- [Step 7a: Setting up Airflow](#step-7a-setting-up-airflow)
2526
- [Step 7b: Examine the Airflow DAG](#step-7b-examine-the-airflow-dag)
2627
- [Q: What if different feature views have different freshness requirements?](#q-what-if-different-feature-views-have-different-freshness-requirements)
2728
- [Step 7c: Enable the Airflow DAG](#step-7c-enable-the-airflow-dag)
@@ -220,11 +221,13 @@ You can speed up / scale this up in different ways:
220221
To run many parallel materialization jobs, you'll want to use the **SQL registry** (which is already used in this module).
221222
Then you could run multiple materialization jobs in parallel (e.g. using `feast materialize [FEATURE_VIEW_NAME] start_time end_time`)
222223

223-
### Step 7a: Scheduling materialization
224+
### Step 7: Scheduling materialization
224225
To ensure fresh features, you'll want to schedule materialization jobs regularly. This can be as simple as having a cron job that calls `feast materialize-incremental`.
225226

226227
Users may also be interested in integrating with Airflow, in which case you can build a custom Airflow image with the Feast SDK installed, and then use a `PythonOperator` (with `store.materialize`).
227228

229+
#### Step 7a: Setting up Airflow
230+
228231
We setup a standalone version of Airflow to set up the PythonOperator (Airflow now prefers @task for this).
229232

230233
```bash

0 commit comments

Comments
 (0)