trs-mlflow 0.7.0

This crate contains an asynchronous client which implements 2.0 REST API of MlFlow server.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
//! This crate contains an unofficial asynchronous mlflow client which uses 2.0
//! API.
//!
//! The whole API description can be found here: <https://mlflow.org/docs/latest/rest-api.html>
//!
//! Usage example:
//! ```rust, no_run
//! # #[tokio::main]
//! # async fn main() {
//! use trs_mlflow::{run::CreateRun, Client};
//!
//! let client = Client::new("http://localhost:5000/api");
//!
//! let experiment_id = client
//!     .create_experiment(&"foo", vec![])
//!     .await
//!     .expect("BUG: Cannot create experiment");
//!
//! let create = CreateRun::new()
//!     .run_name("bar")
//!     .experiment_id(&experiment_id)
//!     .build();
//!
//! let run = client
//!     .create_run(create)
//!     .await
//!     .expect("BUG: Cannot create run");
//!
//! # }
//! ```
//!
//!
//! # Testing
//!
//! If you want to run tests you need to run MlFlow server locally, which can
//! be done by running this command:
//! ```sh
//! ./server/run.sh
//! ```
//!
//! This command creates a new venv, installs server and then runs it.
//!
//! # Disclaimer
//!
//! This is heavy WIP crate as I'm still trying to figure out how to wrap some
//! API methods.
pub mod artifact;
pub mod config;
mod error;
pub mod experiment;
mod http;
pub mod modelversion;
pub mod registered;
pub mod run;

use crate::config::{BasicAuth, ClientConfig, DownloadConfig, MlflowConfig};
use crate::error::is_retryable;
use crate::http::Response;
use crate::{artifact::*, experiment::*, modelversion::*, registered::*, run::*};
use anyhow::{anyhow, Context, Result};
use backon::{ExponentialBuilder, Retryable};
use reqwest::{Method, RequestBuilder};
use serde::{de::DeserializeOwned, Deserialize, Serialize};
use serde_json::json;
use std::collections::HashMap;
use std::path::Path;
use tokio::{
    fs,
    fs::{create_dir_all, File},
    io::AsyncWriteExt,
    task::JoinSet,
};
use tracing::{debug, info, warn};

/// This is low-level client which reflects mlflow 2.0 API.
#[derive(Clone, Debug)]
pub struct Client {
    pub client: reqwest::Client,
    /// Mlflow related configuration.
    pub mlflow: MlflowConfig,
    /// Configuration which is related to artifact download.
    pub download: DownloadConfig,
}

pub(crate) mod bs {
    use serde::Deserialize;

    #[derive(Deserialize)]
    pub struct Dummy {}

    #[derive(Deserialize)]
    pub struct Run {
        pub run: super::Run,
    }

    #[derive(Deserialize)]
    pub struct Runs {
        #[serde(default)]
        pub runs: Vec<super::Run>,
    }

    #[derive(Deserialize)]
    pub struct RunInfo {
        pub run_info: super::RunInfo,
    }

    #[derive(Deserialize)]
    pub struct ModelVersion {
        pub model_version: super::ModelVersion,
    }

    #[derive(Deserialize)]
    pub struct RegisteredModel {
        pub registered_model: super::RegisteredModel,
    }

    #[derive(Deserialize)]
    pub struct RegisteredModels {
        #[serde(default)]
        pub registered_models: Vec<super::RegisteredModel>,
    }
}

// TODO(ast): add retry config
impl Client {
    /// Creates a new client which uses a default [`reqwest::Client`] without
    /// additional settings.
    pub fn new(urlbase: impl AsRef<str>) -> Self {
        Self {
            client: reqwest::Client::new(),
            mlflow: MlflowConfig {
                urlbase: urlbase.as_ref().to_owned(),
                auth: None,
                no_retry_status_codes: vec![400, 401, 403, 404, 409, 422],
            },
            download: DownloadConfig {
                retry: false,
                tasks: 16,
                blacklist: Default::default(),
                cache_local_artifacts: false,
                file_size_check: true,
            },
        }
    }

    /// Creates a new client using provided configuration.
    pub fn new_from_config(config: ClientConfig) -> Self {
        Self {
            client: reqwest::Client::new(),
            mlflow: config.mlflow,
            download: config.download,
        }
    }

    /// Sets basic auth which will be send to mlflow server.
    pub fn with_auth(mut self, auth: BasicAuth) -> Self {
        self.mlflow.auth = Some(auth);
        self
    }

    fn make_url(&self, path: impl AsRef<str>) -> String {
        format!("{}/{}", self.mlflow.urlbase, path.as_ref())
    }

    /// Send request to mlflow and handles returned errors.
    async fn send_json_request_no_retry<P: Serialize>(
        &self,
        method: Method,
        path: impl AsRef<str>,
        payload: &P,
    ) -> Result<Response> {
        let mut request = self
            .client
            .request(method, self.make_url(path.as_ref()))
            .json(&payload);

        request = self.assign_basic_auth(request);

        Response(request.send().await?).error_for_status().await
    }

    /// Send request to mlflow and handles returned errors.
    async fn send_request<P: Serialize>(
        &self,
        method: Method,
        path: impl AsRef<str>,
        payload: P,
    ) -> Result<Response> {
        let future = || async {
            self.send_json_request_no_retry(method.clone(), path.as_ref(), &payload)
                .await
        };

        future
            .retry(ExponentialBuilder::default())
            .when(|e| is_retryable(&self.mlflow.no_retry_status_codes, e))
            .notify(|error, duration| {
                warn!("Retrying in {:?}, got an error: {:?}", error, duration);
            })
            .await
            .with_context(|| format!("Cannot send request to: {:?}", path.as_ref()))
    }

    /// Assigns basic auth if client uses it into provided request builder.
    fn assign_basic_auth(&self, request: RequestBuilder) -> RequestBuilder {
        if let Some(auth) = self.mlflow.auth.as_ref() {
            request.basic_auth(
                auth.user.expose_secret().to_owned(),
                Some(auth.password.expose_secret().to_owned()),
            )
        } else {
            request
        }
    }

    /// Create an experiment with a name. Returns the ID of the newly created
    /// experiment. Validates that another experiment with the same name does
    /// not already exist and fails if another experiment with the same name
    /// already exists.
    pub async fn create_experiment(&self, name: &str, tags: Vec<KeyValue>) -> Result<String> {
        let path = "2.0/mlflow/experiments/create";
        let request = CreateExperiment {
            name: name.to_owned(),
            tags,
        };

        self.send_request(Method::POST, path, request)
            .await?
            .json::<ExperimentId>()
            .await
            .map(|response| response.experiment_id)
    }

    /// Mark an experiment and associated metadata, runs, metrics, params, and
    /// tags for deletion. If the experiment uses FileStore, artifacts
    /// associated with experiment are also deleted.
    pub async fn delete_experiment(&self, experiment_id: &str) -> Result<()> {
        let path = "2.0/mlflow/experiments/delete";
        let request = ExperimentId {
            experiment_id: experiment_id.to_owned(),
        };

        self.send_request(Method::POST, path, request)
            .await
            .map(|_| ())
    }

    /// Get metadata for an experiment. This method works on deleted
    /// experiments.
    pub async fn get_experiment(&self, experiment_id: &str) -> Result<Experiment> {
        let path = "2.0/mlflow/experiments/get";
        let request = ExperimentId {
            experiment_id: experiment_id.to_owned(),
        };

        #[derive(Deserialize)]
        struct Response {
            experiment: Experiment,
        }

        self.send_request(Method::GET, path, request)
            .await?
            .json::<Response>()
            .await
            .map(|response| response.experiment)
    }

    /// Get metadata for an experiment.
    ///
    /// This endpoint will return deleted experiments, but prefers the active
    /// experiment if an active and deleted experiment share the same name. If
    /// multiple deleted experiments share the same name, the API will return
    /// one of them.
    pub async fn get_experiment_by_name(&self, name: &str) -> Result<Experiment> {
        let path = "2.0/mlflow/experiments/get-by-name";
        let request = json!({
            "experiment_name": name
        });

        #[derive(Deserialize)]
        struct Response {
            experiment: Experiment,
        }

        self.send_request(Method::GET, path, request)
            .await?
            .json::<Response>()
            .await
            .map(|response| response.experiment)
    }

    /// Loads experiment with specified name or create one with that name and without
    /// tags.
    pub async fn get_or_create_experiment(
        &self,
        name: &str,
        tags: Vec<KeyValue>,
    ) -> Result<Experiment> {
        let path = "2.0/mlflow/experiments/get-by-name";
        let request = json!({
            "experiment_name": name
        });

        #[derive(Deserialize)]
        struct Response {
            experiment: Experiment,
        }

        let result = self
            .send_json_request_no_retry(Method::GET, path, &request)
            .await;

        match result {
            Err(_) => {
                let experiment_id = self.create_experiment(name, tags).await?;
                self.get_experiment(&experiment_id).await
            }
            Ok(response) => response
                .json::<Response>()
                .await
                .map(|response| response.experiment),
        }
    }

    /// Create a new run within an experiment. A run is usually a single
    /// execution of a machine learning or data ETL pipeline. MLflow uses runs
    /// to track Param, Metric, and RunTag associated with a single execution.
    pub async fn create_run(&self, create: CreateRun) -> Result<Run> {
        let path = "2.0/mlflow/runs/create";

        self.send_request(Method::POST, path, create)
            .await?
            .json::<bs::Run>()
            .await
            .map(|value| value.run)
    }

    /// Get metadata, metrics, params, and tags for a run. In the case where
    /// multiple metrics with the same key are logged for a run, return only the
    /// value with the latest timestamp. If there are multiple values with the
    /// latest timestamp, return the maximum of these values.
    pub async fn get_run(&self, run_id: &str) -> Result<Run> {
        let path = "2.0/mlflow/runs/get";
        let request = Request {
            run_id: run_id.to_string(),
        };

        #[derive(Serialize)]
        struct Request {
            run_id: String,
        }

        self.send_request(Method::GET, path, request)
            .await?
            .json::<bs::Run>()
            .await
            .map(|value| value.run)
    }

    /// Search for runs that satisfy expressions. Search expressions can use
    /// Metric and Param keys.
    pub async fn search_runs(&self, search: SearchRuns) -> Result<Vec<Run>> {
        let path = "2.0/mlflow/runs/search";

        self.send_request(Method::POST, path, search)
            .await?
            .json::<bs::Runs>()
            .await
            .map(|response| response.runs)
    }

    /// Update run metadata.
    pub async fn update_run(&self, update: UpdateRun) -> Result<RunInfo> {
        let path = "2.0/mlflow/runs/update";

        self.send_request(Method::POST, path, update)
            .await?
            .json::<bs::RunInfo>()
            .await
            .map(|value| value.run_info)
    }

    /// Log a batch of metrics, params, and tags for a run. If any data failed
    /// to be persisted, the server will respond with an error (non-200 status
    /// code). In case of error (due to internal server error or an invalid
    /// request), partial data may be written.
    pub async fn add_run_meta(&self, run_id: &str, meta: RunData) -> Result<()> {
        let path = "2.0/mlflow/runs/log-batch";
        let request = json!({
            "run_id": run_id.to_owned(),
            "metrics": meta.metrics,
            "params": meta.params,
            "tags": meta.tags
        });

        self.send_request(Method::POST, path, request)
            .await
            .map(|_| ())
    }

    pub async fn delete_run(&self, run_id: &str) -> Result<()> {
        let path = "2.0/mlflow/runs/delete";

        self.send_request(Method::POST, path, json!({"run_id": run_id}))
            .await
            .map(|_| ())
    }

    pub async fn add_run_inputs(&self, run_id: &str, inputs: Vec<DataSetInput>) -> Result<()> {
        let path = "2.0/mlflow/runs/log-inputs";
        let request = json!({
            "run_id": run_id.to_owned(),
            "datasets": inputs,
        });

        self.send_request(Method::POST, path, request)
            .await
            .map(|_| ())
    }

    pub async fn delete_registered_model(&self, name: &str) -> Result<()> {
        let path = "2.0/mlflow/registered-models/delete";
        let request = json!({"name": name.to_owned()});

        self.send_request(Method::DELETE, path, request)
            .await
            .map(|_| ())
    }

    pub async fn register_model(&self, request: RegisterModel) -> Result<RegisteredModel> {
        let path = "2.0/mlflow/registered-models/create";

        self.send_request(Method::POST, path, request)
            .await?
            .json::<bs::RegisteredModel>()
            .await
            .map(|response| response.registered_model)
    }

    pub async fn get_registered_model(&self, name: &str) -> Result<RegisteredModel> {
        let path = "2.0/mlflow/registered-models/get";
        let request = json!({"name": name.to_owned()});

        self.send_request(Method::GET, path, request)
            .await?
            .json::<bs::RegisteredModel>()
            .await
            .map(|response| response.registered_model)
    }

    pub async fn search_registered_models(&self, filter: &str) -> Result<Vec<RegisteredModel>> {
        let path = "2.0/mlflow/registered-models/search";
        let request = json!({"filter": filter.to_owned()});

        self.send_request(Method::GET, path, request)
            .await?
            .json::<bs::RegisteredModels>()
            .await
            .map(|response| response.registered_models)
    }

    pub async fn create_model_version(&self, request: CreateModelVersion) -> Result<ModelVersion> {
        let path = "2.0/mlflow/model-versions/create";

        self.send_request(Method::POST, path, request)
            .await?
            .json::<bs::ModelVersion>()
            .await
            .map(|response| response.model_version)
    }

    pub async fn transition_model_version_stage(
        &self,
        request: TransitionModelVersionStage,
    ) -> Result<ModelVersion> {
        let path = "2.0/mlflow/model-versions/transition-stage";

        self.send_request(Method::POST, path, request)
            .await?
            .json::<bs::ModelVersion>()
            .await
            .map(|response| response.model_version)
    }

    /// Lists all artifacts (recursively) for a run.
    pub async fn list_run_artifacts(&self, run_id: &str) -> Result<ListedArtifacts> {
        let path = "2.0/mlflow/artifacts/list";
        let request = json!({
            "run_id": run_id
        });

        let mut response = self
            .send_request(Method::GET, path, request)
            .await?
            .json::<ListedArtifacts>()
            .await?;

        let mut tocheck = response.files.drain(..).collect::<Vec<_>>();

        while let Some(info) = tocheck.pop() {
            // file is not a directory, there is nothing to do
            if !info.is_dir {
                response.files.push(info);
                continue;
            }

            debug!("Listing directory: {:?}", info.path);

            let request = json!({
                "run_id": run_id,
                "path": info.path,
            });

            let mut files = self
                .send_request(Method::GET, path, request)
                .await?
                .json::<ListedArtifacts>()
                .await?
                .files;

            tocheck.append(&mut files);
        }

        Ok(response)
    }

    /// Downloads multiple artifacts from multiple runs.
    pub async fn download_artifacts(
        &self,
        downloads: Vec<DownloadRunArtifacts>,
    ) -> Result<Vec<RunArtifacts>> {
        // Create DownloadRunArtifact for earch artifact and each download
        // command
        let mut downloads = downloads
            .into_iter()
            .flat_map(|downloads| downloads.as_single_downloads())
            .collect::<Vec<_>>();

        // Filter all blacklisted artifacts
        downloads.retain(|download| {
            if self.download.is_blacklisted(&download.file) {
                debug!("Filtering out blacklisted file: {}", download.file);
                false
            } else {
                true
            }
        });

        let chunk_size = if downloads.len() <= self.download.tasks {
            1
        } else {
            downloads.len() / self.download.tasks
        };

        // Creates batch of artifacts for each download worker:
        //    Artifacts = [1, 2, 3, 4, 5], Tasks=2
        //    Task1 = [1, 2, 3]
        //    Task2 = [4, 5]
        //    Batches = [Task1, Task2]
        let batches = downloads.chunks(chunk_size).map(|chunks| chunks.to_vec());

        let mut tasks = JoinSet::<Result<Vec<_>>>::new();

        for (idx, batch) in batches.enumerate() {
            let client = self.clone();

            tasks.spawn(async move {
                debug!("Worker {} has got #{} files", idx, batch.len());

                let mut completed = Vec::with_capacity(batch.len());

                for download in batch {
                    debug!("Starting {:?}", download);
                    let size = client.download_artifact(&download).await?;
                    debug!(
                        "Downloaded artifact {} [size={}, expected={}]",
                        download.file, size, download.expected_size
                    );
                    completed.push(download);
                }

                Ok(completed)
            });
        }

        let mut downloaded = HashMap::new();

        while let Some(result) = tasks.join_next().await {
            // NOTE: we all tasks are aborted when error occurs so we don't need
            //       to stop them explicitly
            let completed = result
                .context("We cannot join download task")?
                .context("Download task has returned an error")?;

            // now, we must assign each downloaded artifact into a correct
            // run
            for download in completed {
                downloaded
                    .entry(download.run_id.clone())
                    .and_modify(|artifacts: &mut RunArtifacts| {
                        artifacts.paths.push(download.path());
                    })
                    .or_insert_with(|| RunArtifacts {
                        paths: vec![download.path()],
                        experiment_id: download.experiment_id,
                        run_id: download.run_id,
                        root: download.destination,
                    });
            }
        }

        Ok(downloaded.into_values().collect())
    }

    /// Prepares download of artifacts from specified run.
    pub async fn prepare_run_download(
        &self,
        run_id: &str,
        directory: impl AsRef<Path>,
    ) -> Result<DownloadRunArtifacts> {
        // Get information about files inside of specified run
        let list = self
            .list_run_artifacts(run_id)
            .await
            .context("Cannot list run artifacts")?;

        let run = self
            .get_run(run_id)
            .await
            .context("Cannot get run from mlflow")?;

        Ok(DownloadRunArtifacts::new_from_run(directory, run, list))
    }

    /// Downloads all artifacts for one run.
    pub async fn download_run_artifacts(
        &self,
        download: DownloadRunArtifacts,
    ) -> Result<RunArtifacts> {
        debug!("Starting: {:#?}", download);

        self.download_artifacts(vec![download.clone()])
            .await
            .with_context(|| format!("Cannot download artifacts for {:#?}", download))?
            .pop()
            .context("BUG: We've not received any RunArtifacts")
    }

    /// Uploads json artifact using mlflow tracking server.
    pub async fn upload_json_artifact_no_retry(
        &self,
        data: &impl Serialize,
        artifact: &Artifact,
    ) -> Result<()> {
        let path = format!(
            "2.0/mlflow-artifacts/artifacts/{}/{}/artifacts/{}",
            artifact.experiment_id,
            artifact.run_id,
            artifact.path.to_string_lossy()
        );

        let mut request = self.client.put(self.make_url(path)).json(data);

        request = self.assign_basic_auth(request);

        Response(request.send().await?)
            .error_for_status()
            .await?
            .json::<bs::Dummy>()
            .await
            .map(|_| ())
    }

    /// Uploads json artifact using mlflow tracking server.
    pub async fn upload_json_artifact(
        &self,
        data: &impl Serialize,
        artifact: &Artifact,
    ) -> Result<()> {
        let future = || async { self.upload_json_artifact_no_retry(data, artifact).await };

        future
            .retry(ExponentialBuilder::default())
            .when(|e| is_retryable(&self.mlflow.no_retry_status_codes, e))
            .notify(|error, duration| {
                warn!(
                    "Retrying upload in {:?}, got an error: {:?}",
                    error, duration
                );
            })
            .await
            .with_context(|| format!("Cannot upload: {:?}", artifact))
    }

    /// Downloads artifact and tries it to parse as a json.
    pub async fn download_json_artifact_no_retry<T: DeserializeOwned>(
        &self,
        artifact: &Artifact,
    ) -> Result<T> {
        let path = format!(
            "2.0/mlflow-artifacts/artifacts/{}/{}/artifacts/{}",
            artifact.experiment_id,
            artifact.run_id,
            artifact.path.to_string_lossy()
        );

        let mut request = self.client.get(self.make_url(path));

        request = self.assign_basic_auth(request);

        Response(request.send().await?)
            .error_for_status()
            .await?
            .json::<T>()
            .await
    }

    /// Downloads artifact and tries it to parse as a json.
    pub async fn download_json_artifact<T: DeserializeOwned>(
        &self,
        artifact: &Artifact,
    ) -> Result<T> {
        let future = || async { self.download_json_artifact_no_retry(artifact).await };

        future
            .retry(ExponentialBuilder::default())
            .when(|e| is_retryable(&self.mlflow.no_retry_status_codes, e))
            .notify(|error, duration| {
                warn!(
                    "Retrying download in {:?}, got an error: {:?}",
                    error, duration
                );
            })
            .await
            .with_context(|| format!("Cannot download: {:?}", artifact))
    }

    /// Uploads artifact using mlflow tracking server.
    pub async fn upload_artifact_no_retry(
        &self,
        source: impl AsRef<Path>,
        artifact: &Artifact,
    ) -> Result<()> {
        let path = format!(
            "2.0/mlflow-artifacts/artifacts/{}/{}/artifacts/{}",
            artifact.experiment_id,
            artifact.run_id,
            artifact.path.to_string_lossy()
        );

        let file = File::open(source.as_ref())
            .await
            .with_context(|| format!("Cannot open artifact file: {:?}", source.as_ref()))?;

        let mut request = self.client.put(self.make_url(path)).body(file);

        request = self.assign_basic_auth(request);

        Response(request.send().await?)
            .error_for_status()
            .await?
            .json::<bs::Dummy>()
            .await
            .map(|_| ())
    }

    /// Uploads multiple artifacts at once.
    pub async fn upload_artifacts(&self, uploads: Vec<UploadArtifact>) -> Result<()> {
        let chunk_size = if uploads.len() <= self.download.tasks {
            1
        } else {
            uploads.len() / self.download.tasks
        };

        let batches = uploads.chunks(chunk_size).map(|chunks| chunks.to_vec());

        let mut tasks = JoinSet::<Result<()>>::new();

        for (idx, batch) in batches.enumerate() {
            let client = self.clone();

            tasks.spawn(async move {
                debug!("Worker {} has got #{} files", idx, batch.len());

                for upload in batch {
                    debug!("Starting {:?}", upload);
                    client
                        .upload_artifact(&upload.local, &upload.remote)
                        .await?;
                }

                Ok(())
            });
        }

        while let Some(result) = tasks.join_next().await {
            result
                .context("We cannot join download task")?
                .context("Upload task has returned an error")?;
        }

        Ok(())
    }

    /// Uploads artifact using mlflow tracking server.
    pub async fn upload_artifact(
        &self,
        source: impl AsRef<Path>,
        artifact: &Artifact,
    ) -> Result<()> {
        let future = || async {
            self.upload_artifact_no_retry(source.as_ref(), artifact)
                .await
        };

        future
            .retry(ExponentialBuilder::default())
            .when(|e| is_retryable(&self.mlflow.no_retry_status_codes, e))
            .notify(|error, duration| {
                warn!(
                    "Retrying upload in {:?}, got an error: {:?}",
                    error, duration
                );
            })
            .await
            .with_context(|| format!("Cannot upload: {:?}", artifact))
    }

    /// Downloads artifact FILE from mlflow tracking server into specified path.
    ///
    /// Returns a size of downloaded artifact in bytes.
    pub async fn download_artifact_no_retry(&self, download: &DownloadRunArtifact) -> Result<u64> {
        let path = format!(
            "2.0/mlflow-artifacts/artifacts/{}/{}/artifacts/{}",
            download.experiment_id, download.run_id, download.file,
        );

        if let Some(directory) = download.path().parent() {
            create_dir_all(directory).await.with_context(|| {
                format!(
                    "Unable to create a directory {:?} for the artifact",
                    directory
                )
            })?;
        }

        // skip file download if we are caching files and file is present
        if self.download.cache_local_artifacts && download.path().exists() {
            let path = download.path();

            info!("Path {path:?} does exists and caching is enabled, skipping download");

            let file = File::open(&path)
                .await
                .with_context(|| format!("Unable to open cached artifact: {path:?} for reading"))?;

            return file
                .metadata()
                .await
                .with_context(|| format!("Unable to get metadata for: {path:?}"))
                .map(|metadata| metadata.len());
        }

        let mut file = File::create(&download.path())
            .await
            .with_context(|| format!("Cannot create artifact file: {:?}", download.path()))?;

        let mut request = self.client.get(self.make_url(path));

        request = self.assign_basic_auth(request);

        let mut response = Response(request.send().await?).error_for_status().await?.0;

        debug!(
            "Content-Length of {:?} is {:?}",
            download.file,
            response.content_length()
        );

        let mut size = 0;

        while let Some(chunk) = response
            .chunk()
            .await
            .context("Cannot read artifact data")?
        {
            file.write_all(&chunk)
                .await
                .context("Cannot write data to artifact file")?;
            size += chunk.len() as u64;
        }

        file.flush()
            .await
            .context("Unable to flush artifact file to disk")?;

        file.sync_all()
            .await
            .context("Unable to write file metadata to disk")?;

        Ok(size)
    }

    /// Downloads artifact FILE from mlflow tracking server into specified path.
    pub async fn download_artifact(&self, download: &DownloadRunArtifact) -> Result<u64> {
        let future = || async {
            let size = self.download_artifact_no_retry(download).await?;
            if self.download.file_size_check && size != download.expected_size {
                fs::remove_file(download.path()).await?; // remove so it won't be considered "cached"
                Err(anyhow!(
                    "Expected size {} and downloaded {} do not match for {}",
                    size,
                    download.expected_size,
                    download.file,
                ))
            } else {
                Ok(size)
            }
        };

        future
            .retry(ExponentialBuilder::default())
            .when(|e| is_retryable(&self.mlflow.no_retry_status_codes, e))
            .notify(|error, duration| {
                warn!(
                    "Retrying download in {:?}, got an error: {:?}",
                    error, duration
                );
            })
            .await
            .with_context(|| format!("Cannot download: {:?}", download))
    }
}

#[cfg(test)]
mod test {
    use super::*;
    use redact::Secret;
    use rstest::{fixture, rstest};
    use std::path::PathBuf;
    use tracing_test::traced_test;

    #[fixture]
    fn run_name() -> String {
        format!("run-{}", rand::random::<u64>())
    }

    #[fixture]
    fn model_name() -> String {
        format!("registered-model-{}", rand::random::<u64>())
    }

    #[fixture]
    fn experiment_name() -> String {
        format!("experiment-{}", rand::random::<u64>())
    }

    #[fixture]
    fn client() -> Client {
        let host = match std::env::var("CI") {
            Ok(_) => "mlflow",
            Err(_) => "localhost",
        };

        Client::new(format!("http://{}:5000/api", host)).with_auth(BasicAuth {
            user: Secret::from("kokot"),
            password: Secret::from("bezpeci2021"),
        })
    }

    #[rstest]
    fn test_client_debug(client: Client) {
        let formatted = format!("{client:?}");

        // check that credentials are not visible in debug
        assert!(!formatted.contains("kokot"));
        assert!(!formatted.contains("bezpeci2021"));
    }

    #[rstest]
    #[tokio::test]
    async fn test_get_or_create_experiment(experiment_name: String, client: Client) {
        client
            .get_or_create_experiment(&experiment_name, vec![])
            .await
            .expect("BUG: Cannot create experiment");
    }

    #[rstest]
    #[tokio::test]
    async fn test_create_get_delete_experiment(experiment_name: String, client: Client) {
        let id = client
            .create_experiment(&experiment_name, vec![])
            .await
            .expect("BUG: Cannot create experiment");

        let experiment = client
            .get_experiment(&id)
            .await
            .expect("BUG: Cannot get experiment");

        assert_eq!(experiment.name, experiment_name);

        client
            .delete_experiment(&id)
            .await
            .expect("BUG: Cannot update experiment");

        client
            .create_experiment(&experiment_name, vec![])
            .await
            .expect_err("BUG: Cannot create deleted experiment");
    }

    #[rstest]
    #[tokio::test]
    async fn test_get_experiment_by_name(experiment_name: String, client: Client) {
        let experiment_id = client
            .create_experiment(&experiment_name, vec![])
            .await
            .expect("BUG: Cannot create experiment");

        let experiment = client
            .get_experiment_by_name(&experiment_name)
            .await
            .expect("BUG: Cannot get crated experiment");

        assert_eq!(experiment.experiment_id, experiment_id);
    }

    #[rstest]
    #[tokio::test]
    #[awt]
    async fn test_run_search(client: Client, #[future] run: Run) {
        let search = SearchRuns::new()
            .experiment_ids(vec![run.info.experiment_id.clone()])
            .max_results(Some(16))
            .view(ViewType::All)
            .build();

        let runs = client
            .search_runs(search)
            .await
            .expect("BUG: Cannot search runs");

        assert!(!runs.is_empty());

        // skip max-results and check that we've got something
        let search = SearchRuns::new()
            .experiment_ids(vec![run.info.experiment_id.clone()])
            .view(ViewType::All)
            .build();

        let runs = client
            .search_runs(search)
            .await
            .expect("BUG: Cannot search runs");

        assert!(!runs.is_empty());
    }

    #[rstest]
    #[tokio::test]
    async fn test_run_create(experiment_name: String, run_name: String, client: Client) {
        let experiment_id = client
            .create_experiment(&experiment_name, vec![])
            .await
            .expect("BUG: Cannot create experiment");

        let create = CreateRun::new()
            .run_name(&run_name)
            .experiment_id(&experiment_id)
            .build();

        let run = client
            .create_run(create)
            .await
            .expect("BUG: Cannot create run");

        let run1 = client
            .get_run(&run.info.run_id)
            .await
            .expect("BUG: Cannot get run");

        assert_eq!(run, run1);
    }

    #[rstest]
    #[tokio::test]
    async fn test_run_delete(experiment_name: String, run_name: String, client: Client) {
        let experiment_id = client
            .create_experiment(&experiment_name, vec![])
            .await
            .expect("BUG: Cannot create experiment");

        let create = CreateRun::new()
            .run_name(&run_name)
            .experiment_id(&experiment_id)
            .build();

        let run = client
            .create_run(create)
            .await
            .expect("BUG: Cannot create run");

        client
            .delete_run(&run.info.run_id)
            .await
            .expect("BUG: Cannot delete run");

        client
            .delete_run(&run.info.run_id)
            .await
            .expect("BUG: Can delete non-existing run");
    }

    #[rstest]
    #[tokio::test]
    async fn test_run_update_data(experiment_name: String, run_name: String, client: Client) {
        let experiment_id = client
            .create_experiment(&experiment_name, vec![])
            .await
            .expect("BUG: Cannot create experiment");

        let create = CreateRun::new()
            .run_name(&run_name)
            .experiment_id(&experiment_id)
            .build();

        let run = client
            .create_run(create)
            .await
            .expect("BUG: Cannot create run");

        let mut update = RunData::new()
            .metrics(vec![Metric::new().key("m").value(37.).step(0).build()])
            .params(vec![KeyValue::new().key("p").value("42").build()])
            .tags(vec![KeyValue::new().key("t").value("73").build()])
            .build();

        client
            .add_run_meta(&run.info.run_id, update.clone())
            .await
            .expect("BUG: Cannot update run data");

        update.tags.insert(
            0,
            KeyValue::new()
                .key("mlflow.runName")
                .value(run_name)
                .build(),
        );

        let run1 = client
            .get_run(&run.info.run_id)
            .await
            .expect("BUG: Cannot get run");

        assert_eq!(run1.data, update);
    }

    #[rstest]
    #[tokio::test]
    async fn test_run_add_inputs(experiment_name: String, run_name: String, client: Client) {
        let experiment_id = client
            .create_experiment(&experiment_name, vec![])
            .await
            .expect("BUG: Cannot create experiment");

        let create = CreateRun::new()
            .run_name(&run_name)
            .experiment_id(&experiment_id)
            .build();

        let run = client
            .create_run(create)
            .await
            .expect("BUG: Cannot create run");

        let input = DataSetInput::new()
            .tags(vec![KeyValue::new().key("a").value("x").build()])
            .dataset(
                DataSet::new()
                    .name("kokot")
                    .digest("123")
                    .source_type("kokot1")
                    .source("s3")
                    .schema("{}")
                    .profile("{\"rows\": 22}")
                    .build(),
            )
            .build();

        client
            .add_run_inputs(&run.info.run_id, vec![input.clone()])
            .await
            .expect("BUG: Unable to add inputs to run");

        let run1 = client
            .get_run(&run.info.run_id)
            .await
            .expect("BUG: Cannot get run");

        assert_eq!(
            run1.inputs,
            RunInputs {
                inputs: vec![input]
            }
        );
    }

    #[fixture]
    async fn run(experiment_name: String, run_name: String, client: Client) -> Run {
        let experiment_id = client
            .create_experiment(&experiment_name, vec![])
            .await
            .expect("BUG: Cannot create experiment");

        let create = CreateRun::new()
            .run_name(&run_name)
            .experiment_id(&experiment_id)
            .build();

        client
            .create_run(create)
            .await
            .expect("BUG: Cannot create run")
    }

    #[rstest]
    #[tokio::test]
    #[awt]
    async fn test_run_update(client: Client, #[future] run: Run) {
        let end_time_ms: u64 = 1733565663000;

        let update = UpdateRun::new()
            .run_id(&run.info.run_id)
            .status(RunStatus::Killed)
            .end_time(end_time_ms as i64)
            .experiment_id(&run.info.experiment_id)
            .build();

        client
            .update_run(update)
            .await
            .expect("BUG: Unable to update run");

        let run1 = client
            .get_run(&run.info.run_id)
            .await
            .expect("BUG: Unable to fetch run");

        assert_eq!(run1.info.end_time, Some(end_time_ms));
        assert_eq!(run1.info.status, RunStatus::Killed);
    }

    #[rstest]
    #[tokio::test]
    #[awt]
    #[traced_test]
    async fn test_artifacts(client: Client, #[future] run: Run) {
        let artifact = Artifact {
            experiment_id: run.info.experiment_id.clone(),
            run_id: run.info.run_id.clone(),
            path: PathBuf::from("abc/lock"),
        };

        let mut artifact1 = artifact.clone();
        artifact1.path = PathBuf::from("abc/lock1");

        let artifacts = vec![
            UploadArtifact {
                local: "Cargo.lock".into(),
                remote: artifact.clone(),
            },
            UploadArtifact {
                local: "Cargo.lock".into(),
                remote: artifact1.clone(),
            },
        ];

        client
            .upload_artifacts(artifacts)
            .await
            .expect("BUG: Unable to upload artifacts");

        let list = client
            .list_run_artifacts(&run.info.run_id)
            .await
            .expect("BUG: Unable to list run artifacts");

        assert_eq!(list.files.len(), 2);

        let download = client
            .prepare_run_download(&run.info.run_id, "/tmp")
            .await
            .expect("BUG: Unable to prepare run download");

        let mut artifacts = client
            .download_run_artifacts(download)
            .await
            .expect("BUG: Cannot download artifact");

        artifacts.paths.sort();

        assert_eq!(
            artifacts.paths,
            vec![
                PathBuf::from("/tmp/abc/lock"),
                PathBuf::from("/tmp/abc/lock1"),
            ]
        );
    }

    #[rstest]
    #[tokio::test]
    #[awt]
    async fn test_artifacts_cache(mut client: Client, #[future] run: Run) {
        // lets upload a file of non-zero size
        let artifact = Artifact {
            experiment_id: run.info.experiment_id.clone(),
            run_id: run.info.run_id.clone(),
            path: PathBuf::from("run.json"),
        };

        client
            .upload_json_artifact(&run, &artifact)
            .await
            .expect("BUG: Cannot upload artifact");

        // now enable caching, create local file and check that local file
        // was not overwriteen
        client.download.cache_local_artifacts = true;

        let filedir = PathBuf::from(format!("/tmp/{}/", run.info.run_id));
        let filepath = filedir.join("run.json");

        create_dir_all(&filedir)
            .await
            .expect("BUG: Unable to create destdir");

        let file = File::create(&filepath)
            .await
            .expect("BUG: Unable to create dummy file");

        let download = client
            .prepare_run_download(&run.info.run_id, filedir)
            .await
            .expect("BUG: Unable to prepare run download");

        let artifacts = client
            .download_run_artifacts(download)
            .await
            .expect("BUG: Cannot download artifact");

        assert_eq!(artifacts.paths, vec![filepath]);

        assert_eq!(
            file.metadata()
                .await
                .expect("BUG: Unable to get file metadata")
                .len(),
            0
        );
    }

    #[rstest]
    #[tokio::test]
    #[awt]
    async fn test_json_artifact(client: Client, #[future] run: Run) {
        let artifact = Artifact {
            experiment_id: run.info.experiment_id.clone(),
            run_id: run.info.run_id.clone(),
            path: PathBuf::from("run.json"),
        };

        client
            .upload_json_artifact(&run, &artifact)
            .await
            .expect("BUG: Cannot upload artifact");

        let run1 = client
            .download_json_artifact::<Run>(&artifact)
            .await
            .expect("BUG: Cannot download artifact");

        assert_eq!(run, run1);
    }

    #[rstest]
    #[tokio::test]
    #[awt]
    async fn test_registered_model(client: Client, model_name: String) {
        let registered = client
            .register_model(
                RegisterModel::new()
                    .name(&model_name)
                    .description("")
                    .build(),
            )
            .await
            .expect("BUG: Unable to register model");

        let registered1 = client
            .get_registered_model(&model_name)
            .await
            .expect("BUG: Cannot get registered model");

        assert_eq!(registered.name, registered1.name);
        assert_eq!(
            registered.creation_timestamp,
            registered1.creation_timestamp
        );

        let _ = client
            .delete_registered_model(&model_name)
            .await
            .expect("BUG: Unable to delete registered model");
    }

    #[rstest]
    #[tokio::test]
    #[awt]
    async fn test_search_registered_models(client: Client, #[future] run: Run, model_name: String) {
        let _registered = client
            .register_model(
                RegisterModel::new()
                    .name(&model_name)
                    .description("yep")
                    .tags(vec![KeyValue::new()
                        .key("kokot")
                        .value(&model_name)
                        .build()])
                    .build(),
            )
            .await
            .expect("BUG: Unable to register model");

        let create = CreateModelVersion::new()
            .registered_model_name(&model_name)
            .artifacts_url("s3:///kokot")
            .run_id(&run.info.run_id)
            .description("xxx")
            .build();

        client
            .create_model_version(create)
            .await
            .expect("BUG: Cannot create model version");

        let mut models = client
            .search_registered_models(&format!("tags.kokot like '({}|abc)'", model_name))
            .await
            .expect("BUG: Cannot search registered models");

        let mut model = models
            .pop()
            .expect("BUG: We must get at least one registred model");

        let latest = model
            .latest_versions
            .pop()
            .expect("BUG: Model must have at least one latest version");

        assert_eq!(latest.run_id, run.info.run_id);
    }

    #[rstest]
    #[tokio::test]
    #[awt]
    async fn test_add_model_version(
        client: Client,
        #[future] run: Run,
        #[future]
        #[from(run)]
        run1: Run,
        model_name: String,
    ) {
        let _registered = client
            .register_model(
                RegisterModel::new()
                    .name(&model_name)
                    .description("yep")
                    .build(),
            )
            .await
            .expect("BUG: Unable to register model");

        let create = CreateModelVersion::new()
            .registered_model_name(&model_name)
            .artifacts_url("s3:///kokot")
            .run_id(&run.info.run_id)
            .description("xxx")
            .build();

        let mut create1 = create.clone();
        create1.run_id = run1.info.run_id;

        client
            .create_model_version(create)
            .await
            .expect("BUG: Cannot create model version");

        let version = client
            .create_model_version(create1)
            .await
            .expect("BUG: Cannot create model version");

        assert_eq!(version.current_stage, "None");

        let transition = TransitionModelVersionStage::new()
            .name(&model_name)
            .version(version.version)
            .stage(ModelVersionStage::Production)
            .archive_existing_versions(false)
            .build();

        let version1 = client
            .transition_model_version_stage(transition)
            .await
            .expect("BUG: Cannot transition model stage");

        assert_eq!(version1.current_stage, "Production");
    }
}