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
**Option 3: Simple materialization without timestamps**
126
+
```commandline
127
+
feast materialize --disable-event-timestamp
128
+
```
129
+
130
+
The `--disable-event-timestamp` flag allows you to materialize features using the current datetime without needing to specify start and end timestamps. This is useful for quick testing or when you want to materialize all available data up to now.
131
+
117
132
```commandline
118
133
Materializing feature view driver_hourly_stats from 2021-04-14 to 2021-04-15 done!
Copy file name to clipboardExpand all lines: docs/getting-started/quickstart.md
+7-1Lines changed: 7 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -499,13 +499,19 @@ print(training_df.head())
499
499
We now serialize the latest values of features since the beginning of time to prepare for serving. Note, `materialize_incremental` serializes all new features since the last `materialize` call, or since the time provided minus the `ttl` timedelta. In this case, this will be `CURRENT_TIME - 1 day` (`ttl` was set on the `FeatureView` instances in [feature_repo/feature_repo/example_repo.py](feature_repo/feature_repo/example_repo.py)).
500
500
501
501
{% tabs %}
502
-
{% tab title="Bash" %}
502
+
{% tab title="Bash (with timestamp)" %}
503
503
```bash
504
504
CURRENT_TIME=$(date -u +"%Y-%m-%dT%H:%M:%S")
505
505
506
506
feast materialize-incremental $CURRENT_TIME
507
507
```
508
508
{% endtab %}
509
+
{% tab title="Bash (simple)" %}
510
+
```bash
511
+
# Alternative: Use current datetime without specifying timestamps
**Option 3: Simple materialization without timestamps**
124
+
```commandline
125
+
feast materialize --disable-event-timestamp
126
+
```
127
+
128
+
The `--disable-event-timestamp` flag allows you to materialize features using the current datetime without needing to specify start and end timestamps. This is useful for quick testing or when you want to materialize all available data up to now.
129
+
115
130
```commandline
116
131
Materializing feature view driver_hourly_stats from 2021-04-14 to 2021-04-15 done!
0 commit comments