|
26 | 26 |
|
27 | 27 | from feast.config import Config |
28 | 28 | from feast.constants import ConfigOptions as opt |
29 | | -from feast.core.CoreService_pb2 import ( |
| 29 | +from feast.data_format import ParquetFormat |
| 30 | +from feast.data_source import BigQuerySource, FileSource |
| 31 | +from feast.entity import Entity |
| 32 | +from feast.feature import Feature, FeatureRef, _build_feature_references |
| 33 | +from feast.feature_table import FeatureTable |
| 34 | +from feast.grpc import auth as feast_auth |
| 35 | +from feast.grpc.grpc import create_grpc_channel |
| 36 | +from feast.loaders.ingest import ( |
| 37 | + _check_field_mappings, |
| 38 | + _read_table_from_source, |
| 39 | + _upload_to_bq_source, |
| 40 | + _upload_to_file_source, |
| 41 | + _write_non_partitioned_table_from_source, |
| 42 | + _write_partitioned_table_from_source, |
| 43 | +) |
| 44 | +from feast.online_response import OnlineResponse, _infer_online_entity_rows |
| 45 | +from feast.protos.feast.core.CoreService_pb2 import ( |
30 | 46 | ApplyEntityRequest, |
31 | 47 | ApplyEntityResponse, |
32 | 48 | ApplyFeatureTableRequest, |
|
50 | 66 | ListProjectsRequest, |
51 | 67 | ListProjectsResponse, |
52 | 68 | ) |
53 | | -from feast.core.CoreService_pb2_grpc import CoreServiceStub |
54 | | -from feast.data_format import ParquetFormat |
55 | | -from feast.data_source import BigQuerySource, FileSource |
56 | | -from feast.entity import Entity |
57 | | -from feast.feature import Feature, FeatureRef, _build_feature_references |
58 | | -from feast.feature_table import FeatureTable |
59 | | -from feast.grpc import auth as feast_auth |
60 | | -from feast.grpc.grpc import create_grpc_channel |
61 | | -from feast.loaders.ingest import ( |
62 | | - _check_field_mappings, |
63 | | - _read_table_from_source, |
64 | | - _upload_to_bq_source, |
65 | | - _upload_to_file_source, |
66 | | - _write_non_partitioned_table_from_source, |
67 | | - _write_partitioned_table_from_source, |
68 | | -) |
69 | | -from feast.online_response import OnlineResponse, _infer_online_entity_rows |
70 | | -from feast.registry import Registry |
71 | | -from feast.serving.ServingService_pb2 import ( |
| 69 | +from feast.protos.feast.core.CoreService_pb2_grpc import CoreServiceStub |
| 70 | +from feast.protos.feast.serving.ServingService_pb2 import ( |
72 | 71 | GetFeastServingInfoRequest, |
73 | 72 | GetOnlineFeaturesRequestV2, |
74 | 73 | ) |
75 | | -from feast.serving.ServingService_pb2_grpc import ServingServiceStub |
| 74 | +from feast.protos.feast.serving.ServingService_pb2_grpc import ServingServiceStub |
| 75 | +from feast.registry import Registry |
76 | 76 | from feast.telemetry import log_usage |
77 | 77 |
|
78 | 78 | _logger = logging.getLogger(__name__) |
|
0 commit comments