Access the Feast–MLflow integration client. Lazily initializes on first access. Returns ``None`` when MLflow integration is not enabled, allowing callers to guard with ``if store.mlflow:``.
(self)
| 242 | |
| 243 | @property |
| 244 | def mlflow(self) -> Any: |
| 245 | """Access the Feast–MLflow integration client. |
| 246 | |
| 247 | Lazily initializes on first access. Returns ``None`` when MLflow |
| 248 | integration is not enabled, allowing callers to guard with |
| 249 | ``if store.mlflow:``. |
| 250 | """ |
| 251 | if self._mlflow_client is _UNSET: |
| 252 | self._mlflow_client = self._init_mlflow() |
| 253 | return self._mlflow_client |
| 254 | |
| 255 | @staticmethod |
| 256 | def _count_entities(entity_rows: Any) -> int: |
nothing calls this directly
no test coverage detected