MCPcopy Index your code
hub / github.com/feast-dev/feast / log_apply

Method log_apply

sdk/python/feast/mlflow_integration/client.py:243–252  ·  view source on GitHub ↗

Log a feast apply operation to MLflow.

(
        self,
        changed_objects: List[Any],
        transition_types: Optional[Dict[str, str]] = None,
    )

Source from the content-addressed store, hash-verified

241 )
242
243 def log_apply(
244 self,
245 changed_objects: List[Any],
246 transition_types: Optional[Dict[str, str]] = None,
247 ) -> bool:
248 """Log a feast apply operation to MLflow."""
249 return self._logger_impl.log_apply(
250 changed_objects=changed_objects,
251 transition_types=transition_types,
252 )
253
254 def log_materialize(
255 self,

Calls

no outgoing calls