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
Nested collections allow storing multi-dimensional data with unlimited depth:
355
+
{% hint style="warning" %}
356
+
`Decimal` is **not** inferred from any backend schema. You must declare it explicitly in your feature view schema. The pandas dtype for `Decimal` columns is `object` (holding `decimal.Decimal` instances), not a numeric dtype.
357
+
{% endhint %}
358
+
359
+
### Nested Collection Type Usage Examples
319
360
320
361
```python
321
362
# List of lists — e.g., weekly score history per user
@@ -420,7 +461,7 @@ Each of these columns must be associated with a Feast type, which requires conve
420
461
*`source_datatype_to_feast_value_type` calls the appropriate method in `type_map.py`. For example, if a `SnowflakeSource` is being examined, `snowflake_python_type_to_feast_value_type` from `type_map.py` will be called.
421
462
422
463
{% hint style="info" %}
423
-
**Types that cannot be inferred:**`Set`, `Json`, `Struct`, `PdfBytes`, and `ImageBytes` types are never inferred from backend schemas. If you use these types, you must declare them explicitly in your feature view schema.
464
+
**Types that cannot be inferred:**`Set`, `Json`, `Struct`, `Decimal`, `PdfBytes`, and `ImageBytes` types are never inferred from backend schemas. If you use these types, you must declare them explicitly in your feature view schema.
0 commit comments