mlrun 1.6.2rc6__py3-none-any.whl → 1.6.3__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 (61) hide show
  1. mlrun/artifacts/model.py +28 -22
  2. mlrun/common/db/sql_session.py +3 -0
  3. mlrun/common/model_monitoring/helpers.py +4 -2
  4. mlrun/common/schemas/__init__.py +2 -0
  5. mlrun/common/schemas/common.py +40 -0
  6. mlrun/common/schemas/model_monitoring/__init__.py +1 -0
  7. mlrun/common/schemas/model_monitoring/constants.py +21 -5
  8. mlrun/common/schemas/project.py +2 -0
  9. mlrun/config.py +59 -20
  10. mlrun/data_types/data_types.py +4 -0
  11. mlrun/datastore/azure_blob.py +9 -9
  12. mlrun/datastore/base.py +22 -44
  13. mlrun/datastore/google_cloud_storage.py +6 -6
  14. mlrun/datastore/v3io.py +74 -73
  15. mlrun/db/auth_utils.py +152 -0
  16. mlrun/db/base.py +18 -0
  17. mlrun/db/httpdb.py +79 -55
  18. mlrun/execution.py +3 -3
  19. mlrun/frameworks/tf_keras/callbacks/logging_callback.py +3 -3
  20. mlrun/frameworks/tf_keras/model_handler.py +7 -7
  21. mlrun/k8s_utils.py +10 -5
  22. mlrun/kfpops.py +19 -10
  23. mlrun/lists.py +2 -0
  24. mlrun/model.py +31 -2
  25. mlrun/model_monitoring/api.py +8 -8
  26. mlrun/model_monitoring/batch.py +1 -1
  27. mlrun/model_monitoring/controller.py +0 -7
  28. mlrun/model_monitoring/features_drift_table.py +6 -0
  29. mlrun/model_monitoring/helpers.py +4 -1
  30. mlrun/model_monitoring/stores/kv_model_endpoint_store.py +13 -13
  31. mlrun/model_monitoring/stores/sql_model_endpoint_store.py +0 -1
  32. mlrun/model_monitoring/stream_processing.py +50 -37
  33. mlrun/package/packagers/pandas_packagers.py +3 -3
  34. mlrun/package/utils/_archiver.py +3 -1
  35. mlrun/platforms/iguazio.py +6 -65
  36. mlrun/projects/pipelines.py +51 -17
  37. mlrun/projects/project.py +77 -61
  38. mlrun/render.py +13 -4
  39. mlrun/run.py +2 -0
  40. mlrun/runtimes/base.py +24 -1
  41. mlrun/runtimes/function.py +9 -9
  42. mlrun/runtimes/kubejob.py +5 -3
  43. mlrun/runtimes/local.py +2 -2
  44. mlrun/runtimes/mpijob/abstract.py +6 -6
  45. mlrun/runtimes/pod.py +8 -8
  46. mlrun/runtimes/serving.py +3 -3
  47. mlrun/runtimes/sparkjob/spark3job.py +3 -3
  48. mlrun/serving/remote.py +4 -2
  49. mlrun/utils/async_http.py +28 -8
  50. mlrun/utils/helpers.py +20 -0
  51. mlrun/utils/http.py +3 -3
  52. mlrun/utils/logger.py +11 -6
  53. mlrun/utils/notifications/notification_pusher.py +6 -6
  54. mlrun/utils/version/version.json +2 -2
  55. {mlrun-1.6.2rc6.dist-info → mlrun-1.6.3.dist-info}/METADATA +18 -18
  56. {mlrun-1.6.2rc6.dist-info → mlrun-1.6.3.dist-info}/RECORD +60 -59
  57. mlrun/datastore/helpers.py +0 -18
  58. {mlrun-1.6.2rc6.dist-info → mlrun-1.6.3.dist-info}/LICENSE +0 -0
  59. {mlrun-1.6.2rc6.dist-info → mlrun-1.6.3.dist-info}/WHEEL +0 -0
  60. {mlrun-1.6.2rc6.dist-info → mlrun-1.6.3.dist-info}/entry_points.txt +0 -0
  61. {mlrun-1.6.2rc6.dist-info → mlrun-1.6.3.dist-info}/top_level.txt +0 -0
mlrun/utils/logger.py CHANGED
@@ -14,6 +14,7 @@
14
14
 
15
15
  import json
16
16
  import logging
17
+ import typing
17
18
  from enum import Enum
18
19
  from sys import stdout
19
20
  from traceback import format_exception
@@ -186,11 +187,15 @@ class FormatterKinds(Enum):
186
187
  JSON = "json"
187
188
 
188
189
 
189
- def _create_formatter_instance(formatter_kind: FormatterKinds) -> logging.Formatter:
190
+ def resolve_formatter_by_kind(
191
+ formatter_kind: FormatterKinds,
192
+ ) -> typing.Type[
193
+ typing.Union[HumanReadableFormatter, HumanReadableExtendedFormatter, JSONFormatter]
194
+ ]:
190
195
  return {
191
- FormatterKinds.HUMAN: HumanReadableFormatter(),
192
- FormatterKinds.HUMAN_EXTENDED: HumanReadableExtendedFormatter(),
193
- FormatterKinds.JSON: JSONFormatter(),
196
+ FormatterKinds.HUMAN: HumanReadableFormatter,
197
+ FormatterKinds.HUMAN_EXTENDED: HumanReadableExtendedFormatter,
198
+ FormatterKinds.JSON: JSONFormatter,
194
199
  }[formatter_kind]
195
200
 
196
201
 
@@ -208,11 +213,11 @@ def create_logger(
208
213
  logger_instance = Logger(level, name=name, propagate=False)
209
214
 
210
215
  # resolve formatter
211
- formatter_instance = _create_formatter_instance(
216
+ formatter_instance = resolve_formatter_by_kind(
212
217
  FormatterKinds(formatter_kind.lower())
213
218
  )
214
219
 
215
220
  # set handler
216
- logger_instance.set_handler("default", stream or stdout, formatter_instance)
221
+ logger_instance.set_handler("default", stream or stdout, formatter_instance())
217
222
 
218
223
  return logger_instance
@@ -307,9 +307,9 @@ class NotificationPusher(_NotificationPusherBase):
307
307
  traceback=traceback.format_exc(),
308
308
  )
309
309
  update_notification_status_kwargs["reason"] = f"Exception error: {str(exc)}"
310
- update_notification_status_kwargs[
311
- "status"
312
- ] = mlrun.common.schemas.NotificationStatus.ERROR
310
+ update_notification_status_kwargs["status"] = (
311
+ mlrun.common.schemas.NotificationStatus.ERROR
312
+ )
313
313
  raise exc
314
314
  finally:
315
315
  self._update_notification_status(
@@ -356,9 +356,9 @@ class NotificationPusher(_NotificationPusherBase):
356
356
  traceback=traceback.format_exc(),
357
357
  )
358
358
  update_notification_status_kwargs["reason"] = f"Exception error: {str(exc)}"
359
- update_notification_status_kwargs[
360
- "status"
361
- ] = mlrun.common.schemas.NotificationStatus.ERROR
359
+ update_notification_status_kwargs["status"] = (
360
+ mlrun.common.schemas.NotificationStatus.ERROR
361
+ )
362
362
  raise exc
363
363
  finally:
364
364
  await mlrun.utils.helpers.run_in_threadpool(
@@ -1,4 +1,4 @@
1
1
  {
2
- "git_commit": "80404fadf38217c0390793770297cb046629b439",
3
- "version": "1.6.2-rc6"
2
+ "git_commit": "43c50e9853e34113270e42ef4b4ccc1b0cdb28cb",
3
+ "version": "1.6.3"
4
4
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mlrun
3
- Version: 1.6.2rc6
3
+ Version: 1.6.3
4
4
  Summary: Tracking and config of machine learning runs
5
5
  Home-page: https://github.com/mlrun/mlrun
6
6
  Author: Yaron Haviv
@@ -26,7 +26,7 @@ Requires-Dist: GitPython >=3.1.41,~=3.1
26
26
  Requires-Dist: aiohttp ~=3.9
27
27
  Requires-Dist: aiohttp-retry ~=2.8
28
28
  Requires-Dist: click ~=8.1
29
- Requires-Dist: kfp ~=1.8
29
+ Requires-Dist: kfp >=1.8.14,~=1.8
30
30
  Requires-Dist: nest-asyncio ~=1.0
31
31
  Requires-Dist: ipython ~=8.10
32
32
  Requires-Dist: nuclio-jupyter ~=0.9.15
@@ -36,18 +36,18 @@ Requires-Dist: pyarrow <15,>=10.0
36
36
  Requires-Dist: pyyaml ~=5.1
37
37
  Requires-Dist: requests ~=2.31
38
38
  Requires-Dist: tabulate ~=0.8.6
39
- Requires-Dist: v3io ~=0.5.21
40
- Requires-Dist: pydantic >=1.10.8,~=1.10
39
+ Requires-Dist: v3io ~=0.6.4
40
+ Requires-Dist: pydantic <1.10.15,>=1.10.8
41
41
  Requires-Dist: mergedeep ~=1.3
42
42
  Requires-Dist: v3io-frames ~=0.10.12
43
43
  Requires-Dist: semver ~=3.0
44
44
  Requires-Dist: dependency-injector ~=4.41
45
45
  Requires-Dist: fsspec ==2023.9.2
46
46
  Requires-Dist: v3iofs ~=0.1.17
47
- Requires-Dist: storey ~=1.6.18
47
+ Requires-Dist: storey ~=1.6.20
48
48
  Requires-Dist: inflection ~=0.5.0
49
49
  Requires-Dist: python-dotenv ~=0.17.0
50
- Requires-Dist: setuptools ~=68.2
50
+ Requires-Dist: setuptools ~=69.1
51
51
  Requires-Dist: deprecated ~=1.2
52
52
  Requires-Dist: jinja2 >=3.1.3,~=3.1
53
53
  Requires-Dist: anyio ~=3.7
@@ -80,16 +80,16 @@ Requires-Dist: sqlalchemy ~=1.4 ; extra == 'all'
80
80
  Provides-Extra: api
81
81
  Requires-Dist: uvicorn ~=0.27.1 ; extra == 'api'
82
82
  Requires-Dist: dask-kubernetes ~=0.11.0 ; extra == 'api'
83
- Requires-Dist: apscheduler !=3.10.2,~=3.6 ; extra == 'api'
84
- Requires-Dist: sqlite3-to-mysql ~=1.4 ; extra == 'api'
85
- Requires-Dist: objgraph ~=3.5 ; extra == 'api'
86
- Requires-Dist: igz-mgmt ~=0.0.10 ; extra == 'api'
87
- Requires-Dist: humanfriendly ~=9.2 ; extra == 'api'
88
- Requires-Dist: fastapi ~=0.103.2 ; extra == 'api'
83
+ Requires-Dist: apscheduler <4,>=3.10.3 ; extra == 'api'
84
+ Requires-Dist: objgraph ~=3.6 ; extra == 'api'
85
+ Requires-Dist: igz-mgmt ==0.1.0 ; extra == 'api'
86
+ Requires-Dist: humanfriendly ~=10.0 ; extra == 'api'
87
+ Requires-Dist: fastapi ~=0.110.0 ; extra == 'api'
89
88
  Requires-Dist: sqlalchemy ~=1.4 ; extra == 'api'
90
89
  Requires-Dist: pymysql ~=1.0 ; extra == 'api'
91
90
  Requires-Dist: alembic ~=1.9 ; extra == 'api'
92
91
  Requires-Dist: timelength ~=1.1 ; extra == 'api'
92
+ Requires-Dist: memray ~=1.12 ; extra == 'api'
93
93
  Provides-Extra: azure-blob-storage
94
94
  Requires-Dist: msrest ~=0.6.21 ; extra == 'azure-blob-storage'
95
95
  Requires-Dist: azure-core ~=1.24 ; extra == 'azure-blob-storage'
@@ -127,7 +127,7 @@ Provides-Extra: complete-api
127
127
  Requires-Dist: adlfs ==2023.9.0 ; extra == 'complete-api'
128
128
  Requires-Dist: aiobotocore <2.8,>=2.5.0 ; extra == 'complete-api'
129
129
  Requires-Dist: alembic ~=1.9 ; extra == 'complete-api'
130
- Requires-Dist: apscheduler !=3.10.2,~=3.6 ; extra == 'complete-api'
130
+ Requires-Dist: apscheduler <4,>=3.10.3 ; extra == 'complete-api'
131
131
  Requires-Dist: avro ~=1.11 ; extra == 'complete-api'
132
132
  Requires-Dist: azure-core ~=1.24 ; extra == 'complete-api'
133
133
  Requires-Dist: azure-identity ~=1.5 ; extra == 'complete-api'
@@ -137,23 +137,23 @@ Requires-Dist: dask-kubernetes ~=0.11.0 ; extra == 'complete-api'
137
137
  Requires-Dist: dask ~=2023.9.0 ; extra == 'complete-api'
138
138
  Requires-Dist: databricks-sdk ~=0.13.0 ; extra == 'complete-api'
139
139
  Requires-Dist: distributed ~=2023.9.0 ; extra == 'complete-api'
140
- Requires-Dist: fastapi ~=0.103.2 ; extra == 'complete-api'
140
+ Requires-Dist: fastapi ~=0.110.0 ; extra == 'complete-api'
141
141
  Requires-Dist: gcsfs ==2023.9.2 ; extra == 'complete-api'
142
142
  Requires-Dist: google-cloud-bigquery[bqstorage,pandas] ==3.14.1 ; extra == 'complete-api'
143
143
  Requires-Dist: graphviz ~=0.20.0 ; extra == 'complete-api'
144
- Requires-Dist: humanfriendly ~=9.2 ; extra == 'complete-api'
145
- Requires-Dist: igz-mgmt ~=0.0.10 ; extra == 'complete-api'
144
+ Requires-Dist: humanfriendly ~=10.0 ; extra == 'complete-api'
145
+ Requires-Dist: igz-mgmt ==0.1.0 ; extra == 'complete-api'
146
146
  Requires-Dist: kafka-python ~=2.0 ; extra == 'complete-api'
147
+ Requires-Dist: memray ~=1.12 ; extra == 'complete-api'
147
148
  Requires-Dist: mlflow ~=2.8 ; extra == 'complete-api'
148
149
  Requires-Dist: msrest ~=0.6.21 ; extra == 'complete-api'
149
- Requires-Dist: objgraph ~=3.5 ; extra == 'complete-api'
150
+ Requires-Dist: objgraph ~=3.6 ; extra == 'complete-api'
150
151
  Requires-Dist: plotly <5.12.0,~=5.4 ; extra == 'complete-api'
151
152
  Requires-Dist: pymysql ~=1.0 ; extra == 'complete-api'
152
153
  Requires-Dist: pyopenssl >=23 ; extra == 'complete-api'
153
154
  Requires-Dist: redis ~=4.3 ; extra == 'complete-api'
154
155
  Requires-Dist: s3fs ==2023.9.2 ; extra == 'complete-api'
155
156
  Requires-Dist: sqlalchemy ~=1.4 ; extra == 'complete-api'
156
- Requires-Dist: sqlite3-to-mysql ~=1.4 ; extra == 'complete-api'
157
157
  Requires-Dist: timelength ~=1.1 ; extra == 'complete-api'
158
158
  Requires-Dist: uvicorn ~=0.27.1 ; extra == 'complete-api'
159
159
  Provides-Extra: dask
@@ -1,22 +1,22 @@
1
1
  mlrun/__init__.py,sha256=o9dHUfVFADfsi6GnOPLr2OkfkHdPvOnA7rkoECen0-I,7248
2
2
  mlrun/__main__.py,sha256=zd-o0SkFH69HhIWKhqXnNURsrtpIcOJYYq50JfAxW7k,49234
3
- mlrun/config.py,sha256=Pbpwpf5bKdYmm5B6bZ-gYapkEXSHmJ5WFKjEQNzzv1s,61902
3
+ mlrun/config.py,sha256=4scerZD_BdeDIOXJw9xrXCmpSBHxEvuc7R9QZpAb5EA,63789
4
4
  mlrun/errors.py,sha256=YdUtkN3qJ6yrseNygmKxmSWOfQ_RdKBhRxwwyMlTQCM,7106
5
- mlrun/execution.py,sha256=Cro3Toh4oVHMFneTWHPFqoCmNm2rylrDdQWdqfswb1g,40878
5
+ mlrun/execution.py,sha256=tgp6PcujZvGhDDVzPNs32YH_JNzaxfSd25yeuLwmjzg,40880
6
6
  mlrun/features.py,sha256=UQQ2uh5Xh9XsMGiYBqh3bKgDhOHANjv1gQgWyId9qQE,15624
7
- mlrun/k8s_utils.py,sha256=-ICSVOB33ba7nnIrJuKIVpdA3vS21Lvn3i2aXzLu5Rw,6872
8
- mlrun/kfpops.py,sha256=C55qXqIYnjmyIkduYVKyN8dLxq9la2urcUsSsE-qSdc,30137
9
- mlrun/lists.py,sha256=JMc4Ch4wQxD_B9zbrE3JZwXD8cCYWLqHb1FQXWoaGzM,8310
10
- mlrun/model.py,sha256=CPfkjy303EAmathAUiewSksytDgqrnQykv4CKFjU78o,63655
11
- mlrun/render.py,sha256=_Jrtqw54AkvUZDWK5ORGUQWnGewREh_lQnUQWuCkTV4,13016
12
- mlrun/run.py,sha256=dxqkU82KuoCLKt54jvWrVcLLoWxhKgraxV0nCborOK4,42415
7
+ mlrun/k8s_utils.py,sha256=-6egUEZNPhzOxJ2gFytubvQvCYU9nPPg5Yn0zsTK-NQ,7065
8
+ mlrun/kfpops.py,sha256=VgvS_4DappCPHzV7057SbraBTbF2mn7zZ7iPAaks3KU,30493
9
+ mlrun/lists.py,sha256=sEEfl_mw_oVUD1dfkvQZIkJ8q7LJKJPDrb5B_Dg85nY,8388
10
+ mlrun/model.py,sha256=EbSxpwtNFkqodTwM_StcmDG5MFSG50ZuDMhqzIyzLmM,64896
11
+ mlrun/render.py,sha256=pfAky9fTHRbINs93_Km_hEdVxmra9RA8BwqMepPbiuE,13451
12
+ mlrun/run.py,sha256=gyxYJqVCBsZxp0_HWAG5_lwi2_KPqcxy6un5ZLw_-2Q,42456
13
13
  mlrun/secrets.py,sha256=m7jM8fdjGLR-j9Vx-08eNmtOmlxFx9mTUBqBWtMSVQo,7782
14
14
  mlrun/api/schemas/__init__.py,sha256=ggWbnqhp7By5HNYYfRsZ4D4EdVvjLuz4qfNfR3Kq6M4,14219
15
15
  mlrun/artifacts/__init__.py,sha256=LxEWcMYPawJYvNOl6H2_UvrxdLTNYfKeZcMEKFZnGgA,1187
16
16
  mlrun/artifacts/base.py,sha256=rwewC3JqAQqUnu5WTfd7BdJHcG_LtsOs_c6Tj3OATFo,34749
17
17
  mlrun/artifacts/dataset.py,sha256=ThiZVWcXiRO-AuLfNbjB-JyoBlD3ukwiIO3Dge9SODM,22367
18
18
  mlrun/artifacts/manager.py,sha256=f6AOD5-zbzrh5krTkiOgbouSntv0Zvm5w936J79BpYE,14311
19
- mlrun/artifacts/model.py,sha256=afncOUhAjnVPPd80ZgMh3LKpqSRqxOg498PKPm4h0Mw,24982
19
+ mlrun/artifacts/model.py,sha256=ipLBAkg0DZHjucYO7SV_u0jFZu4Cf1A1a8OMGMx_lDQ,25249
20
20
  mlrun/artifacts/plots.py,sha256=dda9_LL6_szzXbP_vpuN-pSL0Dc1q3JbvUlUBrlQ1dw,15717
21
21
  mlrun/common/__init__.py,sha256=xY3wHC4TEJgez7qtnn1pQvHosi8-5UJOCtyGBS7FcGE,571
22
22
  mlrun/common/constants.py,sha256=NpBgZV-ReSvPeMKPFp3DKzNWgiVebjGZrZ19pG_ZfRE,660
@@ -24,15 +24,16 @@ mlrun/common/helpers.py,sha256=FqlMfRiZeGS6HZCOHaAJae2wDL1aRoijFBS5aZoPiIM,1108
24
24
  mlrun/common/secrets.py,sha256=vc8WV82EZsCB5ENjUkObFOzZP59aZ1w8F82PTnqwBnc,5181
25
25
  mlrun/common/types.py,sha256=V_jCEFCJZcycFVsPzEToCRQja5bqW0zRAAVaGN_QYxQ,790
26
26
  mlrun/common/db/__init__.py,sha256=xY3wHC4TEJgez7qtnn1pQvHosi8-5UJOCtyGBS7FcGE,571
27
- mlrun/common/db/sql_session.py,sha256=iWR8DWyziN2DSDiBgc5Wj3O7iVWDwfd0nJklAKwjoRM,2542
27
+ mlrun/common/db/sql_session.py,sha256=yS5KnE3FbOr3samz9tegSga4nd0JSv6azN0RIN9DGjk,2687
28
28
  mlrun/common/model_monitoring/__init__.py,sha256=x0EMEvxVjHsm858J1t6IEA9dtKTdFpJ9sKhss10ld8A,721
29
- mlrun/common/model_monitoring/helpers.py,sha256=S3VT3k2jonTNwr3xQ8Axt8dy3EwNV9z8RHEGw4d59Bc,4140
30
- mlrun/common/schemas/__init__.py,sha256=rVaJGgeh0eX3u-i6fNUTlM94Ua6EvaDfbsnfVZZOD8c,4685
29
+ mlrun/common/model_monitoring/helpers.py,sha256=War8806vyMwdrQs2JkmPQ1DTPPUZ0DJ1B3jABiyRUe8,4249
30
+ mlrun/common/schemas/__init__.py,sha256=-L8-j6zTevHDglT83i0wyMTxTgeKFMmJalkkLoy51Zg,4742
31
31
  mlrun/common/schemas/artifact.py,sha256=DaJYX54tq74nu2nBiAzRmGBkBYgtZiT-IKjQI11i8F4,2824
32
32
  mlrun/common/schemas/auth.py,sha256=7fNsGhDi1DV4WGuTNtEKXfq56SeCHjpRTed8YUj8m20,5978
33
33
  mlrun/common/schemas/background_task.py,sha256=TBFiqkEY8ffKcgIZ1eHtqWcqdD0dFr1YYWl-nOff2Jc,1714
34
34
  mlrun/common/schemas/client_spec.py,sha256=Vf8wgtQJUaNeaoIQ30ltR7bhXp1angxcJGgZKbzlci4,2809
35
35
  mlrun/common/schemas/clusterization_spec.py,sha256=aeaFJZms7r7h2HDv6ML_GDAT6gboW-PxBbc3GKPalGk,888
36
+ mlrun/common/schemas/common.py,sha256=00upzVLPN7O511Q87yt-fvRcDQFbXra4j0_lqMGg6rs,1557
36
37
  mlrun/common/schemas/constants.py,sha256=UnnhyLeF-SSjy8KaV5a-TBw4Ws675gueYGiP1fr5NfU,6476
37
38
  mlrun/common/schemas/datastore_profile.py,sha256=hJ8q54A8VZKsnOvSIjcllj4MZ1bBhb_EmBgsqpwSF_Y,750
38
39
  mlrun/common/schemas/events.py,sha256=ROHJLo_fqYjc96pek7yhAUPpPRIuAR76lwxvNz8LIr8,1026
@@ -46,7 +47,7 @@ mlrun/common/schemas/memory_reports.py,sha256=O5ajjqSimTPl9nzlZg2ewRbddDXWgqUr-z
46
47
  mlrun/common/schemas/notification.py,sha256=nDKeLvJEl3hqekrLBBbbZ6v4WWe057Pyqws-1r6nBrU,1796
47
48
  mlrun/common/schemas/object.py,sha256=W735Gmu5D_x6LxNp1qsHMkhldjY5b_1H9QvAiiITRRc,1986
48
49
  mlrun/common/schemas/pipeline.py,sha256=tvpSHmXDR20uxWIHQ5KXf1zGKi1jaT5pDUIS26zJhLI,1184
49
- mlrun/common/schemas/project.py,sha256=mTJPTRaf1cUI_obZY6O_tIrBC6u4pE6RJhIrwNE7nuU,4224
50
+ mlrun/common/schemas/project.py,sha256=E4kIlKdPNveYoZ87Cfv3QCsn0JdIgbZv26OrgNVKJNI,4305
50
51
  mlrun/common/schemas/regex.py,sha256=8_vbDeAE0SODJDj7yUFg1FbaB9CNydYQTJ29JxE74Kc,776
51
52
  mlrun/common/schemas/runs.py,sha256=H9QhaN83cFUN42eE9TLgi1gs6Xdq11oQSZ96ESM94mI,745
52
53
  mlrun/common/schemas/runtime_resource.py,sha256=GyeqRwbBoLMq-0zWCkocvKl2nz9a62dAfguaPdqUzYw,1636
@@ -54,24 +55,23 @@ mlrun/common/schemas/schedule.py,sha256=dFaPWY3CtuW1KKGcs-br1Gsm5vPjiTgcBZGfcbAA
54
55
  mlrun/common/schemas/secret.py,sha256=51tCN1F8DFTq4y_XdHIMDy3I1TnMEBX8kO8BHKavYF4,1484
55
56
  mlrun/common/schemas/tag.py,sha256=2sm2Z5qM0jyakHuT_lxb-EQ2M5Unpodz4lj6MNkDEzo,905
56
57
  mlrun/common/schemas/workflow.py,sha256=6ScEXBHxmnIve9vrFpCHWRHBeR_iSCfdKi6VPsMkLQQ,1837
57
- mlrun/common/schemas/model_monitoring/__init__.py,sha256=aBpxCS3CqAuhzSIdlqLEfRBneOW0FtID701C00J1L0Q,1415
58
- mlrun/common/schemas/model_monitoring/constants.py,sha256=jxdbh7tyWD82ztLKGU_mlJn5auF_as9-c534UpqbzwQ,7738
58
+ mlrun/common/schemas/model_monitoring/__init__.py,sha256=bU-3prg1s378sy2bec5wgXUtZd6RarlSDR0XpUjzoDs,1439
59
+ mlrun/common/schemas/model_monitoring/constants.py,sha256=IXc5pEf5pczIQSYTxmZxaFRWD5sUtoWSVODbVrbL5pc,8113
59
60
  mlrun/common/schemas/model_monitoring/grafana.py,sha256=W6TcNc7mqPj040lfQrEadEQ37csdxLDgdU3QRLlELMQ,1444
60
61
  mlrun/common/schemas/model_monitoring/model_endpoints.py,sha256=l4vPygfamwB4bj-2UliWqcU0uluTtOpZubWGLywgoIE,12054
61
62
  mlrun/data_types/__init__.py,sha256=EkxfkFoHb91zz3Aymq-KZfCHlPMzEc3bBqgzPUwmHWY,1087
62
- mlrun/data_types/data_types.py,sha256=qgRIdlSl9X-rAnwOW-F0hwPbDKOZI05JlSzV1O8ReaU,4647
63
+ mlrun/data_types/data_types.py,sha256=hWiL5TPOj9EK7_nd1yttLBUhXTmBYLDZzmG-hWzzhHE,4751
63
64
  mlrun/data_types/infer.py,sha256=z2EbSpR6xWEE5-HRUtDZkapHQld3xMbzXtTX83K-690,6134
64
65
  mlrun/data_types/spark.py,sha256=qKQ2TIAPQWDgmIOmpyV5_uuyUX3AnXWSq6GPpVjVIek,9457
65
66
  mlrun/data_types/to_pandas.py,sha256=uq7y1svEzaDaPg92YP3p3k3BDI48XWZ2bDdH6aJSvso,9991
66
67
  mlrun/datastore/__init__.py,sha256=bsRzu39UOocQAAl_nOKCbhxrZhWUEXrAc8WV3zs0VyI,4118
67
- mlrun/datastore/azure_blob.py,sha256=zYHUN5WDvWje4f06GzLDlwJ__ePnjsckgSYbYJt8NF4,8728
68
- mlrun/datastore/base.py,sha256=dNpBct2pcLtD2cqSCNCY3tnN-9qyyVeHoulzlcQiQlE,25614
68
+ mlrun/datastore/azure_blob.py,sha256=pnl7XITAxz7MMp7owgKWIM0nTMUlMCMvlqZW2fpKkus,8734
69
+ mlrun/datastore/base.py,sha256=ldisbMJ-Cy6EbayrXwcakRjx1ETpA4TIYlLTFx59arI,24996
69
70
  mlrun/datastore/datastore.py,sha256=xnK-zKrDwTkiZQgzLpcz8d629avpjYtU9UN3WZpdjww,8810
70
71
  mlrun/datastore/datastore_profile.py,sha256=vBpkAcnGiYUO09ihg_jPgPdpo2GVBrOOSHYWWttqBag,14899
71
72
  mlrun/datastore/dbfs_store.py,sha256=5IkxnFQXkW0fdx-ca5jjQnUdTsTfNdJzMvV31ZpDNrM,6634
72
73
  mlrun/datastore/filestore.py,sha256=cI_YvQqY5J3kEvdyPelfWofxKfBitoNHJvABBkpCGRc,3788
73
- mlrun/datastore/google_cloud_storage.py,sha256=aLquHqEULqYv4xnR4ELW_82fsVLWeecJiUMxsCVXfvE,6034
74
- mlrun/datastore/helpers.py,sha256=-bKveE9rteLd0hJd6OSMuMbfz09W_OXyu1G5O2ihZjs,622
74
+ mlrun/datastore/google_cloud_storage.py,sha256=zQlrZnYOFfwQNBw5J2ufoyCDMlbZKA9c9no7NvnylZ4,6038
75
75
  mlrun/datastore/inmem.py,sha256=6PAltUk7uyYlDgnsaJPOkg_P98iku1ys2e2wpAmPRkc,2779
76
76
  mlrun/datastore/redis.py,sha256=DDA1FsixfnzNwjVUU9MgVCKFo3X3tYvPDcREKyy9zS4,5517
77
77
  mlrun/datastore/s3.py,sha256=BCyVDznEsmU1M1HtRROdLo4HkLOy4fjEmgpNrTpsoW0,8030
@@ -81,13 +81,14 @@ mlrun/datastore/spark_utils.py,sha256=54rF64aC19ojUFCcwzsoBLQ-5Nmzs_KTQl9iEkK2hY
81
81
  mlrun/datastore/store_resources.py,sha256=dfMdFy2urilECtlwLJr5CSG12MA645b-NPYDnbr5s1A,6839
82
82
  mlrun/datastore/targets.py,sha256=EaeNzwHQHkMo7WRezgMeWWjTL1NmYwMx8F0RG1swb48,70159
83
83
  mlrun/datastore/utils.py,sha256=x4pm0gvpcNWSjxo99MOmwcd9I5HCwuzCh6IA4uiXlZs,7077
84
- mlrun/datastore/v3io.py,sha256=PJVPMUaIDopGKrmdp3vA7fRkoEoTnn-LNDduhDMZf5o,8303
84
+ mlrun/datastore/v3io.py,sha256=3UI22DQ1A4yQEpbMWAbopIzjqlL2k5bhmhg0Cjs3tEk,8039
85
85
  mlrun/datastore/wasbfs/__init__.py,sha256=s5Ul-0kAhYqFjKDR2X0O2vDGDbLQQduElb32Ev56Te4,1343
86
86
  mlrun/datastore/wasbfs/fs.py,sha256=MnSj7Q4OKA2L55ihCmUnj2t3GA3B77oLMdAw-yxvN9w,6151
87
87
  mlrun/db/__init__.py,sha256=WqJ4x8lqJ7ZoKbhEyFqkYADd9P6E3citckx9e9ZLcIU,1163
88
- mlrun/db/base.py,sha256=vswrn0L8Uw9ab76E7R2JthpGm4GQTgGjXOPcm922Ojw,17646
88
+ mlrun/db/auth_utils.py,sha256=hpg8D2r82oN0BWabuWN04BTNZ7jYMAF242YSUpK7LFM,5211
89
+ mlrun/db/base.py,sha256=Rg2TrcwvzN28vmoyhq8sSxNjiBS1EA6BAHr24fhcmNU,18221
89
90
  mlrun/db/factory.py,sha256=wTEKHEmdDkylM6IkTYvmEYVF8gn2HdjLoLoWICCyatI,2403
90
- mlrun/db/httpdb.py,sha256=Db3975lpID_zg8NAHebsKWQL51TCy_ux0NuuLaUVGj4,155910
91
+ mlrun/db/httpdb.py,sha256=FHrAwU7c4AQPCoXDIdkEkFfr8ViUS7XLJYIGrXrv_rs,157292
91
92
  mlrun/db/nopdb.py,sha256=rpZy5cpW-8--4OvMzlVoKNYjbhWJ3cn_z-JFwfuPqnI,14520
92
93
  mlrun/feature_store/__init__.py,sha256=n1F5m1svFW2chbE2dJdWzZJJiYS4E-y8PQsG9Q-F0lU,1584
93
94
  mlrun/feature_store/api.py,sha256=ehEwKlmE07pq1FUwh-ehA8Jm9LTkQofl5MQpEiMwVqM,49520
@@ -177,11 +178,11 @@ mlrun/frameworks/sklearn/model_handler.py,sha256=uV-SaCU15PW_S79syfrGxlpT9ZPjoKc
177
178
  mlrun/frameworks/sklearn/utils.py,sha256=Cg_pSxUMvKe8vBSLQor6JM8u9_ccKJg4Rk5EPDzTsVo,1209
178
179
  mlrun/frameworks/tf_keras/__init__.py,sha256=OQ5AQHJQAvz2hgansHV_B-yk3bJStWhqSoHlH4Qggqk,10459
179
180
  mlrun/frameworks/tf_keras/mlrun_interface.py,sha256=s4qUGdjEU8qpwPSj6H2Y5cB1b147vbbfpeF40q3iwKY,16671
180
- mlrun/frameworks/tf_keras/model_handler.py,sha256=OazNSoAVjvja6yrfx9VL8FYfQjEurJExNYqEHvVaqIQ,28247
181
+ mlrun/frameworks/tf_keras/model_handler.py,sha256=lgYRBGIMg156XZ4-mqfvJU8MZVLrPzBn5b62WJ0_DDc,28269
181
182
  mlrun/frameworks/tf_keras/model_server.py,sha256=JTOq5W1-g32VTAmAYTcJ_7nocReVI7pcU9PmFrTHD8A,9565
182
183
  mlrun/frameworks/tf_keras/utils.py,sha256=_QWk1YmdRybbUB54vsQFE2_WMuAK0g7eR1ozVbMk0Go,4284
183
184
  mlrun/frameworks/tf_keras/callbacks/__init__.py,sha256=ufH33gxHF4erP9RCiM8O2YaXLG6btLIU98gCS_MGFjI,844
184
- mlrun/frameworks/tf_keras/callbacks/logging_callback.py,sha256=dh6M9TiyeHnxHgBaU6-0tg0wa7E3plUJOm0yskanWK4,21886
185
+ mlrun/frameworks/tf_keras/callbacks/logging_callback.py,sha256=W2kKnLO_Unn-yiNCRFz2359b6DzggSrfVpsUFyVt07k,21888
185
186
  mlrun/frameworks/tf_keras/callbacks/mlrun_logging_callback.py,sha256=_9tF4KrSA2LKqE_uqwWMSHiRvNXPERwi8ABS96XqzNU,8791
186
187
  mlrun/frameworks/tf_keras/callbacks/tensorboard_logging_callback.py,sha256=xxba28TyWyD8-Tr2Wcu8PzA8ZRNWKM_TbFxS2uF6g1E,28730
187
188
  mlrun/frameworks/xgboost/__init__.py,sha256=A3NTOcvEBX1DsWpzK6J-cS6KgV2vKrenf-DHMCuU26Q,10288
@@ -195,23 +196,23 @@ mlrun/launcher/factory.py,sha256=tk6foFWox7f_xaeTgkWTx9ht_5fv0XzLDR8ucdb8oTE,234
195
196
  mlrun/launcher/local.py,sha256=H0tN2Ex_mGCUtCyCSdk57mdXtFvl9eWDTVDwldv2SXQ,10927
196
197
  mlrun/launcher/remote.py,sha256=lcVV9nH_SMDsdb2XNg01EVnzZSxAMqxFGZJWxaezXeU,7487
197
198
  mlrun/model_monitoring/__init__.py,sha256=XaYyvWsIXpjJQ2gCPj8tFvfSbRSEEqgDtNz4tCE5H4g,915
198
- mlrun/model_monitoring/api.py,sha256=hqw_eLHBfHqsw6SnFLQ0KPws0CDWMK5YZcHssKV-0kI,36815
199
+ mlrun/model_monitoring/api.py,sha256=uKT733p3vUsIgX-vdvhbroeN15bmdkZT5S3gsfwbNhk,36829
199
200
  mlrun/model_monitoring/application.py,sha256=ilslJNkq3CCivPqvsDOPmu0UClWXwH9IWr58gdxM9iU,12292
200
- mlrun/model_monitoring/batch.py,sha256=XTvZ1N_CLt59LCZMQdlIZvx4aNfooaCpjqEqvJrCFcU,43532
201
- mlrun/model_monitoring/controller.py,sha256=a401c4noddXD64bYKD-VI8ULev3jU0wvlJwG0VGQgks,27989
201
+ mlrun/model_monitoring/batch.py,sha256=l0FTSTt9frLgqeSS9jY8IU_0OwlvSevuZBWBgnBGH9A,43566
202
+ mlrun/model_monitoring/controller.py,sha256=Zh7XnGevQyJCU8uMT8MC6kD7cP55vUJaIjqbBvSyuvA,27608
202
203
  mlrun/model_monitoring/controller_handler.py,sha256=kG3sTjhKdsd9QcHkUlYcvw08yPsVQs9FyFdcKP9iaCo,977
203
204
  mlrun/model_monitoring/evidently_application.py,sha256=o9PsDsjyRfcbuC1X1gb2ww5nzWCsR_KheabtpxKZ5yY,4824
204
- mlrun/model_monitoring/features_drift_table.py,sha256=2r51W4xQ8gNq3PXt73IfsYu4l4mjwD-dLfRVAvKplTE,24209
205
- mlrun/model_monitoring/helpers.py,sha256=25aTNY3jINyzE6KZfcLaWD7bHRyUDzRF1li3xD59i4Q,6955
205
+ mlrun/model_monitoring/features_drift_table.py,sha256=OEDb_YZm3cyzszzC4SDqi7ufwOS8Kl5tDY1ZG4XIdZ4,24436
206
+ mlrun/model_monitoring/helpers.py,sha256=l8RCxOGBoScZSL4M-x4fIfpsfH7wjSQpqA_t-HVk0BI,7087
206
207
  mlrun/model_monitoring/model_endpoint.py,sha256=BBtxdY5ciormI_al4zshmIp0GN7hGhOCn-hLgpCXek0,3938
207
208
  mlrun/model_monitoring/prometheus.py,sha256=Z0UWmhQ-dpGGH31gCiGdfmhfj-RFRf1Tu1bYVe-k4jk,7605
208
- mlrun/model_monitoring/stream_processing.py,sha256=XdskWRBfA7a-gOO5IcmEjOZY0XlsegYeEeggDpy4hE8,48819
209
+ mlrun/model_monitoring/stream_processing.py,sha256=mUmF12byO8h5CPszEqrI0xFbOWiyCYr493r58EElWyQ,49150
209
210
  mlrun/model_monitoring/tracking_policy.py,sha256=Q6_p4y1ZcRHqs24c_1_4m9E1gYnaOm6pLCNGT22dWKM,5221
210
211
  mlrun/model_monitoring/writer.py,sha256=IWPzPenoAkfIxlvn0IdcdB19Nxqmg4mjbo3-RnYWw9A,8669
211
212
  mlrun/model_monitoring/stores/__init__.py,sha256=adU_G07jkD3JUT8__d0jAxs9nNomL7igKmd6uVM9L50,4525
212
- mlrun/model_monitoring/stores/kv_model_endpoint_store.py,sha256=0ihslHyvS4jERS9L0aKJaNJYH7u0vc8v9h7HDfrb9s4,22298
213
+ mlrun/model_monitoring/stores/kv_model_endpoint_store.py,sha256=R3Y8KmDHEFxJ2sHPUY2yMMC_mKOftFFIyQlIDduycv0,22338
213
214
  mlrun/model_monitoring/stores/model_endpoint_store.py,sha256=zqGVidq9Clym1l15ZltIZMCTdFuZ1QUwXxEAma9-4Hs,5695
214
- mlrun/model_monitoring/stores/sql_model_endpoint_store.py,sha256=UsCcOvi_lf1MsGA6VMUi9Hao0EHCXwhXGyD4E5aDDC4,16259
215
+ mlrun/model_monitoring/stores/sql_model_endpoint_store.py,sha256=3xsGAJfrpoS7nlkUk3xZrSkVmi_xhtq1D_PP5b3K1VY,16258
215
216
  mlrun/model_monitoring/stores/models/__init__.py,sha256=usKJhg-jD0YBmaE1advYiOn4QGUNkXK0jjJHXpA1L8U,1117
216
217
  mlrun/model_monitoring/stores/models/base.py,sha256=yC2_u8wTNoP9JHHewYQgWgarP400OgzlqYWpS-N1V4s,2801
217
218
  mlrun/model_monitoring/stores/models/mysql.py,sha256=9UYG5FuoVJQoAXP_xrCnbwmTVAm8ba6Bu54R9yg5BJs,1131
@@ -224,50 +225,50 @@ mlrun/package/packagers_manager.py,sha256=Ps34YUUPpYu0ZFFlWVrKCPk9YJzuMvMMiqxdau
224
225
  mlrun/package/packagers/__init__.py,sha256=rpxpuATMoxCMgHDaVamm0uwocy71e0CSXm85Q5X9tkU,769
225
226
  mlrun/package/packagers/default_packager.py,sha256=ecUaodnSfhKY3prigqALI61bj5WyyCM1xfhRNUHw5vc,26644
226
227
  mlrun/package/packagers/numpy_packagers.py,sha256=xLN7gaQG44J4NCnZ071F8uCO5U6bWSP5aALdL3KgqcQ,25621
227
- mlrun/package/packagers/pandas_packagers.py,sha256=0clr8klM24W1S2Q9H3mRt2r7gBR5M5Uqw96FmvHNP3E,35772
228
+ mlrun/package/packagers/pandas_packagers.py,sha256=YGVFVv6oR78M4GMhdLSnIyBXE5cDdqQAtmJYUxSDO88,35774
228
229
  mlrun/package/packagers/python_standard_library_packagers.py,sha256=BxVb4u3N_gAIky8SyW__OMqlZJb7WkQ-49Ag54nj7OQ,22335
229
230
  mlrun/package/utils/__init__.py,sha256=RXkhPH-zFLFFvOjMRJUVgVT33rusK5J4eTVLJ7bjN6k,1722
230
- mlrun/package/utils/_archiver.py,sha256=c5DU4WoMkLKwtUb_MbTiGqLudBZzc6nrelx-rFFgwDM,7757
231
+ mlrun/package/utils/_archiver.py,sha256=EK47v44yZOx2XeM4YGidgszsnrryz2J35f9M2A47bms,7951
231
232
  mlrun/package/utils/_formatter.py,sha256=EgdSMrJMgt-35myGuwfIOOKAe4jBi6QU7ssw1G0cacY,6393
232
233
  mlrun/package/utils/_pickler.py,sha256=cqqcSo2V0Ky086s-wLrJw0moD0XEU-DNOYefdRUHbPY,10354
233
234
  mlrun/package/utils/_supported_format.py,sha256=Svmfcqc4X7Kq-7pmyzGyI6PgDBaJ3zTT-au0beLZYS8,2375
234
235
  mlrun/package/utils/log_hint_utils.py,sha256=40B9WiMhpdL-FxunCvX1eQUk5EYTSU59o109RsAE4JQ,3710
235
236
  mlrun/package/utils/type_hint_utils.py,sha256=izsNrOrTnn_omK4BQPyBGWPtdTqFAdbS5cCJIDbHy0s,14857
236
237
  mlrun/platforms/__init__.py,sha256=ArWn_iZiEE6qz7hvY_1RqMkFnHGuKjP3k5xYKnfKA58,2352
237
- mlrun/platforms/iguazio.py,sha256=VEYWOWmF-VLzzhRaupY8MuL44Aj0LwZtiZVI7OkB5oE,21782
238
+ mlrun/platforms/iguazio.py,sha256=eOO8CbeSD0ooUKp-hbXbRfzWo5OTP7QaBo6zh0BXTKc,19379
238
239
  mlrun/platforms/other.py,sha256=z4pWqxXkVVuMLk-MbNb0Y_ZR5pmIsUm0R8vHnqpEnew,11852
239
240
  mlrun/projects/__init__.py,sha256=Lv5rfxyXJrw6WGOWJKhBz66M6t3_zsNMCfUD6waPwx4,1153
240
241
  mlrun/projects/operations.py,sha256=CJRGKEFhqKXlg0VOKhcfjOUVAmWHA9WwAFNiXtUqBhg,18550
241
- mlrun/projects/pipelines.py,sha256=9H5X_XyeoMxYe25HtXA4gdXcXW65auX8CoR36czy7sI,39577
242
- mlrun/projects/project.py,sha256=JuUvjznSS_ipl5bmBUOgTj3itrCyd_VyBHDkINLTYOA,151951
242
+ mlrun/projects/pipelines.py,sha256=FcKNsFtRUP1sOuSEp5Hk0_Qv4ZIKT9gWpatg6bSUCsI,41165
243
+ mlrun/projects/project.py,sha256=U98H5DF0q17qZcQB4VqqPoEETFgh_VvV51DTHXQhsbA,153280
243
244
  mlrun/runtimes/__init__.py,sha256=f5cdEg4raKNXQawJE-AuWzK6AqIsLfDODREeMnI2Ies,7062
244
- mlrun/runtimes/base.py,sha256=saYKzFVh3phfA3ARHinla-JR8MJq9SBnGnj9yU66XwU,35699
245
+ mlrun/runtimes/base.py,sha256=GTVqCR3sBqbyAlEBnDClThOf0EZUoAMzlEIFqjfoyLQ,36604
245
246
  mlrun/runtimes/constants.py,sha256=tB7nIlHob3yF0K9Uf9BUZ8yxjZNSzlzrd3K32K_vV7w,9550
246
247
  mlrun/runtimes/daskjob.py,sha256=B74NfaO8MPczrEYtOd9TsvKMAReGYc1Q691u629DwVI,19161
247
248
  mlrun/runtimes/funcdoc.py,sha256=FHwnLfFzoD6yGlsAJXAl_3VTtudgg4fTrsw_XqLOkC0,10508
248
- mlrun/runtimes/function.py,sha256=azDiU0QDKVNSMP2lBTpVpxf-JgFaolD1xpIjKspBiDw,47362
249
+ mlrun/runtimes/function.py,sha256=zYIAW2BaihRA5GJdXwx48vdnGfqOzEHSuE28KAhZkG4,47368
249
250
  mlrun/runtimes/function_reference.py,sha256=SJ0J-4ww0FQdijmdnUwGUKhMb-h5wtzqCPItTWKIL40,4911
250
251
  mlrun/runtimes/generators.py,sha256=v28HdNgxdHvj888G1dTnUeQZz-D9iTO0hoGeZbCdiuQ,7241
251
- mlrun/runtimes/kubejob.py,sha256=FYD_mv3XzgkcUStjn2jemV7FHJoHMvtzXzsYx_IK1kE,12387
252
- mlrun/runtimes/local.py,sha256=OAGkcShFlxYXSPnJSAWe0MFxwrVdAvW7VP_Y-bycXQs,21767
252
+ mlrun/runtimes/kubejob.py,sha256=UfSm7hiPLAtM0TfIE5nbBdSvrbsKWCZfvKP-SZhGyAk,12500
253
+ mlrun/runtimes/local.py,sha256=depdJkbyas7V7SMXB1T6Y_jPXxTLEB1TL5HYzDxlcXI,21791
253
254
  mlrun/runtimes/nuclio.py,sha256=hwk4dUaZefI-Qbb4s289vQpt1h0nAucxf6eINzVI-d8,2908
254
- mlrun/runtimes/pod.py,sha256=73gXYggAdOW4uqRHQPVZy4PnvlS9t3x7qrygxXW2vl0,56778
255
+ mlrun/runtimes/pod.py,sha256=loo1ysAbGslrHRhcRaFrw-ATNhuOBayEb0MCPi2EduY,56865
255
256
  mlrun/runtimes/remotesparkjob.py,sha256=W7WqlPbyqE6FjOZ2EFeOzlL1jLGWAWe61jOH0Umy3F4,7334
256
- mlrun/runtimes/serving.py,sha256=8hSHDrEqGlGpaHQr5JpDLfIA5ETVIddp2Zo2rkOi8mY,30329
257
+ mlrun/runtimes/serving.py,sha256=bV4Io-8K30IZs69pdZTSICR3HkUAAc1kSKuBJOx_jc0,30331
257
258
  mlrun/runtimes/utils.py,sha256=mNVu3ejmfEV3d7-fCAiSaF5K-Jyz2ladc5HzqhsY0Cs,16025
258
259
  mlrun/runtimes/databricks_job/__init__.py,sha256=kXGBqhLN0rlAx0kTXhozGzFsIdSqW0uTSKMmsLgq_is,569
259
260
  mlrun/runtimes/databricks_job/databricks_cancel_task.py,sha256=Qr1tbLuGI9BhNXytfB0IbKuLLC0V_mtqrdwgvdQX36I,2250
260
261
  mlrun/runtimes/databricks_job/databricks_runtime.py,sha256=aKEnzhYu6fDw5oZVte0oxS-oj0qXfKDpJ0rLSc8h7go,12761
261
262
  mlrun/runtimes/databricks_job/databricks_wrapper.py,sha256=-kzz5b3YBit6sGWojjREW_aHHRTx72zzTbxWGxvUplE,8679
262
263
  mlrun/runtimes/mpijob/__init__.py,sha256=jZf2uPBv6IB18Jj-dGSQ9NU5_xxni7XS4dnDZGwESFE,1583
263
- mlrun/runtimes/mpijob/abstract.py,sha256=KXPQKUPRz6Ttu7OMMfa9493p2OhueEFZtKkn-WgNebE,9178
264
+ mlrun/runtimes/mpijob/abstract.py,sha256=BjPq4x5JMmzhZ0wx6rYYEHYk_OQUDkb2r4OnWSR10YU,9182
264
265
  mlrun/runtimes/mpijob/v1.py,sha256=_RUlFo_3NcFf7x-QpUNVm8f7qNbRDIdUmPf_ijrv54U,3206
265
266
  mlrun/runtimes/mpijob/v1alpha1.py,sha256=w_971wwL03hW_ksgHJXdjTdjhxCs9KJ0zNqHSQ9whIM,1034
266
267
  mlrun/runtimes/sparkjob/__init__.py,sha256=_KPvk0qefeLtHO6lxQE_AMOGiMTG_OT48eRCE4Z2ldw,709
267
- mlrun/runtimes/sparkjob/spark3job.py,sha256=kvzZUd9oGCJZoVc0VP57qvs05JVFvnVPwGnwzyOBv-I,40292
268
+ mlrun/runtimes/sparkjob/spark3job.py,sha256=7dGrv3KWX7P4kmCCNHDYAPRAP0lZ9ndFbpuXuUR9JLI,40294
268
269
  mlrun/serving/__init__.py,sha256=_6HRAOuS2Ehjo3vwx5h1aI_-JppxEAsl4VfEERAbGFE,1078
269
270
  mlrun/serving/merger.py,sha256=PXLn3A21FiLteJHaDSLm5xKNT-80eTTjfHUJnBX1gKY,6116
270
- mlrun/serving/remote.py,sha256=XtCgEY-azxcP0VUG1TupZXQ_dttPkAKIAtszW-GfGpQ,18038
271
+ mlrun/serving/remote.py,sha256=od2kNSSS4AXVqJ8xCQUwylwrH6Ksk0OeGrbLCc9UztI,18114
271
272
  mlrun/serving/routers.py,sha256=VEeDhcQUeAeyREfaUN-ws7ZkxRw2wf9CKNWj-RUVemY,54988
272
273
  mlrun/serving/server.py,sha256=8iLMgRm-W61-_mTueQ0q2vt6blpnpl5-aTQa6dQ6zEA,21357
273
274
  mlrun/serving/serving_wrapper.py,sha256=R670-S6PX_d5ER6jiHtRvacuPyFzQH0mEf2K0sBIIOM,836
@@ -281,20 +282,20 @@ mlrun/track/tracker_manager.py,sha256=ZZzXtgQ-t4ah64XeAHNCbZ2VMOK_0E0RHv0pIowynj
281
282
  mlrun/track/trackers/__init__.py,sha256=9xft8YjJnblwqt8f05htmOt_eDzVBVQN07RfY_SYLCs,569
282
283
  mlrun/track/trackers/mlflow_tracker.py,sha256=zqqnECpxk_CHDKzEIdjwL9QUjXfueOw7xlZU7buguKY,23282
283
284
  mlrun/utils/__init__.py,sha256=g2pbT3loDw0GWELOC_rBq1NojSMCFnWrD-TYcDgAZiI,826
284
- mlrun/utils/async_http.py,sha256=KyWRfVn-bznXzLkHElsCFDuOjM4H63M-MO6b1OoErgU,11139
285
+ mlrun/utils/async_http.py,sha256=J3z4dzU1zk96k1sLDiGUIciBu3pdgivqh-GExFv-Fn8,11773
285
286
  mlrun/utils/azure_vault.py,sha256=IbPAZh-7mp0j4PcCy1L079LuEA6ENrkWhKZvkD4lcTY,3455
286
287
  mlrun/utils/clones.py,sha256=QG2ka65-ysfrOaoziudEjJqGgAxJvFKZOXkiD9WZGN4,7386
287
288
  mlrun/utils/condition_evaluator.py,sha256=KFZC-apM7RU5TIlRszAzMFc0NqPj3W1rgP0Zv17Ud-A,1918
288
289
  mlrun/utils/db.py,sha256=fp9p2_z7XW3DhsceJEObWKh-e5zKjPiCM55kSGNkZD8,1658
289
- mlrun/utils/helpers.py,sha256=v4sYB3uktju9yEUuA2z_2h-fwQAJ5_ADbY15Rql5ED0,53066
290
- mlrun/utils/http.py,sha256=_3pJPuDPz7M9pU4uRN-NPUmCyaANCQsAWAIrlVLZPiY,8733
291
- mlrun/utils/logger.py,sha256=3-oh9GMDCegObSo84rMYVb9W4nRBl5emZsVQTIZCM2I,7160
290
+ mlrun/utils/helpers.py,sha256=MRfvRQlxh9IITpYX68Sc8Lnej-SB5sWzIAy_7NhB44o,53692
291
+ mlrun/utils/http.py,sha256=BLkPfCmXwFrpPrPXzipmDr9IhY3q5css7hovncXYs9g,8735
292
+ mlrun/utils/logger.py,sha256=KZFzojroEshCu1kvtCsavJpdIY8vNA-QZxiBjehP9f4,7260
292
293
  mlrun/utils/regex.py,sha256=Nd7xnDHU9PEOsse6rFwLNVgU4AaYCyuwMmQ9qgx2-Vw,4581
293
294
  mlrun/utils/singleton.py,sha256=UUTQiBTXyzmjeYzsvTUsSxqyLJHOtesqif9GNfZO9rc,883
294
295
  mlrun/utils/v3io_clients.py,sha256=HL7Hma-pxaQBXMKcEnWqGLCpFgykwnszlabzeOHC9-E,1319
295
296
  mlrun/utils/vault.py,sha256=xUiKL17dCXjwQJ33YRzQj0oadUXATlFWPzKKYAESoQk,10447
296
297
  mlrun/utils/notifications/__init__.py,sha256=eUzQDBxSQmMZASRY-YAnYS6tL5801P0wEjycp3Dvoe0,990
297
- mlrun/utils/notifications/notification_pusher.py,sha256=t0YEY-nVcFnZVTVVPbtudqCh_xxNZrEWbUb2bQ7NSbQ,21806
298
+ mlrun/utils/notifications/notification_pusher.py,sha256=HFk47IogAzrWuAS_h9hnF5barRKhmkNap1kOqlKmHJY,21810
298
299
  mlrun/utils/notifications/notification/__init__.py,sha256=v2ULfsoGLlgBKS90ezou9wooBX7fo0NJgDsNdr51YEk,2113
299
300
  mlrun/utils/notifications/notification/base.py,sha256=t1sxExL2i2tJr3UuiQ9NTDONrpXcGBsrnxtAdemog2s,2293
300
301
  mlrun/utils/notifications/notification/console.py,sha256=leZrjwu3fFA1sCYsTxDXEGZ02SWTUk4GNzp7tT2uaCc,2532
@@ -303,11 +304,11 @@ mlrun/utils/notifications/notification/ipython.py,sha256=qrBmtECiRG6sZpCIVMg7RZc
303
304
  mlrun/utils/notifications/notification/slack.py,sha256=5JysqIpUYUZKXPSeeZtbl7qb2L9dj7p2NvnEBcEsZkA,3898
304
305
  mlrun/utils/notifications/notification/webhook.py,sha256=QHezCuN5uXkLcroAGxGrhGHaxAdUvkDLIsp27_Yrfd4,2390
305
306
  mlrun/utils/version/__init__.py,sha256=7kkrB7hEZ3cLXoWj1kPoDwo4MaswsI2JVOBpbKgPAgc,614
306
- mlrun/utils/version/version.json,sha256=jKe8BfJUv_zz9bQZmk1q0YYimyxUlid1hK2w1cBfiAY,88
307
+ mlrun/utils/version/version.json,sha256=rk9MvAyByMv8Nmgcq1QMFOkTa8NP0K-g4bSlN47hPAo,84
307
308
  mlrun/utils/version/version.py,sha256=HMwseV8xjTQ__6T6yUWojx_z6yUj7Io7O4NcCCH_sz8,1970
308
- mlrun-1.6.2rc6.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
309
- mlrun-1.6.2rc6.dist-info/METADATA,sha256=i6dk3cATkydTfF-5yZzs8T7VxNOJ8BwJzz3dqEGHFO0,18417
310
- mlrun-1.6.2rc6.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
311
- mlrun-1.6.2rc6.dist-info/entry_points.txt,sha256=1Owd16eAclD5pfRCoJpYC2ZJSyGNTtUr0nCELMioMmU,46
312
- mlrun-1.6.2rc6.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
313
- mlrun-1.6.2rc6.dist-info/RECORD,,
309
+ mlrun-1.6.3.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
310
+ mlrun-1.6.3.dist-info/METADATA,sha256=ca26nwhJusTY2TzpDN36YP2Bb0OqX8t5B1Zj-RPQM2A,18400
311
+ mlrun-1.6.3.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
312
+ mlrun-1.6.3.dist-info/entry_points.txt,sha256=1Owd16eAclD5pfRCoJpYC2ZJSyGNTtUr0nCELMioMmU,46
313
+ mlrun-1.6.3.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
314
+ mlrun-1.6.3.dist-info/RECORD,,
@@ -1,18 +0,0 @@
1
- # Copyright 2023 Iguazio
2
- #
3
- # Licensed under the Apache License, Version 2.0 (the "License");
4
- # you may not use this file except in compliance with the License.
5
- # You may obtain a copy of the License at
6
- #
7
- # http://www.apache.org/licenses/LICENSE-2.0
8
- #
9
- # Unless required by applicable law or agreed to in writing, software
10
- # distributed under the License is distributed on an "AS IS" BASIS,
11
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
- # See the License for the specific language governing permissions and
13
- # limitations under the License.
14
- #
15
-
16
-
17
- ONE_GB = 1024 * 1024 * 1024
18
- ONE_MB = 1024 * 1024