mlrun 1.7.0rc37__py3-none-any.whl → 1.7.0rc39__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of mlrun might be problematic. Click here for more details.

Files changed (52) hide show
  1. mlrun/alerts/alert.py +34 -30
  2. mlrun/common/schemas/alert.py +3 -0
  3. mlrun/common/schemas/model_monitoring/constants.py +4 -0
  4. mlrun/common/schemas/notification.py +4 -3
  5. mlrun/datastore/alibaba_oss.py +2 -2
  6. mlrun/datastore/azure_blob.py +124 -31
  7. mlrun/datastore/base.py +1 -1
  8. mlrun/datastore/dbfs_store.py +2 -2
  9. mlrun/datastore/google_cloud_storage.py +83 -20
  10. mlrun/datastore/s3.py +2 -2
  11. mlrun/datastore/sources.py +54 -0
  12. mlrun/datastore/targets.py +9 -53
  13. mlrun/db/httpdb.py +6 -1
  14. mlrun/errors.py +8 -0
  15. mlrun/execution.py +7 -0
  16. mlrun/feature_store/api.py +5 -0
  17. mlrun/feature_store/common.py +6 -11
  18. mlrun/feature_store/retrieval/job.py +1 -0
  19. mlrun/model.py +29 -3
  20. mlrun/model_monitoring/api.py +9 -0
  21. mlrun/model_monitoring/applications/_application_steps.py +36 -0
  22. mlrun/model_monitoring/applications/histogram_data_drift.py +15 -13
  23. mlrun/model_monitoring/controller.py +15 -11
  24. mlrun/model_monitoring/db/stores/v3io_kv/kv_store.py +14 -11
  25. mlrun/model_monitoring/db/tsdb/base.py +121 -1
  26. mlrun/model_monitoring/db/tsdb/tdengine/schemas.py +85 -47
  27. mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connector.py +100 -12
  28. mlrun/model_monitoring/db/tsdb/v3io/stream_graph_steps.py +23 -1
  29. mlrun/model_monitoring/db/tsdb/v3io/v3io_connector.py +214 -36
  30. mlrun/model_monitoring/helpers.py +16 -17
  31. mlrun/model_monitoring/stream_processing.py +68 -27
  32. mlrun/projects/operations.py +1 -1
  33. mlrun/projects/pipelines.py +19 -30
  34. mlrun/projects/project.py +76 -52
  35. mlrun/run.py +8 -6
  36. mlrun/runtimes/__init__.py +19 -8
  37. mlrun/runtimes/nuclio/api_gateway.py +9 -0
  38. mlrun/runtimes/nuclio/application/application.py +64 -9
  39. mlrun/runtimes/nuclio/function.py +1 -1
  40. mlrun/runtimes/pod.py +2 -2
  41. mlrun/runtimes/remotesparkjob.py +2 -5
  42. mlrun/runtimes/sparkjob/spark3job.py +7 -9
  43. mlrun/serving/v2_serving.py +1 -0
  44. mlrun/track/trackers/mlflow_tracker.py +5 -0
  45. mlrun/utils/helpers.py +21 -0
  46. mlrun/utils/version/version.json +2 -2
  47. {mlrun-1.7.0rc37.dist-info → mlrun-1.7.0rc39.dist-info}/METADATA +14 -11
  48. {mlrun-1.7.0rc37.dist-info → mlrun-1.7.0rc39.dist-info}/RECORD +52 -52
  49. {mlrun-1.7.0rc37.dist-info → mlrun-1.7.0rc39.dist-info}/WHEEL +1 -1
  50. {mlrun-1.7.0rc37.dist-info → mlrun-1.7.0rc39.dist-info}/LICENSE +0 -0
  51. {mlrun-1.7.0rc37.dist-info → mlrun-1.7.0rc39.dist-info}/entry_points.txt +0 -0
  52. {mlrun-1.7.0rc37.dist-info → mlrun-1.7.0rc39.dist-info}/top_level.txt +0 -0
mlrun/runtimes/pod.py CHANGED
@@ -1174,9 +1174,9 @@ class KubeResource(BaseRuntime, KfpAdapterMixin):
1174
1174
  """
1175
1175
  if node_name:
1176
1176
  self.spec.node_name = node_name
1177
- if node_selector:
1177
+ if node_selector is not None:
1178
1178
  self.spec.node_selector = node_selector
1179
- if affinity:
1179
+ if affinity is not None:
1180
1180
  self.spec.affinity = affinity
1181
1181
  if tolerations is not None:
1182
1182
  self.spec.tolerations = tolerations
@@ -102,16 +102,13 @@ class RemoteSparkRuntime(KubejobRuntime):
102
102
 
103
103
  @classmethod
104
104
  def deploy_default_image(cls):
105
- from mlrun import get_run_db
106
- from mlrun.run import new_function
107
-
108
- sj = new_function(
105
+ sj = mlrun.new_function(
109
106
  kind="remote-spark", name="remote-spark-default-image-deploy-temp"
110
107
  )
111
108
  sj.spec.build.image = cls.default_image
112
109
  sj.with_spark_service(spark_service="dummy-spark")
113
110
  sj.deploy()
114
- get_run_db().delete_function(name=sj.metadata.name)
111
+ mlrun.get_run_db().delete_function(name=sj.metadata.name)
115
112
 
116
113
  def is_deployed(self):
117
114
  if (
@@ -534,11 +534,11 @@ class Spark3Runtime(KubejobRuntime):
534
534
  raise NotImplementedError(
535
535
  "Setting node name is not supported for spark runtime"
536
536
  )
537
- if affinity:
537
+ if affinity is not None:
538
538
  self.spec.driver_affinity = affinity
539
- if node_selector:
539
+ if node_selector is not None:
540
540
  self.spec.driver_node_selector = node_selector
541
- if tolerations:
541
+ if tolerations is not None:
542
542
  self.spec.driver_tolerations = tolerations
543
543
 
544
544
  def with_executor_node_selection(
@@ -565,11 +565,11 @@ class Spark3Runtime(KubejobRuntime):
565
565
  raise NotImplementedError(
566
566
  "Setting node name is not supported for spark runtime"
567
567
  )
568
- if affinity:
568
+ if affinity is not None:
569
569
  self.spec.executor_affinity = affinity
570
- if node_selector:
570
+ if node_selector is not None:
571
571
  self.spec.executor_node_selector = node_selector
572
- if tolerations:
572
+ if tolerations is not None:
573
573
  self.spec.executor_tolerations = tolerations
574
574
 
575
575
  def with_preemption_mode(
@@ -808,9 +808,7 @@ class Spark3Runtime(KubejobRuntime):
808
808
 
809
809
  @classmethod
810
810
  def deploy_default_image(cls, with_gpu=False):
811
- from mlrun.run import new_function
812
-
813
- sj = new_function(kind=cls.kind, name="spark-default-image-deploy-temp")
811
+ sj = mlrun.new_function(kind=cls.kind, name="spark-default-image-deploy-temp")
814
812
  sj.spec.build.image = cls._get_default_deployed_mlrun_image_name(with_gpu)
815
813
 
816
814
  # setting required resources
@@ -257,6 +257,7 @@ class V2ModelServer(StepToDict):
257
257
  "id": event_id,
258
258
  "model_name": self.name,
259
259
  "outputs": outputs,
260
+ "timestamp": start.isoformat(sep=" ", timespec="microseconds"),
260
261
  }
261
262
  if self.version:
262
263
  response["model_version"] = self.version
@@ -442,6 +442,11 @@ class MLFlowTracker(Tracker):
442
442
  # Prepare the archive path:
443
443
  model_uri = pathlib.Path(model_uri)
444
444
  archive_path = pathlib.Path(tmp_path) / f"{model_uri.stem}.zip"
445
+ if not os.path.exists(model_uri):
446
+ local_path = mlflow.artifacts.download_artifacts(
447
+ artifact_uri=str(model_uri)
448
+ )
449
+ model_uri = pathlib.Path(local_path)
445
450
 
446
451
  # TODO add progress bar for the case of large files
447
452
  # Zip the artifact:
mlrun/utils/helpers.py CHANGED
@@ -24,6 +24,7 @@ import re
24
24
  import string
25
25
  import sys
26
26
  import typing
27
+ import uuid
27
28
  import warnings
28
29
  from datetime import datetime, timezone
29
30
  from importlib import import_module, reload
@@ -1410,6 +1411,26 @@ def is_running_in_jupyter_notebook() -> bool:
1410
1411
  return ipy and "Terminal" not in str(type(ipy))
1411
1412
 
1412
1413
 
1414
+ def create_ipython_display():
1415
+ """
1416
+ Create an IPython display object and fill it with initial content.
1417
+ We can later use the returned display_id with the update_display method to update the content.
1418
+ If IPython is not installed, a warning will be logged and None will be returned.
1419
+ """
1420
+ if is_ipython:
1421
+ import IPython
1422
+
1423
+ display_id = uuid.uuid4().hex
1424
+ content = IPython.display.HTML(
1425
+ f'<div id="{display_id}">Temporary Display Content</div>'
1426
+ )
1427
+ IPython.display.display(content, display_id=display_id)
1428
+ return display_id
1429
+
1430
+ # returning None if IPython is not installed, this method shouldn't be called in that case but logging for sanity
1431
+ logger.debug("IPython is not installed, cannot create IPython display")
1432
+
1433
+
1413
1434
  def as_number(field_name, field_value):
1414
1435
  if isinstance(field_value, str) and not field_value.isnumeric():
1415
1436
  raise ValueError(f"'{field_name}' must be numeric (str/int types)")
@@ -1,4 +1,4 @@
1
1
  {
2
- "git_commit": "9edc20898a23dc8a02ea4c3f6db2e20054146ad8",
3
- "version": "1.7.0-rc37"
2
+ "git_commit": "88c00a4f6d3b64ec5d4a326f802af10001e1c5df",
3
+ "version": "1.7.0-rc39"
4
4
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mlrun
3
- Version: 1.7.0rc37
3
+ Version: 1.7.0rc39
4
4
  Summary: Tracking and config of machine learning runs
5
5
  Home-page: https://github.com/mlrun/mlrun
6
6
  Author: Yaron Haviv
@@ -35,7 +35,7 @@ Requires-Dist: pyarrow <15,>=10.0
35
35
  Requires-Dist: pyyaml <7,>=5.4.1
36
36
  Requires-Dist: requests ~=2.31
37
37
  Requires-Dist: tabulate ~=0.8.6
38
- Requires-Dist: v3io ~=0.6.8
38
+ Requires-Dist: v3io ~=0.6.9
39
39
  Requires-Dist: pydantic <1.10.15,>=1.10.8
40
40
  Requires-Dist: mergedeep ~=1.3
41
41
  Requires-Dist: v3io-frames ~=0.10.14
@@ -50,7 +50,7 @@ Requires-Dist: setuptools ~=71.0
50
50
  Requires-Dist: deprecated ~=1.2
51
51
  Requires-Dist: jinja2 >=3.1.3,~=3.1
52
52
  Requires-Dist: orjson <4,>=3.9.15
53
- Requires-Dist: mlrun-pipelines-kfp-common ~=0.1.6
53
+ Requires-Dist: mlrun-pipelines-kfp-common ~=0.1.7
54
54
  Requires-Dist: mlrun-pipelines-kfp-v1-8 ~=0.1.6
55
55
  Provides-Extra: alibaba-oss
56
56
  Requires-Dist: ossfs ==2023.12.0 ; extra == 'alibaba-oss'
@@ -78,7 +78,7 @@ Requires-Dist: mlflow ~=2.8 ; extra == 'all'
78
78
  Requires-Dist: msrest ~=0.6.21 ; extra == 'all'
79
79
  Requires-Dist: oss2 ==2.18.1 ; extra == 'all'
80
80
  Requires-Dist: ossfs ==2023.12.0 ; extra == 'all'
81
- Requires-Dist: plotly <5.12.0,~=5.4 ; extra == 'all'
81
+ Requires-Dist: plotly ~=5.23 ; extra == 'all'
82
82
  Requires-Dist: pyopenssl >=23 ; extra == 'all'
83
83
  Requires-Dist: redis ~=4.3 ; extra == 'all'
84
84
  Requires-Dist: s3fs <2024.4,>=2023.9.2 ; extra == 'all'
@@ -121,14 +121,17 @@ Requires-Dist: dask ~=2023.9.0 ; extra == 'complete'
121
121
  Requires-Dist: databricks-sdk ~=0.13.0 ; extra == 'complete'
122
122
  Requires-Dist: distributed ~=2023.9.0 ; extra == 'complete'
123
123
  Requires-Dist: gcsfs <2024.4,>=2023.9.2 ; extra == 'complete'
124
+ Requires-Dist: google-cloud-bigquery-storage ~=2.17 ; extra == 'complete'
124
125
  Requires-Dist: google-cloud-bigquery[bqstorage,pandas] ==3.14.1 ; extra == 'complete'
126
+ Requires-Dist: google-cloud-storage ==2.14.0 ; extra == 'complete'
127
+ Requires-Dist: google-cloud ==0.34 ; extra == 'complete'
125
128
  Requires-Dist: graphviz ~=0.20.0 ; extra == 'complete'
126
129
  Requires-Dist: kafka-python ~=2.0 ; extra == 'complete'
127
130
  Requires-Dist: mlflow ~=2.8 ; extra == 'complete'
128
131
  Requires-Dist: msrest ~=0.6.21 ; extra == 'complete'
129
132
  Requires-Dist: oss2 ==2.18.1 ; extra == 'complete'
130
133
  Requires-Dist: ossfs ==2023.12.0 ; extra == 'complete'
131
- Requires-Dist: plotly <5.12.0,~=5.4 ; extra == 'complete'
134
+ Requires-Dist: plotly ~=5.23 ; extra == 'complete'
132
135
  Requires-Dist: pyopenssl >=23 ; extra == 'complete'
133
136
  Requires-Dist: redis ~=4.3 ; extra == 'complete'
134
137
  Requires-Dist: s3fs <2024.4,>=2023.9.2 ; extra == 'complete'
@@ -151,7 +154,10 @@ Requires-Dist: databricks-sdk ~=0.13.0 ; extra == 'complete-api'
151
154
  Requires-Dist: distributed ~=2023.9.0 ; extra == 'complete-api'
152
155
  Requires-Dist: fastapi ~=0.110.0 ; extra == 'complete-api'
153
156
  Requires-Dist: gcsfs <2024.4,>=2023.9.2 ; extra == 'complete-api'
157
+ Requires-Dist: google-cloud-bigquery-storage ~=2.17 ; extra == 'complete-api'
154
158
  Requires-Dist: google-cloud-bigquery[bqstorage,pandas] ==3.14.1 ; extra == 'complete-api'
159
+ Requires-Dist: google-cloud-storage ==2.14.0 ; extra == 'complete-api'
160
+ Requires-Dist: google-cloud ==0.34 ; extra == 'complete-api'
155
161
  Requires-Dist: graphviz ~=0.20.0 ; extra == 'complete-api'
156
162
  Requires-Dist: humanfriendly ~=10.0 ; extra == 'complete-api'
157
163
  Requires-Dist: igz-mgmt ~=0.2.0 ; extra == 'complete-api'
@@ -161,7 +167,7 @@ Requires-Dist: msrest ~=0.6.21 ; extra == 'complete-api'
161
167
  Requires-Dist: objgraph ~=3.6 ; extra == 'complete-api'
162
168
  Requires-Dist: oss2 ==2.18.1 ; extra == 'complete-api'
163
169
  Requires-Dist: ossfs ==2023.12.0 ; extra == 'complete-api'
164
- Requires-Dist: plotly <5.12.0,~=5.4 ; extra == 'complete-api'
170
+ Requires-Dist: plotly ~=5.23 ; extra == 'complete-api'
165
171
  Requires-Dist: pymysql ~=1.0 ; extra == 'complete-api'
166
172
  Requires-Dist: pyopenssl >=23 ; extra == 'complete-api'
167
173
  Requires-Dist: redis ~=4.3 ; extra == 'complete-api'
@@ -182,10 +188,7 @@ Requires-Dist: google-cloud-storage ==2.14.0 ; extra == 'google-cloud'
182
188
  Requires-Dist: google-cloud-bigquery[bqstorage,pandas] ==3.14.1 ; extra == 'google-cloud'
183
189
  Requires-Dist: google-cloud-bigquery-storage ~=2.17 ; extra == 'google-cloud'
184
190
  Requires-Dist: google-cloud ==0.34 ; extra == 'google-cloud'
185
- Provides-Extra: google-cloud-bigquery
186
- Requires-Dist: google-cloud-bigquery[bqstorage,pandas] ==3.14.1 ; extra == 'google-cloud-bigquery'
187
- Provides-Extra: google-cloud-storage
188
- Requires-Dist: gcsfs <2024.4,>=2023.9.2 ; extra == 'google-cloud-storage'
191
+ Requires-Dist: gcsfs <2024.4,>=2023.9.2 ; extra == 'google-cloud'
189
192
  Provides-Extra: graphviz
190
193
  Requires-Dist: graphviz ~=0.20.0 ; extra == 'graphviz'
191
194
  Provides-Extra: kafka
@@ -194,7 +197,7 @@ Requires-Dist: avro ~=1.11 ; extra == 'kafka'
194
197
  Provides-Extra: mlflow
195
198
  Requires-Dist: mlflow ~=2.8 ; extra == 'mlflow'
196
199
  Provides-Extra: plotly
197
- Requires-Dist: plotly <5.12.0,~=5.4 ; extra == 'plotly'
200
+ Requires-Dist: plotly ~=5.23 ; extra == 'plotly'
198
201
  Provides-Extra: redis
199
202
  Requires-Dist: redis ~=4.3 ; extra == 'redis'
200
203
  Provides-Extra: s3
@@ -1,17 +1,17 @@
1
1
  mlrun/__init__.py,sha256=y08M1JcKXy5-9_5WaI9fn5aV5BxIQ5QkbduJK0OxWbA,7470
2
2
  mlrun/__main__.py,sha256=iAifncsrQQx6ozXXmz7GH1OiNl8PA7KS3TnwlxnHGeo,45890
3
3
  mlrun/config.py,sha256=F8lKjS57FlodLbZawg2eyGjRjzDRR-K53n_bIbq9aD8,66129
4
- mlrun/errors.py,sha256=VpC_imeSz2twRMZZb7u90Zj29z6aO-tCxUHD3ZA_Axw,7465
5
- mlrun/execution.py,sha256=Gv7mzzaf5y8fIEF0VVu8dSJYQp2uCezXDUiE60cGxWU,41970
4
+ mlrun/errors.py,sha256=i75KY-Wza1B3XpdD0xspxOI02TZMoarkQbJPZF5DB1U,7713
5
+ mlrun/execution.py,sha256=o64-PAdOnLnT_CAHwyxpj7uJJVn7fh8tR5dpy1OnqBg,42188
6
6
  mlrun/features.py,sha256=m17K_3l9Jktwb9dOwlHLTAPTlemsWrRF7dJhXUX0iJU,15429
7
7
  mlrun/k8s_utils.py,sha256=WdUajadvAhTR7sAMQdwFqKeJMimuTyqm02VdwK1A4xU,7023
8
8
  mlrun/lists.py,sha256=3PqBdcajdwhTe1XuFsAaHTuFVM2kjwepf31qqE82apg,8384
9
- mlrun/model.py,sha256=ymGFzkTmxDb40UJPfOEEyC3Uffe7vDXQNguDCfaZfWo,79091
9
+ mlrun/model.py,sha256=0GYOHeLuPH3K8FXy6oVjECm-TFE9tl1lj6qgrJfMnFA,80567
10
10
  mlrun/render.py,sha256=n8SeY3ogVrsV02-7-H0lt1RmpkxGpbI-11RQx61Vq9E,13267
11
- mlrun/run.py,sha256=5Tz7OPDKkbaRLzLOmEjVBYecZR_BKd0gqtkKt_v4SbE,43524
11
+ mlrun/run.py,sha256=hNxV-TnixbH8MCos2jqz8jdTDlK7dBSvJMil_QoGKQI,43616
12
12
  mlrun/secrets.py,sha256=ibtCK79u7JVBZF6F0SP1-xXXF5MyrLEUs_TCWiJAnlc,7798
13
13
  mlrun/alerts/__init__.py,sha256=0gtG1BG0DXxFrXegIkjbM1XEN4sP9ODo0ucXrNld1hU,601
14
- mlrun/alerts/alert.py,sha256=gLHAMJPzPs8jcSvHSqvfg22aDpk23s3VIHbZ4XeWgr0,10201
14
+ mlrun/alerts/alert.py,sha256=aLyKitNaFnl86ADwy1k7XkGOpf9vIkrL8626wVGKGxU,10444
15
15
  mlrun/api/schemas/__init__.py,sha256=fEWH4I8hr5AdRJ7yoW44RlFB6NHkYDxyomP5J6ct1z4,14248
16
16
  mlrun/artifacts/__init__.py,sha256=daGrLqltI1nE3ES30nm-tanUnxReRzfyxyaxNRx2zbc,1168
17
17
  mlrun/artifacts/base.py,sha256=EystjLta4XVdZP2x4nz1ZNlDUYKTIcFNfMVfBVseCHw,29168
@@ -37,7 +37,7 @@ mlrun/common/model_monitoring/__init__.py,sha256=x0EMEvxVjHsm858J1t6IEA9dtKTdFpJ
37
37
  mlrun/common/model_monitoring/helpers.py,sha256=1CpxIDQPumFnpUB1eqcvCpLlyPFVeW2sL6prM-N5A1A,4405
38
38
  mlrun/common/runtimes/constants.py,sha256=Rl0Sd8n_L7Imo-uF1LL9CJ5Szi0W1gUm36yrF8PXfSc,10989
39
39
  mlrun/common/schemas/__init__.py,sha256=CUX4F6VeowqX5PzakB7xgGs2lJZAN42RMm1asB-kf1c,5227
40
- mlrun/common/schemas/alert.py,sha256=MG0yQ5am6FOKRb-86QKvS9rQtIALnduswq4OthmSgog,6570
40
+ mlrun/common/schemas/alert.py,sha256=NIotUCJjtw5aYA3CmxiDo2ch-Ba8r1Sj1WkJfYCtluM,6749
41
41
  mlrun/common/schemas/api_gateway.py,sha256=aEQ4rO5WyjAGIH7QJohctpftJi_SP4cTAfbmRi1ATwE,6920
42
42
  mlrun/common/schemas/artifact.py,sha256=V3ngobnzI1v2eoOroWBEedjAZu0ntCSIQ-LzsOK1Z9k,3570
43
43
  mlrun/common/schemas/auth.py,sha256=5c4WSn3KdX1v04ttSQblkF_gyjdjuJSHG7BTCx4_LWM,6336
@@ -55,7 +55,7 @@ mlrun/common/schemas/http.py,sha256=1PtYFhF6sqLSBRcuPMtYcUGmroBhaleqLmYidSdL9LM,
55
55
  mlrun/common/schemas/hub.py,sha256=cuv_vpkO27XNCZzfytnUyi0k0ZA4wf_QRn5B0ZPoK-Y,4116
56
56
  mlrun/common/schemas/k8s.py,sha256=nmMnhgjVMLem5jyumoG2eQKioGK9eUVhQnOSb3hG7yw,1395
57
57
  mlrun/common/schemas/memory_reports.py,sha256=tpS3fpvxa6VcBpzCRzcZTt0fCF0h6ReUetYs7j6kdps,892
58
- mlrun/common/schemas/notification.py,sha256=uYVJJO7IKa4nac7TP2KBuhkI6TFtqstT2nLvve4kEWc,3080
58
+ mlrun/common/schemas/notification.py,sha256=H7HL1qAQ1gvta28ebYLnD-xsSNncGeDcJ92BXa5n80U,3153
59
59
  mlrun/common/schemas/object.py,sha256=VleJSUmDJMl92knLgaDE8SWCi3ky0UaHcwcwOIapPQ8,1980
60
60
  mlrun/common/schemas/pagination.py,sha256=q7nk6bipkDiE7HExIVqhy5ANl-zv0x8QC9Kg6AkLtDA,887
61
61
  mlrun/common/schemas/pipeline.py,sha256=MhH07_fAQXNAnmf5j6oXZp8qh9cxGcZlReMdt-ZJf40,1429
@@ -68,7 +68,7 @@ mlrun/common/schemas/secret.py,sha256=51tCN1F8DFTq4y_XdHIMDy3I1TnMEBX8kO8BHKavYF
68
68
  mlrun/common/schemas/tag.py,sha256=OAn9Qt6z8ibqw8uU8WQSvuwY8irUv45Dhx2Ko5FzUss,884
69
69
  mlrun/common/schemas/workflow.py,sha256=eRoaOBFiWbvP0iwZ6Aof5JmheV81A0-0PGi8L4vuXmI,1823
70
70
  mlrun/common/schemas/model_monitoring/__init__.py,sha256=uCnHhhVZkWbbtsawIjOa3ub9ShDJK2md-s2fbx46crg,1792
71
- mlrun/common/schemas/model_monitoring/constants.py,sha256=sknS628AliiJzrOfDImTIxwBiHTgWNBxH2A7eiGnAMo,9438
71
+ mlrun/common/schemas/model_monitoring/constants.py,sha256=YaKwvMHhJVIwFJDsLg2Iu6zCv2YgxdiiJ1owvb5IGGk,9568
72
72
  mlrun/common/schemas/model_monitoring/grafana.py,sha256=SG13MFUUz_tk6-mWeSx17qcdEW4ekicxqNtnMSwRTCY,1559
73
73
  mlrun/common/schemas/model_monitoring/model_endpoints.py,sha256=3wPlCFNoBsHlCMgyJlXfNP-ZqIRsBXzyBX79O2PHkeg,13799
74
74
  mlrun/data_types/__init__.py,sha256=EkxfkFoHb91zz3Aymq-KZfCHlPMzEc3bBqgzPUwmHWY,1087
@@ -77,24 +77,24 @@ mlrun/data_types/infer.py,sha256=z2EbSpR6xWEE5-HRUtDZkapHQld3xMbzXtTX83K-690,613
77
77
  mlrun/data_types/spark.py,sha256=xfcr6lcaLcHepnrHavx_vacMJK7BC8FWsUKjwrjjn6w,9509
78
78
  mlrun/data_types/to_pandas.py,sha256=xPEcQ5_Wb-L1WRhPy8lBbw5HZlPx0PaQOPZISTvrn80,11182
79
79
  mlrun/datastore/__init__.py,sha256=8WvgHF245fvU9u98ctRqosvEmQ9iAKKIIS_dSgj_fmU,4153
80
- mlrun/datastore/alibaba_oss.py,sha256=OfQ9AbsJNBFF9DFgUdq38TvKw6qwnHmEcnH-nze6ZZg,4827
81
- mlrun/datastore/azure_blob.py,sha256=T0IzgBQJxcv8c97VJ1KDayvo_dkxLlgQboa7vcx1WEk,9077
82
- mlrun/datastore/base.py,sha256=7H1S2oBEZQz3BFrI1T0JFM2hJA0elKbthhwv0sl5bAA,25942
80
+ mlrun/datastore/alibaba_oss.py,sha256=mmdWcd8mS24f-40MF6wWO3EPQELnS-FzCze-M6EB-r8,4833
81
+ mlrun/datastore/azure_blob.py,sha256=3htYsPBjWrxAfywnf2qM6Ol06uiA4cuDO_-JX7FpXL8,12874
82
+ mlrun/datastore/base.py,sha256=vKBkvjq_d7ydf6DeyWwyGP2A6yuO0cBA8Yo_FyoRRKU,25945
83
83
  mlrun/datastore/datastore.py,sha256=F2i8XI2hkQwf51OjqdFZ8179oHvDfQtaT5pvfkvMV9U,9389
84
84
  mlrun/datastore/datastore_profile.py,sha256=ZCU-brdRNXNE8EnknzFljtWjciEJ9sGZnoahFxbdEt4,18940
85
- mlrun/datastore/dbfs_store.py,sha256=5IkxnFQXkW0fdx-ca5jjQnUdTsTfNdJzMvV31ZpDNrM,6634
85
+ mlrun/datastore/dbfs_store.py,sha256=HEBzJEXMdkAmZLZfYVAkxYhVRSNiew_K2YU5kfPq2FQ,6640
86
86
  mlrun/datastore/filestore.py,sha256=nS3Ie6jG41NDiW_as9tF8Nu5maaSVEKYKUr1IQtPhuA,3767
87
- mlrun/datastore/google_cloud_storage.py,sha256=Kj_2aqkFos5zoE6rGOBN27yWuuMc62mwGINy3AQWQoc,6309
87
+ mlrun/datastore/google_cloud_storage.py,sha256=idY38uhl6gWY5R7W-BZTWOLmmFtxlYvuRFci6xAdRy0,8860
88
88
  mlrun/datastore/hdfs.py,sha256=TfL1zUWVRxEHF9kswZtOzrMdDmhSfiSVIAjz7fxWyVw,1876
89
89
  mlrun/datastore/inmem.py,sha256=d2dIvHlOQylhc-i4B5Kk9e9ayXnF7DICc5yUlHcNwqs,2873
90
90
  mlrun/datastore/redis.py,sha256=OKMkDCU3APhxfo65SyJq605u1DsfOYH0fODnCXZRqEU,5575
91
- mlrun/datastore/s3.py,sha256=FxydsakMF_c_VphBoT6p87bam1v4ZvwSPFq5M-6Z6c4,8686
91
+ mlrun/datastore/s3.py,sha256=5ErrFi1TRsZ4hqCfjEg_5EQ74NEvxt8RfFDbu4cPTPg,8692
92
92
  mlrun/datastore/snowflake_utils.py,sha256=Wohvnlmq8j1d98RCaknll-iWdZZpSlCrKhUOEy0_-CA,1483
93
- mlrun/datastore/sources.py,sha256=Mxn2aS42kSv7I6GrNixUHMjE8taEvs6-YQZE2L4Lsxg,46564
93
+ mlrun/datastore/sources.py,sha256=op90ksx95wqaBtoiORpHnqEgw4iGEDPsJ3_lI8ftS-E,48801
94
94
  mlrun/datastore/spark_udf.py,sha256=NnnB3DZxZb-rqpRy7b-NC7QWXuuqFn3XkBDc86tU4mQ,1498
95
95
  mlrun/datastore/spark_utils.py,sha256=_AsVoU5Ix_-W7Gyq8io8V-2GTk0m8THJNDP3WGGaWJY,2865
96
96
  mlrun/datastore/store_resources.py,sha256=rcLoG506AMmR8qPJU_gE-G5d34VJVV_vNlZ3VHqho6c,6869
97
- mlrun/datastore/targets.py,sha256=JbffgF3yct9FSJ2LaKR--iUNCDq5Qzbd5mYqq1yPmeg,81178
97
+ mlrun/datastore/targets.py,sha256=rnQBL5wpK7Oc1GQ4_Pub8v6FTwTo18NeEn7L4jfuw9A,80343
98
98
  mlrun/datastore/utils.py,sha256=l9dLZb_VCbHs_htqMFRv4qiestZ8z8K-4eY1MxHS8wE,7720
99
99
  mlrun/datastore/v3io.py,sha256=tmZ2S-POZhjjKPE_0T1EkHcv6Q10pz5KQiaTXE1Be-4,8102
100
100
  mlrun/datastore/wasbfs/__init__.py,sha256=s5Ul-0kAhYqFjKDR2X0O2vDGDbLQQduElb32Ev56Te4,1343
@@ -103,11 +103,11 @@ mlrun/db/__init__.py,sha256=WqJ4x8lqJ7ZoKbhEyFqkYADd9P6E3citckx9e9ZLcIU,1163
103
103
  mlrun/db/auth_utils.py,sha256=hpg8D2r82oN0BWabuWN04BTNZ7jYMAF242YSUpK7LFM,5211
104
104
  mlrun/db/base.py,sha256=VztBik6tUYFKGRVXIsXZE7HrALx0hO_sgpCcE2O0cLU,24156
105
105
  mlrun/db/factory.py,sha256=ibIrE5QkIIyzDU1FXKrfbc31cZiRLYKDZb8dqCpQwyU,2397
106
- mlrun/db/httpdb.py,sha256=UW-vVFS5xAavHtZi1GmiEhGr9P2s3O8b9OkqgpcY7-o,183981
106
+ mlrun/db/httpdb.py,sha256=YUU0wxentN5d7_HbquYIqc7xrnUCn9on8QWNQahHmh8,184246
107
107
  mlrun/db/nopdb.py,sha256=d7vSk_2sfwZGY24w7ucSkoq88fLPDLF137IXabongXU,20791
108
108
  mlrun/feature_store/__init__.py,sha256=FhHRc8NdqL_HWpCs7A8dKruxJS5wEm55Gs3dcgBiRUg,1522
109
- mlrun/feature_store/api.py,sha256=czYTgN3zUx7j6n57z-T0btW0-PI1OxegL0o3kUUqMa8,49664
110
- mlrun/feature_store/common.py,sha256=DKmoRk04NCS1gv7qZuEUa2-g8WsfR6IWjYctcrqKVlg,12853
109
+ mlrun/feature_store/api.py,sha256=NZJ7Qp5L-0X08oI_xHTX6PukGq9Mt_9uU_KmVMbFB6s,49941
110
+ mlrun/feature_store/common.py,sha256=mSlfEj_LIbtM-pNiIWUGIdX0Z0y5ZoH5nKow7KMc5VQ,12673
111
111
  mlrun/feature_store/feature_set.py,sha256=qD8RqkeoJFbJMMK5-zjs-27DC4UXQiQSokkt4pdMzkw,56027
112
112
  mlrun/feature_store/feature_vector.py,sha256=A29-yCsFgvFU_Qw53CgDjn8t_okh7Nm6FZuvcEaKci0,44134
113
113
  mlrun/feature_store/ingestion.py,sha256=kT3Hbz1PBjsJd-GPBm2ap0sg9-fiXxaSXoEIo-dOXpU,11361
@@ -115,7 +115,7 @@ mlrun/feature_store/steps.py,sha256=kdOrYh3fAdamV-RYNr86cFg445h_pgSWlb1EHOsAZUM,
115
115
  mlrun/feature_store/retrieval/__init__.py,sha256=bwA4copPpLQi8fyoUAYtOyrlw0-6f3-Knct8GbJSvRg,1282
116
116
  mlrun/feature_store/retrieval/base.py,sha256=zgDsRsYQz8eqReKBEeTP0O4UoLoVYjWpO1o1gtvbjRA,30230
117
117
  mlrun/feature_store/retrieval/dask_merger.py,sha256=t60xciYp6StUQLEyFyI4JK5NpWkdBy2MGCs6beimaWU,5575
118
- mlrun/feature_store/retrieval/job.py,sha256=vm50yAqvaazuTGbCOgN_e1Ax8gh-d-qQN4Ebz4OnsLs,8557
118
+ mlrun/feature_store/retrieval/job.py,sha256=7ZgJwNtFxvMeOa_kTT6rpYmVUSHv5bLdDpkJ5chv8us,8558
119
119
  mlrun/feature_store/retrieval/local_merger.py,sha256=jM-8ta44PeNUc1cKMPs-TxrO9t8pXbwu_Tw8MZrLxUY,4513
120
120
  mlrun/feature_store/retrieval/spark_merger.py,sha256=n3WxFlrY0y5mJ-7U8GJJlv9QulG4WSUSdHY0xJjHzhY,10552
121
121
  mlrun/feature_store/retrieval/storey_merger.py,sha256=5YM0UPrLjGOobulHkowRO-1LuvFD2cm_0GxcpnTdu0I,6314
@@ -210,22 +210,22 @@ mlrun/launcher/factory.py,sha256=RW7mfzEFi8fR0M-4W1JQg1iq3_muUU6OTqT_3l4Ubrk,233
210
210
  mlrun/launcher/local.py,sha256=pP9-ZrNL8OnNDEiXTAKAZQnmLpS_mCc2v-mJw329eks,11269
211
211
  mlrun/launcher/remote.py,sha256=tGICSfWtvUHeR31mbzy6gqHejmDxjPUgjtxXTWhRubg,7699
212
212
  mlrun/model_monitoring/__init__.py,sha256=dm5_j0_pwqrdzFwTaEtGnKfv2nVpNaM56nBI-oqLbNU,879
213
- mlrun/model_monitoring/api.py,sha256=grgMVJunQ0pA3dfLyaG0R7Amq_-NUUw7BNdBsedwfNw,28430
213
+ mlrun/model_monitoring/api.py,sha256=t37ytGk5XCff0VBL7qpQclNx96DxLxCSnXp3aDIbGVU,28659
214
214
  mlrun/model_monitoring/application.py,sha256=RJ8HeAPfGO3P2A_dEZYNg60c1wKTADh2YSv8BQ5embg,745
215
- mlrun/model_monitoring/controller.py,sha256=kIwWgmUqVvh1qPWalibzIf0crYsDYYDEEYyagIEYqms,27890
215
+ mlrun/model_monitoring/controller.py,sha256=fNLQ1LHVf1xlC8wamlhT-051Yg-PNK_2POUnfwfv5aw,28077
216
216
  mlrun/model_monitoring/evidently_application.py,sha256=iOc42IVjj8m6PDBmVcKIMWm46Bu0EdO9SDcH40Eqhyo,769
217
217
  mlrun/model_monitoring/features_drift_table.py,sha256=c6GpKtpOJbuT1u5uMWDL_S-6N4YPOmlktWMqPme3KFY,25308
218
- mlrun/model_monitoring/helpers.py,sha256=7uKQxaGcEkKCNcjXp4WsdiOS50Cy2H5BWPx6dOQbbG8,11587
218
+ mlrun/model_monitoring/helpers.py,sha256=foBrm9SMIlnMvNFxJ9S6sb9JSKAW_yHgpaTMPdz4tQY,11591
219
219
  mlrun/model_monitoring/model_endpoint.py,sha256=7VX0cBATqLsA4sSinDzouf41ndxqh2mf5bO9BW0G5Z4,4017
220
- mlrun/model_monitoring/stream_processing.py,sha256=QLnqVgPWNJT_ydZU1yhwIiEl1gtNASqG4B_c5xCFbm4,37916
220
+ mlrun/model_monitoring/stream_processing.py,sha256=kRyukjAe28cg-m86cIlThEXp-fphyYHOLh5Gvq5_na8,39381
221
221
  mlrun/model_monitoring/tracking_policy.py,sha256=sQq956akAQpntkrJwIgFWcEq-JpyVcg0FxgNa4h3V70,5502
222
222
  mlrun/model_monitoring/writer.py,sha256=FsSmzF9fjb2mk-pmByOB1SZJ_NMBjCw4tGGXhkF3OJU,9954
223
223
  mlrun/model_monitoring/applications/__init__.py,sha256=i793GqYee01mRh_KD6GShvX7UbPBgdJDO4qf9Z3BXEQ,970
224
- mlrun/model_monitoring/applications/_application_steps.py,sha256=1e4LR2usVkGJ50uHF0-PAnXJo9HtxatrDmO1Znkb1Vc,6431
224
+ mlrun/model_monitoring/applications/_application_steps.py,sha256=QOtLVBdPyAmTV-n5ZwpJrlivoprQiDygujUzVhHVdU4,7719
225
225
  mlrun/model_monitoring/applications/base.py,sha256=snr3xYdqv6Po19yS0Z1VktyoLrbl88lljSFQyjnKjR0,11616
226
226
  mlrun/model_monitoring/applications/context.py,sha256=LGRJdI1eyyssFzjE4W_rk2VAUV8KpOkUZUX3xCmnC9g,8537
227
227
  mlrun/model_monitoring/applications/evidently_base.py,sha256=6hzfO6s0jEVHj4R_pujcn_p6LvdkKUDb9S4B6j2XEUY,8024
228
- mlrun/model_monitoring/applications/histogram_data_drift.py,sha256=TE6995h2PyO4lytVngH2HidhXFY7reLupWi4cHmdZdw,13163
228
+ mlrun/model_monitoring/applications/histogram_data_drift.py,sha256=OOPojE-KIP9rAPZ6va6uJOjqJOb3c8K_VAmITXZd918,13341
229
229
  mlrun/model_monitoring/applications/results.py,sha256=VVlu9Si7Tj2LNJzPQrp4_Qeyh9mxOVMu1Jwb5K2LfvY,3577
230
230
  mlrun/model_monitoring/db/__init__.py,sha256=6Ic-X3Fh9XLPYMytmevGNSs-Hii1rAjLLoFTSPwTguw,736
231
231
  mlrun/model_monitoring/db/stores/__init__.py,sha256=ZScmxeZZ3yZ84MocdDGRtvVIixSo0rAPiuLpavXTgJw,4737
@@ -238,17 +238,17 @@ mlrun/model_monitoring/db/stores/sqldb/models/base.py,sha256=V2B5WdQM0KHKq0FNDq6
238
238
  mlrun/model_monitoring/db/stores/sqldb/models/mysql.py,sha256=4SfjS0Rz6hSvZwU4s_weQ1jk5IPvaCU1HLum459U5ig,3192
239
239
  mlrun/model_monitoring/db/stores/sqldb/models/sqlite.py,sha256=yJJZppbKj3PsOANS_DXAQFFHKX4cQcm6Pz2DoxRiXMk,1104
240
240
  mlrun/model_monitoring/db/stores/v3io_kv/__init__.py,sha256=6CsTXAxeLbbf8yfCADTaxmiavqwrLEdYFJ-qc5kgDAY,569
241
- mlrun/model_monitoring/db/stores/v3io_kv/kv_store.py,sha256=3plDwbm99J1q6QgTaPN_AaSC1q-6ckBNxxh2c4gAY8M,26318
241
+ mlrun/model_monitoring/db/stores/v3io_kv/kv_store.py,sha256=ihtBrXt7QRKhCACH73kHetxQu0JMIVWf8VTPaTSSQdA,26528
242
242
  mlrun/model_monitoring/db/tsdb/__init__.py,sha256=_Mfa4gguX86OS1fQCxnt_QSaNh603-zPYAK8NjYk7t8,4040
243
- mlrun/model_monitoring/db/tsdb/base.py,sha256=GVY-G76iSptj_c7_uadBIGXCfWv5y4Q6ep79k1ysW7M,13630
243
+ mlrun/model_monitoring/db/tsdb/base.py,sha256=X89X763sDrShfRXE1N-p8k97E8NBs7O1QJFiO-CffLM,18583
244
244
  mlrun/model_monitoring/db/tsdb/helpers.py,sha256=0oUXc4aUkYtP2SGP6jTb3uPPKImIUsVsrb9otX9a7O4,1189
245
245
  mlrun/model_monitoring/db/tsdb/tdengine/__init__.py,sha256=vgBdsKaXUURKqIf3M0y4sRatmSVA4CQiJs7J5dcVBkQ,620
246
- mlrun/model_monitoring/db/tsdb/tdengine/schemas.py,sha256=94u886UtyK40YNtdOX8WiJUImDytygdaqIzFwo_ExzI,8881
246
+ mlrun/model_monitoring/db/tsdb/tdengine/schemas.py,sha256=dlb4DHtA6_5ZWKjRh9N-sFZZu8VCsg8LjKPRLm19woY,10506
247
247
  mlrun/model_monitoring/db/tsdb/tdengine/stream_graph_steps.py,sha256=Hb0vcCBP-o0ET78mU4P32fnhUL65QZv-pMuv2lnCby4,1586
248
- mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connector.py,sha256=oplt9s-C-OGa__V456nkHwvyBe5YHxcuIJcYV9GFQHY,15521
248
+ mlrun/model_monitoring/db/tsdb/tdengine/tdengine_connector.py,sha256=cdx-09FtSjKl2fGsqZatwdTlg6UioMTRcZFRScvQaYA,18263
249
249
  mlrun/model_monitoring/db/tsdb/v3io/__init__.py,sha256=aL3bfmQsUQ-sbvKGdNihFj8gLCK3mSys0qDcXtYOwgc,616
250
- mlrun/model_monitoring/db/tsdb/v3io/stream_graph_steps.py,sha256=NdiqMBERfAmIdOWKiXvZTfmICsjnSAT4-8-b6ZDKiiE,5440
251
- mlrun/model_monitoring/db/tsdb/v3io/v3io_connector.py,sha256=hroUaoxbvKHDqM5L01p4EuYNuFjzaUQyT-HWt47LJCY,26362
250
+ mlrun/model_monitoring/db/tsdb/v3io/stream_graph_steps.py,sha256=mbmhN4f_F58ptVjhwoMF6ifZSdnZWhK7x8eNsWS39IA,6217
251
+ mlrun/model_monitoring/db/tsdb/v3io/v3io_connector.py,sha256=QVxfkITuNYZDbUjKj1c6WvVmtc7I1HwZwlKQb61oO5k,32340
252
252
  mlrun/model_monitoring/metrics/__init__.py,sha256=6CsTXAxeLbbf8yfCADTaxmiavqwrLEdYFJ-qc5kgDAY,569
253
253
  mlrun/model_monitoring/metrics/histogram_distance.py,sha256=E9_WIl2vd6qNvoHVHoFcnuQk3ekbFWOdi8aU7sHrfk4,4724
254
254
  mlrun/package/__init__.py,sha256=uWILzN42bcq5vFRk6ptxEmn1I5uBWAnhaJr7e4H834w,7082
@@ -271,10 +271,10 @@ mlrun/package/utils/type_hint_utils.py,sha256=JYrek6vuN3z7e6MGUD3qBLDfQ03C4puZXN
271
271
  mlrun/platforms/__init__.py,sha256=ggSGF7inITs6S-vj9u4S9X_5psgbA0G3GVqf7zu8qYc,2406
272
272
  mlrun/platforms/iguazio.py,sha256=1h5BpdAEQJBg2vIt7ySjUADU0ip5OkaMYr0_VREi9ys,13084
273
273
  mlrun/projects/__init__.py,sha256=Lv5rfxyXJrw6WGOWJKhBz66M6t3_zsNMCfUD6waPwx4,1153
274
- mlrun/projects/operations.py,sha256=Bf1AmISGgBVcZYrLQdJzP9Oi1MWrN3vq0L0HNa_RKoU,19436
275
- mlrun/projects/pipelines.py,sha256=_589S5rtZUV6cne1yPvOVhh3oB83fIwdQqNg47R2e6I,40608
276
- mlrun/projects/project.py,sha256=ikvso3d1OevX2mkSb7bqPQMg6LPBCk-5zzp58vTGRUg,184906
277
- mlrun/runtimes/__init__.py,sha256=0-tYDkew-Cr4DM-wztvMbzDA5xq385Jjo-GrtO_84Sc,8741
274
+ mlrun/projects/operations.py,sha256=UEpiW4bDscth4pwWcLWF1xz-IU7bnZfckPR7sXp3O-g,19441
275
+ mlrun/projects/pipelines.py,sha256=iFa0iy4iYk3yUH4Nx-sq7VVJhXW8LlR3Hsbjx_KLL5Y,40019
276
+ mlrun/projects/project.py,sha256=zflD9aRmyjTghOz6TzVDAkEKnrhFasLF1QtLfEyEZYM,185296
277
+ mlrun/runtimes/__init__.py,sha256=egLM94cDMUyQ1GVABdFGXUQcDhU70lP3k7qSnM_UnHY,9008
278
278
  mlrun/runtimes/base.py,sha256=JXWmTIcm3b0klGUOHDlyFNa3bUgsNzQIgWhUQpSZoE0,37692
279
279
  mlrun/runtimes/daskjob.py,sha256=JfK8rSPY-0SYnLJdtp_ts3oKyad0pA98th-2VntYzK0,19387
280
280
  mlrun/runtimes/funcdoc.py,sha256=CC9cWRPgBiM2sk4NJTqusjc6O9kZ-49vGA5WRPjREKE,9796
@@ -282,8 +282,8 @@ mlrun/runtimes/function_reference.py,sha256=iWKRe4r2GTc5S8FOIASYUNLwwne8NqIui51P
282
282
  mlrun/runtimes/generators.py,sha256=v28HdNgxdHvj888G1dTnUeQZz-D9iTO0hoGeZbCdiuQ,7241
283
283
  mlrun/runtimes/kubejob.py,sha256=ptBnMTIjukbEznkdixmbGvBqzujXrRzqNfP7ze6M76M,8660
284
284
  mlrun/runtimes/local.py,sha256=h_w0tzCfF1_tZZEjw-FJHqYmoxK-AhN2skpK7cdU1JI,22611
285
- mlrun/runtimes/pod.py,sha256=j0zsnbZq1p_RuK5u9re7iAX-E-UVnhm3Nx9JFfHFy9U,63184
286
- mlrun/runtimes/remotesparkjob.py,sha256=9DPxDK8x08t9nReMo083TBxJiiqA83mHCbdtxrjj7AU,7426
285
+ mlrun/runtimes/pod.py,sha256=GtLrxQE28MWlbnOJPiT3oYqBy-wzDHCCmbhm5zms6pQ,63208
286
+ mlrun/runtimes/remotesparkjob.py,sha256=3ggRVNod67TRnsM2-Ilr9Sw5OWqkRwHWaiBkGvmWU2c,7357
287
287
  mlrun/runtimes/utils.py,sha256=kX4SpO3zymxa8bXPJg5eSb0tfPi5NlZRl1IJCahTQuc,15004
288
288
  mlrun/runtimes/databricks_job/__init__.py,sha256=kXGBqhLN0rlAx0kTXhozGzFsIdSqW0uTSKMmsLgq_is,569
289
289
  mlrun/runtimes/databricks_job/databricks_cancel_task.py,sha256=sIqIg5DQAf4j0wCPA-G0GoxY6vacRddxCy5KDUZszek,2245
@@ -293,15 +293,15 @@ mlrun/runtimes/mpijob/__init__.py,sha256=V_1gQD1VHa0Qvjqgyv8RLouH27Sy9YTwj2ZG62o
293
293
  mlrun/runtimes/mpijob/abstract.py,sha256=kDWo-IY1FKLZhI30j38Xx9HMhlUvHezfd1DT2ShoxZY,9161
294
294
  mlrun/runtimes/mpijob/v1.py,sha256=1XQZC7AIMGX_AQCbApcwpH8I7y39-v0v2O35MvxjXoo,3213
295
295
  mlrun/runtimes/nuclio/__init__.py,sha256=gx1kizzKv8pGT5TNloN1js1hdbxqDw3rM90sLVYVffY,794
296
- mlrun/runtimes/nuclio/api_gateway.py,sha256=lSqHspGhXuf53_JiEg_vBgWo-Ykkh2jUzzFqJ_Gd_lQ,25793
297
- mlrun/runtimes/nuclio/function.py,sha256=hnJk6DR8ll50oeX9lF5Sj7fSqsLlnyNW9nhtZ04o7g8,50761
296
+ mlrun/runtimes/nuclio/api_gateway.py,sha256=q7ZV4KVXZmbT8Had419sxSMWNYayl2Bb-9luAxwk0nc,26146
297
+ mlrun/runtimes/nuclio/function.py,sha256=4bKjuCIL-Hwh4gIXQSgI-7KqOOkKGHTydpdlvCRvMs8,50761
298
298
  mlrun/runtimes/nuclio/nuclio.py,sha256=sLK8KdGO1LbftlL3HqPZlFOFTAAuxJACZCVl1c0Ha6E,2942
299
299
  mlrun/runtimes/nuclio/serving.py,sha256=eUMqtIU6NYIVgKtxfxKN7pd9_QCo_V0aurrjUSU3s08,29754
300
300
  mlrun/runtimes/nuclio/application/__init__.py,sha256=rRs5vasy_G9IyoTpYIjYDafGoL6ifFBKgBtsXn31Atw,614
301
- mlrun/runtimes/nuclio/application/application.py,sha256=gbwR4RL95tcT-SRE_dMEv9c1LfzfDoxq9j6thuWNNu8,23420
301
+ mlrun/runtimes/nuclio/application/application.py,sha256=jMoCZGw0Xo0i71_wss0IZfuP1rC_0GMdXHbVOj2dBfA,25407
302
302
  mlrun/runtimes/nuclio/application/reverse_proxy.go,sha256=JIIYae6bXzCLf3jXuu49KWPQYoXr_FDQ2Rbo1OWKAd0,3150
303
303
  mlrun/runtimes/sparkjob/__init__.py,sha256=_KPvk0qefeLtHO6lxQE_AMOGiMTG_OT48eRCE4Z2ldw,709
304
- mlrun/runtimes/sparkjob/spark3job.py,sha256=l6leyuI49LGN8gMPbuFJltajNg6YoCFo20Q319HqvLU,40993
304
+ mlrun/runtimes/sparkjob/spark3job.py,sha256=fj3iiqScXNR7wvnHXvgtvgvHkGNCKAvLBX9XF17dNeI,41027
305
305
  mlrun/serving/__init__.py,sha256=-SMRV3q_5cGVPDxRslXPU0zGYZIygs0cSj7WKlOJJUc,1163
306
306
  mlrun/serving/merger.py,sha256=PXLn3A21FiLteJHaDSLm5xKNT-80eTTjfHUJnBX1gKY,6116
307
307
  mlrun/serving/remote.py,sha256=MrFByphQWmIsKXqw-MOwl2Q1hbtWReYVRKvlcKj9pfw,17980
@@ -311,19 +311,19 @@ mlrun/serving/serving_wrapper.py,sha256=R670-S6PX_d5ER6jiHtRvacuPyFzQH0mEf2K0sBI
311
311
  mlrun/serving/states.py,sha256=4bRZ9YZc-M_XcIGCtAq0Ubx7YoUgwB_0b7h4bsikmcM,59974
312
312
  mlrun/serving/utils.py,sha256=lej7XcUPX1MmHkEOi_0KZRGSpfbmpnE0GK_Sn4zLkHY,4025
313
313
  mlrun/serving/v1_serving.py,sha256=by4myxlnwyZ0ijQ5fURilGCK1sUpdQL2Il1VR3Xqpxg,11805
314
- mlrun/serving/v2_serving.py,sha256=2tTVQXVtVicOtT4ZH82_Bjq89LDC0BfQxq3QvuD5p_8,24518
314
+ mlrun/serving/v2_serving.py,sha256=_pjZnd_U81IQNGp17rCd1EWVfuKeIO7PN2o8yFsOTE8,24598
315
315
  mlrun/track/__init__.py,sha256=LWRUHJt8JyFW17FyNPOVyWd-NXTf1iptzsK9KFj5fuY,765
316
316
  mlrun/track/tracker.py,sha256=hSi9sMxB7hhZalt6Q8GXDnK4UoCbXHzKTrpUPC9hZv4,3555
317
317
  mlrun/track/tracker_manager.py,sha256=IYBl99I62IC6VCCmG1yt6JoHNOQXa53C4DURJ2sWgio,5726
318
318
  mlrun/track/trackers/__init__.py,sha256=9xft8YjJnblwqt8f05htmOt_eDzVBVQN07RfY_SYLCs,569
319
- mlrun/track/trackers/mlflow_tracker.py,sha256=HkNO9fENOCl1DgAU72FclowVnFfmyQlZeWlj4GklvMI,23258
319
+ mlrun/track/trackers/mlflow_tracker.py,sha256=O3ROZh6NZ92Ghga8c2FGaYmWLdgTs33GchNJVa8ypkY,23469
320
320
  mlrun/utils/__init__.py,sha256=g2pbT3loDw0GWELOC_rBq1NojSMCFnWrD-TYcDgAZiI,826
321
321
  mlrun/utils/async_http.py,sha256=CZY8hNBMQaWrT6PLplyocCFbzaKrJnknFUP0e6kcDBw,11724
322
322
  mlrun/utils/azure_vault.py,sha256=IEFizrDGDbAaoWwDr1WoA88S_EZ0T--vjYtY-i0cvYQ,3450
323
323
  mlrun/utils/clones.py,sha256=mJpx4nyFiY6jlBCvFABsNuyi_mr1mvfPWn81vlafpOU,7361
324
324
  mlrun/utils/condition_evaluator.py,sha256=-nGfRmZzivn01rHTroiGY4rqEv8T1irMyhzxEei-sKc,1897
325
325
  mlrun/utils/db.py,sha256=blQgkWMfFH9lcN4sgJQcPQgEETz2Dl_zwbVA0SslpFg,2186
326
- mlrun/utils/helpers.py,sha256=ZBLxZ0rJV-rRsM3lwmIG92KT2rFLpkJyPS9-8Loh3Lg,57703
326
+ mlrun/utils/helpers.py,sha256=DT3Oxcspgg7ZgwKX0-CoQWE4IJXVacWi0PtN--tE_uw,58504
327
327
  mlrun/utils/http.py,sha256=t6FrXQstZm9xVVjxqIGiLzrwZNCR4CSienSOuVgNIcI,8706
328
328
  mlrun/utils/logger.py,sha256=cag2J30-jynIHmHZ2J8RYmVMNhYBGgAoimc5sbk-A1U,10016
329
329
  mlrun/utils/regex.py,sha256=b0AUa2THS-ELzJj0grl5b8Stq609F2XomTZkD9SB1fQ,4900
@@ -341,11 +341,11 @@ mlrun/utils/notifications/notification/ipython.py,sha256=ZtVL30B_Ha0VGoo4LxO-voT
341
341
  mlrun/utils/notifications/notification/slack.py,sha256=wqpFGr5BTvFO5KuUSzFfxsgmyU1Ohq7fbrGeNe9TXOk,7006
342
342
  mlrun/utils/notifications/notification/webhook.py,sha256=cb9w1Mc8ENfJBdgan7iiVHK9eVls4-R3tUxmXM-P-8I,4746
343
343
  mlrun/utils/version/__init__.py,sha256=7kkrB7hEZ3cLXoWj1kPoDwo4MaswsI2JVOBpbKgPAgc,614
344
- mlrun/utils/version/version.json,sha256=hlddDtaeIkEVdSQ-PWSqF6PX3bQRWWGTqCT7sUjJScA,89
344
+ mlrun/utils/version/version.json,sha256=IFdtR_egAhFsj5YKnQk23PxBFBTz-VXWkTQvF22gjZs,89
345
345
  mlrun/utils/version/version.py,sha256=eEW0tqIAkU9Xifxv8Z9_qsYnNhn3YH7NRAfM-pPLt1g,1878
346
- mlrun-1.7.0rc37.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
347
- mlrun-1.7.0rc37.dist-info/METADATA,sha256=bi7ocwF4P95Vh8fB8dA6gmE7F5z5QrT7uhz1bv4fp5A,19741
348
- mlrun-1.7.0rc37.dist-info/WHEEL,sha256=R0nc6qTxuoLk7ShA2_Y-UWkN8ZdfDBG2B6Eqpz2WXbs,91
349
- mlrun-1.7.0rc37.dist-info/entry_points.txt,sha256=1Owd16eAclD5pfRCoJpYC2ZJSyGNTtUr0nCELMioMmU,46
350
- mlrun-1.7.0rc37.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
351
- mlrun-1.7.0rc37.dist-info/RECORD,,
346
+ mlrun-1.7.0rc39.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
347
+ mlrun-1.7.0rc39.dist-info/METADATA,sha256=Knzp26VU63pEwhsmtnhgchilq_GoiK3YOlHEwlxjOyY,19939
348
+ mlrun-1.7.0rc39.dist-info/WHEEL,sha256=UvcQYKBHoFqaQd6LKyqHw9fxEolWLQnlzP0h_LgJAfI,91
349
+ mlrun-1.7.0rc39.dist-info/entry_points.txt,sha256=1Owd16eAclD5pfRCoJpYC2ZJSyGNTtUr0nCELMioMmU,46
350
+ mlrun-1.7.0rc39.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
351
+ mlrun-1.7.0rc39.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (72.1.0)
2
+ Generator: setuptools (74.0.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5