Source code for feast.online_response

# Copyright 2020 The Feast Authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

from typing import Any, Dict, List, cast

from feast.serving.ServingService_pb2 import (
    GetOnlineFeaturesRequestV2,
    GetOnlineFeaturesResponse,
)
from feast.type_map import (
    _python_value_to_proto_value,
    feast_value_type_to_python_type,
    python_type_to_feast_value_type,
)
from feast.types.Value_pb2 import Value as Value


[docs]class OnlineResponse: """ Defines a online response in feast. """ def __init__(self, online_response_proto: GetOnlineFeaturesResponse): """ Construct a native online response from its protobuf version. Args: online_response_proto: GetOnlineResponse proto object to construct from. """ self.proto = online_response_proto @property def field_values(self): """ Getter for GetOnlineResponse's field_values. """ return self.proto.field_values
[docs] def to_dict(self) -> Dict[str, Any]: """ Converts GetOnlineFeaturesResponse features into a dictionary form. """ fields = [k for row in self.field_values for k, _ in row.fields.items()] features_dict: Dict[str, List[Any]] = {k: list() for k in fields} for row in self.field_values: for feature in features_dict.keys(): native_type_value = feast_value_type_to_python_type(row.fields[feature]) features_dict[feature].append(native_type_value) return features_dict
def _infer_online_entity_rows( entity_rows: List[Dict[str, Any]] ) -> List[GetOnlineFeaturesRequestV2.EntityRow]: """ Builds a list of EntityRow protos from Python native type format passed by user. Args: entity_rows: A list of dictionaries where each key-value is an entity-name, entity-value pair. Returns: A list of EntityRow protos parsed from args. """ entity_rows_dicts = cast(List[Dict[str, Any]], entity_rows) entity_row_list = [] entity_type_map = dict() for entity in entity_rows_dicts: fields = {} for key, value in entity.items(): # Allow for feast.types.Value if isinstance(value, Value): proto_value = value else: # Infer the specific type for this row current_dtype = python_type_to_feast_value_type(name=key, value=value) if key not in entity_type_map: entity_type_map[key] = current_dtype else: if current_dtype != entity_type_map[key]: raise TypeError( f"Input entity {key} has mixed types, {current_dtype} and {entity_type_map[key]}. That is not allowed. " ) proto_value = _python_value_to_proto_value(current_dtype, value) fields[key] = proto_value entity_row_list.append(GetOnlineFeaturesRequestV2.EntityRow(fields=fields)) return entity_row_list