Hello, I'm using kedro-mlflow and I'm having some ...
# questions
d
Hello, I'm using kedro-mlflow and I'm having some problems with UI. I tried several times to shutdown UI (by killing gunicorn processes) but it didn't help (after a few seconds UI was starting working again). Do you know any other options to do it? Maybe there is a built-in kedro-mlflow command, which I didn't find in the documentation?
m
It’s most likely related to mlfow itself. Kedro-mlflow is a wrapper library that does the heavy lifting on the Kedro<-> mlflow integration part, it has nothing to do with how the mlflow (server) works.
πŸ‘ 1
ps aux | grep mlflow
-> get the PID and just
kill -9
it πŸ™‚
πŸ‘ 1
d
Thank you very much, after a few more minutes of searching I discovered a problem with one docker script on my computer which was all the time running and that was the reason why I couldn't shutdown UI. Thanks again πŸ™‚
πŸ‘πŸΌ 1