Start the feature transformation server locally on a given port.
(self, port: int)
| 4025 | offline_server.start_server(self, host, port, tls_key_path, tls_cert_path) |
| 4026 | |
| 4027 | def serve_transformations(self, port: int) -> None: |
| 4028 | """Start the feature transformation server locally on a given port.""" |
| 4029 | warnings.warn( |
| 4030 | "On demand feature view is an experimental feature. " |
| 4031 | "This API is stable, but the functionality does not scale well for offline retrieval", |
| 4032 | RuntimeWarning, |
| 4033 | ) |
| 4034 | |
| 4035 | from feast import transformation_server |
| 4036 | |
| 4037 | transformation_server.start_server(self, port) |
| 4038 | |
| 4039 | def write_logged_features( |
| 4040 | self, logs: Union[pa.Table, Path], source: FeatureService |
no test coverage detected