feat: add built-in run_test_experiment job to test the mlflow server internally so its super easy to test if it actually works e2e

This commit is contained in:
Tomasz Dłuski
2023-11-05 21:15:28 +01:00
parent 1e92560fb5
commit e9030c867d
4 changed files with 49 additions and 9 deletions

View File

@@ -67,6 +67,25 @@ services:
command: tcp db:3306 -t 90s -i 250ms
networks:
- internal
run_test_experiment:
build:
context: ./test_experiment
dockerfile: Dockerfile
depends_on:
- "mlflow"
environment:
- AWS_ACCESS_KEY_ID=${AWS_ACCESS_KEY_ID}
- AWS_SECRET_ACCESS_KEY=${AWS_SECRET_ACCESS_KEY}
- AWS_DEFAULT_REGION=${AWS_REGION}
- MLFLOW_S3_ENDPOINT_URL=http://s3:9000
- MLFLOW_TRACKING_URI=http://mlflow:5000
entrypoint: >
/bin/sh -c "
python3 mlflow_tracking.py;
exit 0;
"
networks:
- internal
networks:
internal:
public:

View File

@@ -1,22 +1,22 @@
import os
from random import random, randint
from mlflow import mlflow,log_metric, log_param, log_artifacts
import mlflow
if __name__ == "__main__":
with mlflow.start_run() as run:
mlflow.set_tracking_uri('http://localhost:5000')
print("Running mlflow_tracking.py")
log_param("param1", randint(0, 100))
mlflow.log_param("param1", randint(0, 100))
log_metric("foo", random())
log_metric("foo", random() + 1)
log_metric("foo", random() + 2)
mlflow.log_metric("foo", random())
mlflow.log_metric("foo", random() + 1)
mlflow.log_metric("foo", random() + 2)
if not os.path.exists("outputs"):
os.makedirs("outputs")
with open("outputs/test.txt", "w") as f:
f.write("hello world!")
log_artifacts("outputs")
mlflow.log_artifacts("outputs")

View File

@@ -1,7 +1,6 @@
FROM continuumio/miniconda3:latest
RUN pip install mlflow boto3 pymysql
RUN pip install mlflow boto3
ADD . /app
WORKDIR /app
COPY . .

View File

@@ -0,0 +1,22 @@
import os
from random import random, randint
import mlflow
if __name__ == "__main__":
with mlflow.start_run() as run:
mlflow.set_tracking_uri('http://mlflow:5000')
print("Running mlflow_tracking.py")
mlflow.log_param("param1", randint(0, 100))
mlflow.log_metric("foo", random())
mlflow.log_metric("foo", random() + 1)
mlflow.log_metric("foo", random() + 2)
if not os.path.exists("outputs"):
os.makedirs("outputs")
with open("outputs/test.txt", "w") as f:
f.write("hello world!")
mlflow.log_artifacts("outputs")