15
15
from __future__ import annotations
16
16
17
17
import warnings
18
- from typing import List , Union
18
+ from typing import Any , Dict , List , Union
19
19
20
20
from hsfs import engine , feature , util
21
21
from hsfs import feature_group as fg
@@ -49,12 +49,18 @@ def _update_feature_group_schema_on_demand_transformations(
49
49
transformed_features = []
50
50
dropped_features = []
51
51
for tf in feature_group .transformation_functions :
52
- transformed_features .append (
53
- feature .Feature (
54
- tf .hopsworks_udf .output_column_names [0 ],
55
- tf .hopsworks_udf .return_types [0 ],
56
- on_demand = True ,
57
- )
52
+ transformed_features .extend (
53
+ [
54
+ feature .Feature (
55
+ output_column_name ,
56
+ return_type ,
57
+ on_demand = True ,
58
+ )
59
+ for output_column_name , return_type in zip (
60
+ tf .hopsworks_udf .output_column_names ,
61
+ tf .hopsworks_udf .return_types ,
62
+ )
63
+ ]
58
64
)
59
65
if tf .hopsworks_udf .dropped_features :
60
66
dropped_features .extend (tf .hopsworks_udf .dropped_features )
@@ -141,6 +147,7 @@ def insert(
141
147
storage ,
142
148
write_options ,
143
149
validation_options : dict = None ,
150
+ transformation_context : Dict [str , Any ] = None ,
144
151
):
145
152
dataframe_features = engine .get_instance ().parse_schema_feature_group (
146
153
feature_dataframe ,
@@ -154,7 +161,9 @@ def insert(
154
161
and feature_group .transformation_functions
155
162
):
156
163
feature_dataframe = engine .get_instance ()._apply_transformation_function (
157
- feature_group .transformation_functions , feature_dataframe
164
+ feature_group .transformation_functions ,
165
+ feature_dataframe ,
166
+ transformation_context = transformation_context ,
158
167
)
159
168
160
169
dataframe_features = (
@@ -358,6 +367,7 @@ def insert_stream(
358
367
timeout ,
359
368
checkpoint_dir ,
360
369
write_options ,
370
+ transformation_context : Dict [str , Any ] = None ,
361
371
):
362
372
if not feature_group .online_enabled and not feature_group .stream :
363
373
raise exceptions .FeatureStoreException (
@@ -376,7 +386,9 @@ def insert_stream(
376
386
377
387
if feature_group .transformation_functions :
378
388
dataframe = engine .get_instance ()._apply_transformation_function (
379
- feature_group .transformation_functions , dataframe
389
+ feature_group .transformation_functions ,
390
+ dataframe ,
391
+ transformation_context = transformation_context ,
380
392
)
381
393
382
394
util .validate_embedding_feature_type (
0 commit comments