https://kedro.org/ logo
#questions
Title
# questions
d

Dawid Bugajny

04/06/2023, 7:39 AM
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

marrrcin

04/06/2023, 7:45 AM
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

Dawid Bugajny

04/06/2023, 8:07 AM
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
2 Views