mlrun 1.5.0rc5__py3-none-any.whl → 1.5.0rc6__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.
- mlrun/api/api/endpoints/datastore_profile.py +35 -13
- mlrun/api/api/endpoints/frontend_spec.py +1 -10
- mlrun/api/api/endpoints/functions.py +1 -1
- mlrun/api/api/endpoints/hub.py +2 -6
- mlrun/api/crud/client_spec.py +3 -0
- mlrun/api/crud/datastore_profiles.py +2 -2
- mlrun/api/crud/hub.py +158 -142
- mlrun/api/crud/workflows.py +7 -3
- mlrun/api/db/sqldb/db.py +19 -21
- mlrun/api/db/sqldb/models/models_mysql.py +10 -1
- mlrun/api/db/sqldb/models/models_sqlite.py +11 -1
- mlrun/api/initial_data.py +3 -5
- mlrun/api/launcher.py +2 -1
- mlrun/api/migrations_mysql/versions/026c947c4487_altering_table_datastore_profiles_2.py +46 -0
- mlrun/api/migrations_sqlite/versions/026c947c4487_altering_table_datastore_profiles_2.py +46 -0
- mlrun/api/rundb/sqldb.py +15 -9
- mlrun/api/utils/db/sqlite_migration.py +1 -0
- mlrun/common/model_monitoring/helpers.py +3 -1
- mlrun/common/schemas/client_spec.py +1 -0
- mlrun/common/schemas/datastore_profile.py +1 -1
- mlrun/common/schemas/frontend_spec.py +1 -1
- mlrun/config.py +3 -2
- mlrun/datastore/datastore_profile.py +33 -21
- mlrun/datastore/dbfs_store.py +4 -3
- mlrun/datastore/redis.py +6 -0
- mlrun/datastore/targets.py +12 -1
- mlrun/db/base.py +1 -1
- mlrun/db/httpdb.py +10 -9
- mlrun/db/nopdb.py +1 -1
- mlrun/feature_store/api.py +4 -1
- mlrun/feature_store/feature_set.py +3 -1
- mlrun/feature_store/ingestion.py +1 -0
- mlrun/launcher/base.py +1 -1
- mlrun/model.py +7 -5
- mlrun/projects/pipelines.py +7 -6
- mlrun/projects/project.py +2 -2
- mlrun/run.py +1 -1
- mlrun/runtimes/__init__.py +1 -0
- mlrun/utils/helpers.py +1 -1
- mlrun/utils/notifications/notification/webhook.py +9 -1
- mlrun/utils/version/version.json +2 -2
- {mlrun-1.5.0rc5.dist-info → mlrun-1.5.0rc6.dist-info}/METADATA +6 -5
- {mlrun-1.5.0rc5.dist-info → mlrun-1.5.0rc6.dist-info}/RECORD +47 -45
- {mlrun-1.5.0rc5.dist-info → mlrun-1.5.0rc6.dist-info}/LICENSE +0 -0
- {mlrun-1.5.0rc5.dist-info → mlrun-1.5.0rc6.dist-info}/WHEEL +0 -0
- {mlrun-1.5.0rc5.dist-info → mlrun-1.5.0rc6.dist-info}/entry_points.txt +0 -0
- {mlrun-1.5.0rc5.dist-info → mlrun-1.5.0rc6.dist-info}/top_level.txt +0 -0
mlrun/db/nopdb.py
CHANGED
|
@@ -505,7 +505,7 @@ class NopDB(RunDBInterface):
|
|
|
505
505
|
def delete_datastore_profile(self, name: str, project: str):
|
|
506
506
|
pass
|
|
507
507
|
|
|
508
|
-
def
|
|
508
|
+
def list_datastore_profiles(
|
|
509
509
|
self, project: str
|
|
510
510
|
) -> List[mlrun.common.schemas.DatastoreProfile]:
|
|
511
511
|
pass
|
mlrun/feature_store/api.py
CHANGED
|
@@ -970,7 +970,10 @@ def _ingest_with_spark(
|
|
|
970
970
|
max_time = source.start_time
|
|
971
971
|
for target in featureset.status.targets:
|
|
972
972
|
featureset.status.update_last_written_for_target(
|
|
973
|
-
target.get_path().get_absolute_path(
|
|
973
|
+
target.get_path().get_absolute_path(
|
|
974
|
+
project_name=featureset.metadata.project
|
|
975
|
+
),
|
|
976
|
+
max_time,
|
|
974
977
|
)
|
|
975
978
|
|
|
976
979
|
_post_ingestion(mlrun_context, featureset, spark)
|
|
@@ -432,7 +432,9 @@ class FeatureSet(ModelObj):
|
|
|
432
432
|
target = get_online_target(self, name)
|
|
433
433
|
|
|
434
434
|
if target:
|
|
435
|
-
return target.get_path().get_absolute_path(
|
|
435
|
+
return target.get_path().get_absolute_path(
|
|
436
|
+
project_name=self.metadata.project
|
|
437
|
+
)
|
|
436
438
|
|
|
437
439
|
def set_targets(
|
|
438
440
|
self,
|
mlrun/feature_store/ingestion.py
CHANGED
mlrun/launcher/base.py
CHANGED
|
@@ -330,7 +330,7 @@ class BaseLauncher(abc.ABC):
|
|
|
330
330
|
|
|
331
331
|
if run.spec.output_path:
|
|
332
332
|
run.spec.output_path = run.spec.output_path.replace("{{run.uid}}", meta.uid)
|
|
333
|
-
run.spec.output_path = mlrun.utils.helpers.
|
|
333
|
+
run.spec.output_path = mlrun.utils.helpers.fill_project_path_template(
|
|
334
334
|
run.spec.output_path, run.metadata.project
|
|
335
335
|
)
|
|
336
336
|
|
mlrun/model.py
CHANGED
|
@@ -32,6 +32,7 @@ import mlrun.common.schemas.notification
|
|
|
32
32
|
from .utils import (
|
|
33
33
|
dict_to_json,
|
|
34
34
|
dict_to_yaml,
|
|
35
|
+
fill_project_path_template,
|
|
35
36
|
get_artifact_target,
|
|
36
37
|
is_legacy_artifact,
|
|
37
38
|
logger,
|
|
@@ -1580,11 +1581,12 @@ class TargetPathObject:
|
|
|
1580
1581
|
def get_templated_path(self):
|
|
1581
1582
|
return self.full_path_template
|
|
1582
1583
|
|
|
1583
|
-
def get_absolute_path(self):
|
|
1584
|
-
|
|
1585
|
-
|
|
1586
|
-
|
|
1587
|
-
|
|
1584
|
+
def get_absolute_path(self, project_name=None):
|
|
1585
|
+
path = fill_project_path_template(
|
|
1586
|
+
artifact_path=self.full_path_template,
|
|
1587
|
+
project=project_name,
|
|
1588
|
+
)
|
|
1589
|
+
return path.format(run_id=self.run_id) if self.run_id else path
|
|
1588
1590
|
|
|
1589
1591
|
|
|
1590
1592
|
class DataSource(ModelObj):
|
mlrun/projects/pipelines.py
CHANGED
|
@@ -375,7 +375,7 @@ def get_db_function(project, key) -> mlrun.runtimes.BaseRuntime:
|
|
|
375
375
|
|
|
376
376
|
|
|
377
377
|
def enrich_function_object(
|
|
378
|
-
project, function, decorator=None, copy_function=True
|
|
378
|
+
project, function, decorator=None, copy_function=True, try_auto_mount=True
|
|
379
379
|
) -> mlrun.runtimes.BaseRuntime:
|
|
380
380
|
if hasattr(function, "_enriched"):
|
|
381
381
|
return function
|
|
@@ -409,11 +409,12 @@ def enrich_function_object(
|
|
|
409
409
|
if decorator:
|
|
410
410
|
decorator(f)
|
|
411
411
|
|
|
412
|
-
if
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
412
|
+
if try_auto_mount:
|
|
413
|
+
if (
|
|
414
|
+
decorator and AutoMountType.is_auto_modifier(decorator)
|
|
415
|
+
) or project.spec.disable_auto_mount:
|
|
416
|
+
f.spec.disable_auto_mount = True
|
|
417
|
+
f.try_auto_mount_based_on_config()
|
|
417
418
|
|
|
418
419
|
return f
|
|
419
420
|
|
mlrun/projects/project.py
CHANGED
|
@@ -1356,7 +1356,7 @@ class MlrunProject(ModelObj):
|
|
|
1356
1356
|
def register_artifacts(self):
|
|
1357
1357
|
"""register the artifacts in the MLRun DB (under this project)"""
|
|
1358
1358
|
artifact_manager = self._get_artifact_manager()
|
|
1359
|
-
artifact_path = mlrun.utils.helpers.
|
|
1359
|
+
artifact_path = mlrun.utils.helpers.fill_project_path_template(
|
|
1360
1360
|
self.spec.artifact_path or mlrun.mlconf.artifact_path, self.metadata.name
|
|
1361
1361
|
)
|
|
1362
1362
|
# TODO: To correctly maintain the list of artifacts from an exported project,
|
|
@@ -1476,7 +1476,7 @@ class MlrunProject(ModelObj):
|
|
|
1476
1476
|
artifact_path = extend_artifact_path(
|
|
1477
1477
|
artifact_path, self.spec.artifact_path or mlrun.mlconf.artifact_path
|
|
1478
1478
|
)
|
|
1479
|
-
artifact_path = mlrun.utils.helpers.
|
|
1479
|
+
artifact_path = mlrun.utils.helpers.fill_project_path_template(
|
|
1480
1480
|
artifact_path, self.metadata.name
|
|
1481
1481
|
)
|
|
1482
1482
|
producer = ArtifactProducer(
|
mlrun/run.py
CHANGED
|
@@ -420,7 +420,7 @@ def get_or_create_ctx(
|
|
|
420
420
|
if not newspec:
|
|
421
421
|
newspec = {}
|
|
422
422
|
if upload_artifacts:
|
|
423
|
-
artifact_path = mlrun.utils.helpers.
|
|
423
|
+
artifact_path = mlrun.utils.helpers.fill_project_path_template(
|
|
424
424
|
mlconf.artifact_path, project or mlconf.default_project
|
|
425
425
|
)
|
|
426
426
|
update_in(newspec, ["spec", run_keys.output_path], artifact_path)
|
mlrun/runtimes/__init__.py
CHANGED
mlrun/utils/helpers.py
CHANGED
|
@@ -1269,7 +1269,7 @@ def calculate_dataframe_hash(dataframe: pandas.DataFrame):
|
|
|
1269
1269
|
return hashlib.sha1(pandas.util.hash_pandas_object(dataframe).values).hexdigest()
|
|
1270
1270
|
|
|
1271
1271
|
|
|
1272
|
-
def
|
|
1272
|
+
def fill_project_path_template(artifact_path, project):
|
|
1273
1273
|
# Supporting {{project}} is new, in certain setup configuration the default artifact path has the old
|
|
1274
1274
|
# {{run.project}} so we're supporting it too for backwards compatibility
|
|
1275
1275
|
if artifact_path and (
|
|
@@ -41,6 +41,7 @@ class WebhookNotification(NotificationBase):
|
|
|
41
41
|
method = self.params.get("method", "post").lower()
|
|
42
42
|
headers = self.params.get("headers", {})
|
|
43
43
|
override_body = self.params.get("override_body", None)
|
|
44
|
+
verify_ssl = self.params.get("verify_ssl", None)
|
|
44
45
|
|
|
45
46
|
request_body = {
|
|
46
47
|
"message": message,
|
|
@@ -54,8 +55,15 @@ class WebhookNotification(NotificationBase):
|
|
|
54
55
|
if override_body:
|
|
55
56
|
request_body = override_body
|
|
56
57
|
|
|
58
|
+
# Specify the `verify_ssl` parameter value only for HTTPS urls.
|
|
59
|
+
# The `ClientSession` allows using `ssl=None` for the default SSL check,
|
|
60
|
+
# and `ssl=False` to skip SSL certificate validation.
|
|
61
|
+
# We maintain the default as `None`, so if the user sets `verify_ssl=True`,
|
|
62
|
+
# we automatically handle it as `ssl=None` for their convenience.
|
|
63
|
+
verify_ssl = verify_ssl and None if url.startswith("https") else None
|
|
64
|
+
|
|
57
65
|
async with aiohttp.ClientSession() as session:
|
|
58
66
|
response = await getattr(session, method)(
|
|
59
|
-
url, headers=headers, json=request_body
|
|
67
|
+
url, headers=headers, json=request_body, ssl=verify_ssl
|
|
60
68
|
)
|
|
61
69
|
response.raise_for_status()
|
mlrun/utils/version/version.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: mlrun
|
|
3
|
-
Version: 1.5.
|
|
3
|
+
Version: 1.5.0rc6
|
|
4
4
|
Summary: Tracking and config of machine learning runs
|
|
5
5
|
Home-page: https://github.com/mlrun/mlrun
|
|
6
6
|
Author: Yaron Haviv
|
|
@@ -29,7 +29,7 @@ Requires-Dist: aiohttp-retry ~=2.8
|
|
|
29
29
|
Requires-Dist: click ~=8.0.0
|
|
30
30
|
Requires-Dist: kfp <1.8.14,~=1.8.0
|
|
31
31
|
Requires-Dist: nest-asyncio ~=1.0
|
|
32
|
-
Requires-Dist: ipython
|
|
32
|
+
Requires-Dist: ipython ~=8.0
|
|
33
33
|
Requires-Dist: nuclio-jupyter ~=0.9.11
|
|
34
34
|
Requires-Dist: numpy <1.23.0,>=1.16.5
|
|
35
35
|
Requires-Dist: pandas <1.5.0,~=1.2
|
|
@@ -52,7 +52,6 @@ Requires-Dist: fsspec <2023.7,>=2023.1
|
|
|
52
52
|
Requires-Dist: v3iofs ~=0.1.15
|
|
53
53
|
Requires-Dist: storey ~=1.5.3
|
|
54
54
|
Requires-Dist: deepdiff ~=5.0
|
|
55
|
-
Requires-Dist: pymysql ~=1.0
|
|
56
55
|
Requires-Dist: inflection ~=0.5.0
|
|
57
56
|
Requires-Dist: python-dotenv ~=0.17.0
|
|
58
57
|
Requires-Dist: setuptools ~=65.5
|
|
@@ -84,13 +83,14 @@ Requires-Dist: s3fs <2023.7,>=2023.1 ; extra == 'all'
|
|
|
84
83
|
Provides-Extra: api
|
|
85
84
|
Requires-Dist: uvicorn ~=0.20.0 ; extra == 'api'
|
|
86
85
|
Requires-Dist: dask-kubernetes ~=0.11.0 ; extra == 'api'
|
|
87
|
-
Requires-Dist: apscheduler
|
|
86
|
+
Requires-Dist: apscheduler !=3.10.2,~=3.6 ; extra == 'api'
|
|
88
87
|
Requires-Dist: sqlite3-to-mysql ~=1.4 ; extra == 'api'
|
|
89
88
|
Requires-Dist: objgraph ~=3.5 ; extra == 'api'
|
|
90
89
|
Requires-Dist: igz-mgmt ~=0.0.10 ; extra == 'api'
|
|
91
90
|
Requires-Dist: humanfriendly ~=9.2 ; extra == 'api'
|
|
92
91
|
Requires-Dist: fastapi ~=0.95.2 ; extra == 'api'
|
|
93
92
|
Requires-Dist: sqlalchemy ~=1.4 ; extra == 'api'
|
|
93
|
+
Requires-Dist: pymysql ~=1.0 ; extra == 'api'
|
|
94
94
|
Provides-Extra: azure-blob-storage
|
|
95
95
|
Requires-Dist: msrest ~=0.6.21 ; extra == 'azure-blob-storage'
|
|
96
96
|
Requires-Dist: azure-core ~=1.24 ; extra == 'azure-blob-storage'
|
|
@@ -125,7 +125,7 @@ Requires-Dist: s3fs <2023.7,>=2023.1 ; extra == 'complete'
|
|
|
125
125
|
Provides-Extra: complete-api
|
|
126
126
|
Requires-Dist: adlfs <2023.5,>=2022.2 ; extra == 'complete-api'
|
|
127
127
|
Requires-Dist: aiobotocore <2.6,>=2.4.2 ; extra == 'complete-api'
|
|
128
|
-
Requires-Dist: apscheduler
|
|
128
|
+
Requires-Dist: apscheduler !=3.10.2,~=3.6 ; extra == 'complete-api'
|
|
129
129
|
Requires-Dist: avro ~=1.11 ; extra == 'complete-api'
|
|
130
130
|
Requires-Dist: azure-core ~=1.24 ; extra == 'complete-api'
|
|
131
131
|
Requires-Dist: azure-identity ~=1.5 ; extra == 'complete-api'
|
|
@@ -144,6 +144,7 @@ Requires-Dist: kafka-python ~=2.0 ; extra == 'complete-api'
|
|
|
144
144
|
Requires-Dist: msrest ~=0.6.21 ; extra == 'complete-api'
|
|
145
145
|
Requires-Dist: objgraph ~=3.5 ; extra == 'complete-api'
|
|
146
146
|
Requires-Dist: plotly <5.12.0,~=5.4 ; extra == 'complete-api'
|
|
147
|
+
Requires-Dist: pymysql ~=1.0 ; extra == 'complete-api'
|
|
147
148
|
Requires-Dist: pyopenssl >=23 ; extra == 'complete-api'
|
|
148
149
|
Requires-Dist: redis ~=4.3 ; extra == 'complete-api'
|
|
149
150
|
Requires-Dist: s3fs <2023.7,>=2023.1 ; extra == 'complete-api'
|
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
mlrun/__init__.py,sha256=adWxPTY8n0qaMkwt3KVGPN2hZeHT4vcG7lWZxBewEg4,7279
|
|
2
2
|
mlrun/__main__.py,sha256=cdt32TZDjEp6MKrD8gT8D50QltE-7riDVCYH2hGGVWM,48480
|
|
3
|
-
mlrun/config.py,sha256=
|
|
3
|
+
mlrun/config.py,sha256=44hCRBmgNfWHptedxYdYlNV6gFoUUSHEQ3zIx04NCwE,57084
|
|
4
4
|
mlrun/errors.py,sha256=pYZZtJsMqkFktG6T8iTyfyESrrhOLfKvB3U_jUDHMo8,6780
|
|
5
5
|
mlrun/execution.py,sha256=DPy9QzI18sRrI8vu4qXChl7QAPbc5swi_AU7E5YWBj0,39723
|
|
6
6
|
mlrun/features.py,sha256=UQQ2uh5Xh9XsMGiYBqh3bKgDhOHANjv1gQgWyId9qQE,15624
|
|
7
7
|
mlrun/k8s_utils.py,sha256=DhaLjX9Y4n6MZ-Gie2puEQ7LNQ9N6yUmnu6W_Y5ifMU,4876
|
|
8
8
|
mlrun/kfpops.py,sha256=ttXDQR9dphYvIhTHEKKTpE3QEPMrAr2-6Ph2RTFaUWM,29695
|
|
9
9
|
mlrun/lists.py,sha256=lMbcVvtS5MLI40JPtT5ithTojX8xUZx4RkZX0-L9zUE,8390
|
|
10
|
-
mlrun/model.py,sha256=
|
|
10
|
+
mlrun/model.py,sha256=yzWqVM3bMrPCmGG5At6xg-U0d5iuHtWczAIRuUEXBAo,60767
|
|
11
11
|
mlrun/render.py,sha256=a_s-kzQ35bJg7e7cBxk3MCnoIK4qvDS2dGO8RzHgI1c,13016
|
|
12
|
-
mlrun/run.py,sha256=
|
|
12
|
+
mlrun/run.py,sha256=4U3Gq6xlr6vZfaaRU7aXpCHENgHP3I5tFLeE9YBwbH0,47373
|
|
13
13
|
mlrun/secrets.py,sha256=hr2Ia9kLkoMM3KoxijXqO6AIJOUrrLxvz4Q7Xk39d4Y,7783
|
|
14
14
|
mlrun/api/__init__.py,sha256=xY3wHC4TEJgez7qtnn1pQvHosi8-5UJOCtyGBS7FcGE,571
|
|
15
15
|
mlrun/api/alembic.ini,sha256=oeSJRHwBbF3c3-N_RJilcZD-diq3F-oPv21gDIkrZGs,2105
|
|
16
16
|
mlrun/api/constants.py,sha256=8xjdBYxt3-5_osRk_rII1nabyL3zMVOxnCJ6YrEhdFQ,685
|
|
17
|
-
mlrun/api/initial_data.py,sha256=
|
|
18
|
-
mlrun/api/launcher.py,sha256=
|
|
17
|
+
mlrun/api/initial_data.py,sha256=J_nKgeVwNzL_Zzm_3tv2gJzTzzyMj1dJkGdgLqOjsrQ,25987
|
|
18
|
+
mlrun/api/launcher.py,sha256=FDM7V978eESLQChyNzF_I4t2LF1yUWqBi0qIcNTF7yI,10764
|
|
19
19
|
mlrun/api/main.py,sha256=4HLGz7lGW7b0WNuIoX3PzMzlCSuGqu47IVJ3rOrYB0k,27263
|
|
20
20
|
mlrun/api/middlewares.py,sha256=JXI4HOR-2w9Cf30my4vMK-pC1zgAFHK65NzFYgRcOuI,5289
|
|
21
21
|
mlrun/api/api/__init__.py,sha256=xY3wHC4TEJgez7qtnn1pQvHosi8-5UJOCtyGBS7FcGE,571
|
|
@@ -28,14 +28,14 @@ mlrun/api/api/endpoints/auth.py,sha256=hoqYSELX_6Zi3Cvep2nGLJgBo4YbMJoCt3WwbEZrn
|
|
|
28
28
|
mlrun/api/api/endpoints/background_tasks.py,sha256=5SV4iDF-dZR878kp77VpANRb86BJYgffrHnGsM4gQ3o,3618
|
|
29
29
|
mlrun/api/api/endpoints/client_spec.py,sha256=lN2By-KGzHuzNTGiJk0RK3SM6ZUr3VLgsudsymrtZE8,1214
|
|
30
30
|
mlrun/api/api/endpoints/clusterization_spec.py,sha256=0eSG7TSt647V7-A-uI5CLRItkVOBqIBM9ep_fiMFqPI,1175
|
|
31
|
-
mlrun/api/api/endpoints/datastore_profile.py,sha256=
|
|
31
|
+
mlrun/api/api/endpoints/datastore_profile.py,sha256=1wn2kY3kqvXaOPP1PSo78Zbm_s7anpTIo2kkfpfN0jc,5557
|
|
32
32
|
mlrun/api/api/endpoints/feature_store.py,sha256=mq6XVv9zaW7zU-XRHh8X2gTwk-z6a1QE3bcuOdR6jQU,28853
|
|
33
33
|
mlrun/api/api/endpoints/files.py,sha256=dFwmP40O2MXI1CmU3gJ1XrOVjSubpb0KJtguWJC5Bn4,6712
|
|
34
|
-
mlrun/api/api/endpoints/frontend_spec.py,sha256=
|
|
35
|
-
mlrun/api/api/endpoints/functions.py,sha256=
|
|
34
|
+
mlrun/api/api/endpoints/frontend_spec.py,sha256=r8r6BSDpYcUpWKJX7zqXJPtYBZHzfZILd1w-SIikea8,5530
|
|
35
|
+
mlrun/api/api/endpoints/functions.py,sha256=_EC76TskvXA_CcmwWCim7Du97RxhHDYpw9rHetswpe0,37551
|
|
36
36
|
mlrun/api/api/endpoints/grafana_proxy.py,sha256=5PvWjqTeb88kNtuTtZub9eFgr6I0ORlmPXGHk6G1QfM,6086
|
|
37
37
|
mlrun/api/api/endpoints/healthz.py,sha256=DVNb94DLQhmQWxxo5d3AZbd82AL_PGuzU6NJ3IT5pkA,1344
|
|
38
|
-
mlrun/api/api/endpoints/hub.py,sha256=
|
|
38
|
+
mlrun/api/api/endpoints/hub.py,sha256=KsnshPX0IRANcRG-VR_tKLlxCH7I9qgsuYtCYIwMipM,10495
|
|
39
39
|
mlrun/api/api/endpoints/jobs.py,sha256=TTfV0xGrThuf8XqeGlrH34_aoo89QDt_wJgy7WcxD44,2931
|
|
40
40
|
mlrun/api/api/endpoints/logs.py,sha256=jMoRvAxgIIcwNahTbH_FPScND_m_Yez91SS92KUGahw,2975
|
|
41
41
|
mlrun/api/api/endpoints/model_endpoints.py,sha256=nSqZZcSKl_mGb13Sa-CXCfIBBZwZvxkvFoGnb3VdX0M,15734
|
|
@@ -54,12 +54,12 @@ mlrun/api/api/endpoints/internal/config.py,sha256=IVqf6YWokNXY3LC5o1BWqlEDVQ-AJd
|
|
|
54
54
|
mlrun/api/api/endpoints/internal/memory_reports.py,sha256=PRVaj8i_WAbIqjP37xBlYfPunkZHTCXMprka0Qoxhxw,1718
|
|
55
55
|
mlrun/api/crud/__init__.py,sha256=EvtS3LBcPy2ZDJMgiHe-9CSzsnTVsRAuIcGW_szATO8,1298
|
|
56
56
|
mlrun/api/crud/artifacts.py,sha256=Z0CzdgywxS352DD0MumACDfGg92VqZlOcBSw8FCRao8,5610
|
|
57
|
-
mlrun/api/crud/client_spec.py,sha256=
|
|
57
|
+
mlrun/api/crud/client_spec.py,sha256=inyyYtv4sgS6ZrCsJL7SOg8FJ73z9oVyk15xtcIvOfg,7741
|
|
58
58
|
mlrun/api/crud/clusterization_spec.py,sha256=6riIRpWf1dGTRUSi1lLeydO-3KCcnpQ-Y_AuUCm5i7k,1055
|
|
59
|
-
mlrun/api/crud/datastore_profiles.py,sha256=
|
|
59
|
+
mlrun/api/crud/datastore_profiles.py,sha256=kSlu4NQASJChZBF7TYrPHD7vF5aGst9cygYisZn1En4,3889
|
|
60
60
|
mlrun/api/crud/feature_store.py,sha256=Wizxaq6MXmj77Q4lR0-VawoSR3lmEDFQuaylmLtUTBM,18971
|
|
61
61
|
mlrun/api/crud/functions.py,sha256=TQNtSP_AcLMhT1SNO0ViAFgzHeD4NnTEOjLYOOh9RzY,4536
|
|
62
|
-
mlrun/api/crud/hub.py,sha256=
|
|
62
|
+
mlrun/api/crud/hub.py,sha256=Ii8fnm00Xotkohxc_GeTy-AI8bTBM9LRWwXGRJHyE4U,14611
|
|
63
63
|
mlrun/api/crud/logs.py,sha256=vFi9hynLqRT81erkGU2lhGmo394huYV3hoIkiInhspQ,9409
|
|
64
64
|
mlrun/api/crud/notifications.py,sha256=Y4n-JYbFatBdHpIAuWOwLa2ilcTpfsM89Kyo1gmLuI8,5739
|
|
65
65
|
mlrun/api/crud/pipelines.py,sha256=QrhJ02sOE1-8OtIr7MJOKyLqbn5r4ItiilAh-GKDqg4,15075
|
|
@@ -68,7 +68,7 @@ mlrun/api/crud/runs.py,sha256=RYTOOhn8lj4k5b63tu8sGVbnuDtbfuW8M-9GfjBHz1M,6226
|
|
|
68
68
|
mlrun/api/crud/runtime_resources.py,sha256=hAulDtCyWrMDTe35gIetg3ApiHumBmCA7Ap3Fo2fSqw,5645
|
|
69
69
|
mlrun/api/crud/secrets.py,sha256=MnsA96ArLOlgqvXpKuIp1tWjKSWelD82tDtGhsm1d-k,22204
|
|
70
70
|
mlrun/api/crud/tags.py,sha256=pcXXrmlfgCBCtw5uBX6hAHdqO96XIg0ov5vn-u6r5Q4,3277
|
|
71
|
-
mlrun/api/crud/workflows.py,sha256=
|
|
71
|
+
mlrun/api/crud/workflows.py,sha256=PS5BnKYK5nzo_KD95UCzV7PWet9pwdb7-l9zRADWoeA,13654
|
|
72
72
|
mlrun/api/crud/model_monitoring/__init__.py,sha256=_rZmfvis_Qkhephv_SEgzqUVuC4bY-D84mCyyztWRs0,759
|
|
73
73
|
mlrun/api/crud/model_monitoring/deployment.py,sha256=p9rPFT3SUPB1jUfZO-KqA1qnlUVQ9qZwqDDZU-OXWyM,24698
|
|
74
74
|
mlrun/api/crud/model_monitoring/grafana.py,sha256=7D-sUY3PjFh7_HjYe-KWryvepxO9zLArVC3U7IChuqA,17494
|
|
@@ -83,12 +83,13 @@ mlrun/api/db/base.py,sha256=J4KvwQc5_QQnqlkU0-fLA9JdfJH4jY28MEHldCApD78,16379
|
|
|
83
83
|
mlrun/api/db/init_db.py,sha256=WTHphTsHl-ZKszZsQk3V-lFTzIEbWYJADolleugQ8eg,739
|
|
84
84
|
mlrun/api/db/session.py,sha256=v1HJJ8yc854NQAPjygQX6pSqE-2mNjGjFK7vFdoKcLo,1299
|
|
85
85
|
mlrun/api/db/sqldb/__init__.py,sha256=xY3wHC4TEJgez7qtnn1pQvHosi8-5UJOCtyGBS7FcGE,571
|
|
86
|
-
mlrun/api/db/sqldb/db.py,sha256=
|
|
86
|
+
mlrun/api/db/sqldb/db.py,sha256=1NFkqc7r3gy4Hm-9Jzm9CsvQgKzZkNp5C501HMpu5tg,156283
|
|
87
87
|
mlrun/api/db/sqldb/helpers.py,sha256=Asc_cDFE2e7gbQ3SVriYyyK4yu94wfOemYPYCMpNLws,2340
|
|
88
88
|
mlrun/api/db/sqldb/models/__init__.py,sha256=oD0qix1voOtUiP-fG04QK5VHOPageoclcSjw0PIoBQY,1105
|
|
89
|
-
mlrun/api/db/sqldb/models/models_mysql.py,sha256=
|
|
90
|
-
mlrun/api/db/sqldb/models/models_sqlite.py,sha256=
|
|
89
|
+
mlrun/api/db/sqldb/models/models_mysql.py,sha256=ZnNUQTDjeMayEGWWvbOtizMWDkaF3g-rFNCWxVYB2sY,22157
|
|
90
|
+
mlrun/api/db/sqldb/models/models_sqlite.py,sha256=XhZN6-VXm55kLVJRXpMW19RbwQtk-S4zhPJv9zsMDrQ,19847
|
|
91
91
|
mlrun/api/migrations_mysql/env.py,sha256=DYsmYYPMvbXxrkuEPzWUJcq9tzJrHIZkpJ0rrKdjmdw,2906
|
|
92
|
+
mlrun/api/migrations_mysql/versions/026c947c4487_altering_table_datastore_profiles_2.py,sha256=BuXSbd3OZmO5hEG1un40X-O-Or1d8H6uGvO5bnW55Bc,1427
|
|
92
93
|
mlrun/api/migrations_mysql/versions/28383af526f3_market_place_to_hub.py,sha256=JhNw92kyWYT80zhvUN4x2zyvme_O1-i-vRFuYH3DM18,1203
|
|
93
94
|
mlrun/api/migrations_mysql/versions/32bae1b0e29c_increase_timestamp_fields_precision.py,sha256=mFG4HN_xHf13bf_Ow6L0AHwyl3lQK0wIvEYuwQgKBoY,4614
|
|
94
95
|
mlrun/api/migrations_mysql/versions/4903aef6a91d_tag_foreign_key_and_cascades.py,sha256=lbeGcZOH_9tMl343Ztlfg5PvnoHUK0PlagBSzgYvOn8,1936
|
|
@@ -101,6 +102,7 @@ mlrun/api/migrations_mysql/versions/c4af40b0bf61_init.py,sha256=3Tl8QNQfcsAbbNmE
|
|
|
101
102
|
mlrun/api/migrations_mysql/versions/c905d15bd91d_notifications.py,sha256=-h1VQRi3oVF0kBScmrBRyW2hOP4HxCh-IkgEHl82Pew,2662
|
|
102
103
|
mlrun/api/migrations_mysql/versions/ee041e8fdaa0_adding_next_run_time_column_to_schedule_.py,sha256=mEf-7xV0rRXuodYiZWJ6Bum9X9QvVX2wLx24J71sAes,1351
|
|
103
104
|
mlrun/api/migrations_sqlite/env.py,sha256=DYsmYYPMvbXxrkuEPzWUJcq9tzJrHIZkpJ0rrKdjmdw,2906
|
|
105
|
+
mlrun/api/migrations_sqlite/versions/026c947c4487_altering_table_datastore_profiles_2.py,sha256=aRq8-1q_Z23KPuu7ScANV6bN_Y9KnR-36Gfy0W1DY0Y,1495
|
|
104
106
|
mlrun/api/migrations_sqlite/versions/11f8dd2dc9fe_init.py,sha256=o92us6ZftBrNIriEOcz8G4JpdvjyAglyF4L2-MhJxFs,11473
|
|
105
107
|
mlrun/api/migrations_sqlite/versions/1c954f8cb32d_schedule_last_run_uri.py,sha256=Js8qSLlrviH6UlFxSjr_KprR2Nc6pAeSQod01bchNbo,1348
|
|
106
108
|
mlrun/api/migrations_sqlite/versions/2b6d23c715aa_adding_feature_sets.py,sha256=pj0yGhP4amDK5WOHvkzMMSqAIehkaHIcawNtbzSpHOQ,5180
|
|
@@ -122,7 +124,7 @@ mlrun/api/migrations_sqlite/versions/e5594ed3ab53_adding_name_and_updated_to_run
|
|
|
122
124
|
mlrun/api/migrations_sqlite/versions/f4249b4ba6fa_adding_feature_vectors.py,sha256=bjjjtMy5IgM-kWefKmql4B-xiS49bvSF5aYSR8mXzUE,3936
|
|
123
125
|
mlrun/api/migrations_sqlite/versions/f7b5a1a03629_adding_feature_labels.py,sha256=9YQL4ikdN4URenEiAGWNdFwNkTpuF-Uccr5Eo8RENrk,2588
|
|
124
126
|
mlrun/api/rundb/__init__.py,sha256=pZgS6ZN126aJme4z5spCX-RmdchShxMnQeCPya8AsQI,577
|
|
125
|
-
mlrun/api/rundb/sqldb.py,sha256=
|
|
127
|
+
mlrun/api/rundb/sqldb.py,sha256=BxZi7OiPN2jXmzcl0YpyvOxuMLEiA-rDNI_Ofa9VEpg,28127
|
|
126
128
|
mlrun/api/runtime_handlers/__init__.py,sha256=vuE2vilCcVR450mf0htFQYnkoaPWKLSdY92yY9vbQFU,2399
|
|
127
129
|
mlrun/api/runtime_handlers/base.py,sha256=TCGatXtOeXLbkAYD0xvZlpu5G_eg5gj81PkGC9RJZy0,50942
|
|
128
130
|
mlrun/api/runtime_handlers/daskjob.py,sha256=i8V1lX65z1GTM_102v3dpBzR3XNiSLbo54fklRSrStU,14568
|
|
@@ -157,7 +159,7 @@ mlrun/api/utils/db/alembic.py,sha256=lfIF2YSSe8hpZ8414e8qzKzwcTWWY9t-io-YwLoh0bA
|
|
|
157
159
|
mlrun/api/utils/db/backup.py,sha256=2XKIJFuqwW1M0oaJiAdjNFqPWQzSnc-zfX888LCR1AU,8214
|
|
158
160
|
mlrun/api/utils/db/mysql.py,sha256=Mgb9Y-3Q3d0plZxcffnJaN8kqtfmE-Qo7rgdP2gM3T8,3787
|
|
159
161
|
mlrun/api/utils/db/sql_collation.py,sha256=RUf4Z2m18vvZ7AGqFvzJUXHEpdiEewF8V17EiEtkSDM,992
|
|
160
|
-
mlrun/api/utils/db/sqlite_migration.py,sha256=
|
|
162
|
+
mlrun/api/utils/db/sqlite_migration.py,sha256=KbRD5ji8sF4eXUaRIuQNzM27wU8LJdF7dHTBYMjTtS4,3891
|
|
161
163
|
mlrun/api/utils/events/__init__.py,sha256=xY3wHC4TEJgez7qtnn1pQvHosi8-5UJOCtyGBS7FcGE,571
|
|
162
164
|
mlrun/api/utils/events/base.py,sha256=w0qyqp6Gzl7fk2HSZuMPovk5i3lbi_sDhnaKw15nYQ4,1721
|
|
163
165
|
mlrun/api/utils/events/events_factory.py,sha256=jtEn8y0ssxB9sML8zIqZTHQa29KkCG4AzsH3lOGIrsE,1630
|
|
@@ -193,18 +195,18 @@ mlrun/common/types.py,sha256=V_jCEFCJZcycFVsPzEToCRQja5bqW0zRAAVaGN_QYxQ,790
|
|
|
193
195
|
mlrun/common/db/__init__.py,sha256=xY3wHC4TEJgez7qtnn1pQvHosi8-5UJOCtyGBS7FcGE,571
|
|
194
196
|
mlrun/common/db/sql_session.py,sha256=iWR8DWyziN2DSDiBgc5Wj3O7iVWDwfd0nJklAKwjoRM,2542
|
|
195
197
|
mlrun/common/model_monitoring/__init__.py,sha256=x0EMEvxVjHsm858J1t6IEA9dtKTdFpJ9sKhss10ld8A,721
|
|
196
|
-
mlrun/common/model_monitoring/helpers.py,sha256=
|
|
198
|
+
mlrun/common/model_monitoring/helpers.py,sha256=e3BXOivqHwSf6xNIYkj_TdZNg51ua3PopeDcEg2Wg3s,2358
|
|
197
199
|
mlrun/common/schemas/__init__.py,sha256=y6pIe1ZWFfBzWzQkkhg_wiFuDkWUBh5xC17ldqwb-Sk,4561
|
|
198
200
|
mlrun/common/schemas/artifact.py,sha256=vbXaY8eHxKt7YHKksD_PYEC-47eguxVb6wRAtMAW7Bk,1923
|
|
199
201
|
mlrun/common/schemas/auth.py,sha256=CZgqGDVNk4rnpVzEsTrNtOoBbYVj-G2o88s3eTonAlc,5879
|
|
200
202
|
mlrun/common/schemas/background_task.py,sha256=1_nTVLDvTyYzsrzXQSfCwz_OlrcvrBlIwxy1ghDLyt8,1553
|
|
201
|
-
mlrun/common/schemas/client_spec.py,sha256=
|
|
203
|
+
mlrun/common/schemas/client_spec.py,sha256=xLco4efQD0B_j5T6g9nPwO_Shn3DSSioXQss5ynHuSM,2894
|
|
202
204
|
mlrun/common/schemas/clusterization_spec.py,sha256=aeaFJZms7r7h2HDv6ML_GDAT6gboW-PxBbc3GKPalGk,888
|
|
203
205
|
mlrun/common/schemas/constants.py,sha256=WpREVl6QW7sDJJO6LquRnCFi1cKEI-zI3AxkONEihts,6243
|
|
204
|
-
mlrun/common/schemas/datastore_profile.py,sha256=
|
|
206
|
+
mlrun/common/schemas/datastore_profile.py,sha256=tbI7gv0pMrRLYhofmpNKFbtq6r3l4B5jkYbgnd0rpJQ,701
|
|
205
207
|
mlrun/common/schemas/events.py,sha256=ROHJLo_fqYjc96pek7yhAUPpPRIuAR76lwxvNz8LIr8,1026
|
|
206
208
|
mlrun/common/schemas/feature_store.py,sha256=LrJJ55TxpCF4RkmorB-i1IUTbixlP-jwLhdn19LLF-Q,3723
|
|
207
|
-
mlrun/common/schemas/frontend_spec.py,sha256=
|
|
209
|
+
mlrun/common/schemas/frontend_spec.py,sha256=epCuyjZhW9qp8o_Y41Ch-d8Wq-K2WtI7jv79Can7z7A,2550
|
|
208
210
|
mlrun/common/schemas/function.py,sha256=6eslF1HMlKqfIpryPCJLqYJkpkWUelQ72lE9_oAc5HU,4432
|
|
209
211
|
mlrun/common/schemas/http.py,sha256=1PtYFhF6sqLSBRcuPMtYcUGmroBhaleqLmYidSdL9LM,705
|
|
210
212
|
mlrun/common/schemas/hub.py,sha256=CZ38rx0CWX7wyGRkdzAcZp505k8w0M7z8hoiiEQ13Lw,4245
|
|
@@ -233,33 +235,33 @@ mlrun/datastore/__init__.py,sha256=ZHspikZYGqiCKqH5H3EA5txuckayC0BwXh9jONCSHzw,4
|
|
|
233
235
|
mlrun/datastore/azure_blob.py,sha256=8j3cZuQ8pqnPx48JAJvjtqSqufyNlqXROGrMGD8h3wM,6946
|
|
234
236
|
mlrun/datastore/base.py,sha256=9riD7d__cegdvegsgDebo2G7fxOejXKk8c7xq3yH8qo,22471
|
|
235
237
|
mlrun/datastore/datastore.py,sha256=TsHyQWLtQfogwgIc52Vxs8np6z8hQi-29Q67fGUrbeY,8467
|
|
236
|
-
mlrun/datastore/datastore_profile.py,sha256=
|
|
237
|
-
mlrun/datastore/dbfs_store.py,sha256=
|
|
238
|
+
mlrun/datastore/datastore_profile.py,sha256=bE_UUQokUkUk7i9Tc6Ojo8XcF7NdrcubDm33P8pHid0,5548
|
|
239
|
+
mlrun/datastore/dbfs_store.py,sha256=ZzsSZ4ZMByDkvzNKLpvTTRq8asaaKdz3UDsnC2cV7bU,6526
|
|
238
240
|
mlrun/datastore/filestore.py,sha256=o4ex777XyxyV1CQBP7M2JyyssCVVAc4H3JrvNC9eryM,3791
|
|
239
241
|
mlrun/datastore/google_cloud_storage.py,sha256=Y_X4ODhvvBeknE_Aqaky_Fdi0-EY5waZAglmAttgFgY,5114
|
|
240
242
|
mlrun/datastore/helpers.py,sha256=-bKveE9rteLd0hJd6OSMuMbfz09W_OXyu1G5O2ihZjs,622
|
|
241
243
|
mlrun/datastore/inmem.py,sha256=6PAltUk7uyYlDgnsaJPOkg_P98iku1ys2e2wpAmPRkc,2779
|
|
242
|
-
mlrun/datastore/redis.py,sha256=
|
|
244
|
+
mlrun/datastore/redis.py,sha256=LIRry2Ody6EAIY51L6rw3AivEz8SUgdhW8GQxckLfhM,5520
|
|
243
245
|
mlrun/datastore/s3.py,sha256=Zd3Bmd9IMA3WEG4fWQnhJqyAjwW2PouHPpk4uDnMttg,7035
|
|
244
246
|
mlrun/datastore/sources.py,sha256=C940NR1SNs-WC8nzvL3N8HGKVPrluaEGNgEM_hq2Od8,38500
|
|
245
247
|
mlrun/datastore/spark_udf.py,sha256=NnnB3DZxZb-rqpRy7b-NC7QWXuuqFn3XkBDc86tU4mQ,1498
|
|
246
248
|
mlrun/datastore/store_resources.py,sha256=SUY9oJieq3r8PEq8G661XxmXem_e-CxDoy2AJ7dpXBk,6906
|
|
247
|
-
mlrun/datastore/targets.py,sha256=
|
|
249
|
+
mlrun/datastore/targets.py,sha256=OH_s_9hioLZxTCzYP48rh_Sf5L1sOcLOL0MbVocxwV0,64079
|
|
248
250
|
mlrun/datastore/utils.py,sha256=tEuLkrb66l5rISjlhzZ6_aDZiZdhT1ZRQv4-sj_-YXc,5438
|
|
249
251
|
mlrun/datastore/v3io.py,sha256=ywd-rrB5Uicdk7KGMk-nJ4mKPjvg2z5w6TVx5Bo5jIo,8099
|
|
250
252
|
mlrun/datastore/wasbfs/__init__.py,sha256=s5Ul-0kAhYqFjKDR2X0O2vDGDbLQQduElb32Ev56Te4,1343
|
|
251
253
|
mlrun/datastore/wasbfs/fs.py,sha256=FfKli7rBwres1pg8AxDlyyg1D5WukBEKb8Mi1SF5HqY,6152
|
|
252
254
|
mlrun/db/__init__.py,sha256=Wy3NbZwgAneRHXCIKygQE-68tnAhvF7lVxrFSh9G6Y4,1145
|
|
253
|
-
mlrun/db/base.py,sha256
|
|
255
|
+
mlrun/db/base.py,sha256=-XwdLExVqZkrHBJc1E1FQ30i7Z0_iFwR7V9ZyPNAI0M,17359
|
|
254
256
|
mlrun/db/factory.py,sha256=wTEKHEmdDkylM6IkTYvmEYVF8gn2HdjLoLoWICCyatI,2403
|
|
255
|
-
mlrun/db/httpdb.py,sha256=
|
|
256
|
-
mlrun/db/nopdb.py,sha256=
|
|
257
|
+
mlrun/db/httpdb.py,sha256=Bkn8dEV9P7XiXi7nMBxNT-1ff6aQaPY0QTrf9qyGVmI,143463
|
|
258
|
+
mlrun/db/nopdb.py,sha256=mz8QBc8aKQGRhihETXO9J8TBjhRzJIE5HY9fKh-xuLw,13985
|
|
257
259
|
mlrun/feature_store/__init__.py,sha256=HdRKopsv4pTM-FTw1320b41VncJsek3_iWBH4r4IGK0,1516
|
|
258
|
-
mlrun/feature_store/api.py,sha256=
|
|
260
|
+
mlrun/feature_store/api.py,sha256=fZovA_iCxsFjTH9vZIZLXEMHaQYtvAOl7ubmPrexeRc,45006
|
|
259
261
|
mlrun/feature_store/common.py,sha256=sl2pmkuv5w4KtTMjt0ky34Qps0iuoXNWbyYGuBkCxjc,12809
|
|
260
|
-
mlrun/feature_store/feature_set.py,sha256=
|
|
262
|
+
mlrun/feature_store/feature_set.py,sha256=At5S9ORHXQ-Gz63MfwTTcu3lCIsHN03cLWEWSmFum68,47837
|
|
261
263
|
mlrun/feature_store/feature_vector.py,sha256=1dfQYuzulR24Pt6gK1-hQCI0uj931LWGPbiFxmeRPLo,34934
|
|
262
|
-
mlrun/feature_store/ingestion.py,sha256=
|
|
264
|
+
mlrun/feature_store/ingestion.py,sha256=GZkrke5_JJfA_PGOFc6ekbHKujHgMgqr6t4vop5n_bg,11210
|
|
263
265
|
mlrun/feature_store/steps.py,sha256=EcZBJvSO-7UMUnzf-nv728cHRxGxHschzfXrmji7e5U,29357
|
|
264
266
|
mlrun/feature_store/retrieval/__init__.py,sha256=6qtZFx8-vtsHv8ZGJuTv3UDe9m7XIlOq4ryEYC58Eww,1260
|
|
265
267
|
mlrun/feature_store/retrieval/base.py,sha256=6pMGwBan8DMjdImOKzDQTZfXPUlpADYVqLiCRWUIXuk,30750
|
|
@@ -353,7 +355,7 @@ mlrun/frameworks/xgboost/mlrun_interface.py,sha256=QcP_mTKBjxvRyWcNnju0BlvXBDOqN
|
|
|
353
355
|
mlrun/frameworks/xgboost/model_handler.py,sha256=XV8xndGhQsPkOX9djqiNVYFB0xiZPujhC0m4DUOU2zI,11617
|
|
354
356
|
mlrun/frameworks/xgboost/utils.py,sha256=5zLzHoeI3n2FuA_rdGzi404QCTLfQx1TYEyUWhZogs8,1069
|
|
355
357
|
mlrun/launcher/__init__.py,sha256=pZgS6ZN126aJme4z5spCX-RmdchShxMnQeCPya8AsQI,577
|
|
356
|
-
mlrun/launcher/base.py,sha256=
|
|
358
|
+
mlrun/launcher/base.py,sha256=hyBTQjnjGN-pLMD46MtXcO8__QKBcy_jxOiuH3HqTrI,15824
|
|
357
359
|
mlrun/launcher/client.py,sha256=c5h7m5i18FXwWaze8epaLjCKMM0_OM8FMXmTNnzCSns,6201
|
|
358
360
|
mlrun/launcher/factory.py,sha256=tk6foFWox7f_xaeTgkWTx9ht_5fv0XzLDR8ucdb8oTE,2344
|
|
359
361
|
mlrun/launcher/local.py,sha256=cWsXKfW-VOgAQOO795rh1YWalR-epRb0z0AbkYwL1x8,10815
|
|
@@ -397,9 +399,9 @@ mlrun/platforms/iguazio.py,sha256=dDd6EBRB272EkKe2GXsb-hefrXWnsfyP_b0Svsi1uLE,21
|
|
|
397
399
|
mlrun/platforms/other.py,sha256=z4pWqxXkVVuMLk-MbNb0Y_ZR5pmIsUm0R8vHnqpEnew,11852
|
|
398
400
|
mlrun/projects/__init__.py,sha256=Lv5rfxyXJrw6WGOWJKhBz66M6t3_zsNMCfUD6waPwx4,1153
|
|
399
401
|
mlrun/projects/operations.py,sha256=AJsin0LrJHTisAPi-9t2ciFNZ83QdMRESIG31Mh_0x4,17948
|
|
400
|
-
mlrun/projects/pipelines.py,sha256=
|
|
401
|
-
mlrun/projects/project.py,sha256=
|
|
402
|
-
mlrun/runtimes/__init__.py,sha256=
|
|
402
|
+
mlrun/projects/pipelines.py,sha256=oaBwTnPJTOxPTsSzmltDKRcLywj4oeCzBKKQVmDAle8,34401
|
|
403
|
+
mlrun/projects/project.py,sha256=2OkKo5utg_R37-8DNEn05IBI3JZVQ5nr2zwvBjnGiJA,128898
|
|
404
|
+
mlrun/runtimes/__init__.py,sha256=XVDe9WXMR3usSQmLnHHzFRgzBw_GKkhk_o3LMDHbcBE,7079
|
|
403
405
|
mlrun/runtimes/base.py,sha256=TDehiOOoF-PsZYY9Vc46ZLN-WhBtzBCs6ghpGqFIbR0,36844
|
|
404
406
|
mlrun/runtimes/constants.py,sha256=TnkD0nQ7pcFq1aJvbweoM4BgbkhaA6fHhg9rnAkxDBE,6689
|
|
405
407
|
mlrun/runtimes/daskjob.py,sha256=r2-qC9Kt0jQbTNRcPH43HKZ4sy-AbyXO9TpfNij_MxQ,16021
|
|
@@ -440,7 +442,7 @@ mlrun/utils/azure_vault.py,sha256=VNs2fz0XlFrV5Ggz3T0mR7mOWHefEcC14wM7QpsbY44,34
|
|
|
440
442
|
mlrun/utils/clones.py,sha256=Q1b1BA4-slooth0gEXoX-x8mhr1m6BgFBA72DXfCqJ8,6245
|
|
441
443
|
mlrun/utils/condition_evaluator.py,sha256=oR-GjryAg76D4G79G-DzVkx631D6Gd4jJgbr_d3Btnw,1920
|
|
442
444
|
mlrun/utils/db.py,sha256=2pdIYKIA0GiwwuWLW0PJ_bPu9M1rd7ESBqnMr5wWuW4,1662
|
|
443
|
-
mlrun/utils/helpers.py,sha256=
|
|
445
|
+
mlrun/utils/helpers.py,sha256=hz_jpEuEL4LfYhmf3ovOnlJ8TTSlkRbytIpYaHft3Y4,49273
|
|
444
446
|
mlrun/utils/http.py,sha256=i32dQYH35pt4gQjPdQugIaCtEOuKxPikRQyKBiHp1ew,8241
|
|
445
447
|
mlrun/utils/logger.py,sha256=d5qUNJ-J_tNASi7A7-cRBOOXA0jJrEDEWFft8AAukLc,7035
|
|
446
448
|
mlrun/utils/regex.py,sha256=V0kaw1-zuehkN20g_Pq6SgkJTBLRdBqNkXOGN_2TJEw,4430
|
|
@@ -455,13 +457,13 @@ mlrun/utils/notifications/notification/console.py,sha256=3xNMf-PFANx6h6I6qpf-xRn
|
|
|
455
457
|
mlrun/utils/notifications/notification/git.py,sha256=5pJs3LFzuz2h3JO9vAGo3BL00-WZFdUcCaO2XaZh-1I,5221
|
|
456
458
|
mlrun/utils/notifications/notification/ipython.py,sha256=qrBmtECiRG6sZpCIVMg7RZcWi5WqbgWl9Ktgg-oi2EY,1962
|
|
457
459
|
mlrun/utils/notifications/notification/slack.py,sha256=5JysqIpUYUZKXPSeeZtbl7qb2L9dj7p2NvnEBcEsZkA,3898
|
|
458
|
-
mlrun/utils/notifications/notification/webhook.py,sha256=
|
|
460
|
+
mlrun/utils/notifications/notification/webhook.py,sha256=QHezCuN5uXkLcroAGxGrhGHaxAdUvkDLIsp27_Yrfd4,2390
|
|
459
461
|
mlrun/utils/version/__init__.py,sha256=7kkrB7hEZ3cLXoWj1kPoDwo4MaswsI2JVOBpbKgPAgc,614
|
|
460
|
-
mlrun/utils/version/version.json,sha256=
|
|
462
|
+
mlrun/utils/version/version.json,sha256=TOWIVRwcZEN4f99fO8cFd4VYThGxtgRP4sioebbTueo,88
|
|
461
463
|
mlrun/utils/version/version.py,sha256=HMwseV8xjTQ__6T6yUWojx_z6yUj7Io7O4NcCCH_sz8,1970
|
|
462
|
-
mlrun-1.5.
|
|
463
|
-
mlrun-1.5.
|
|
464
|
-
mlrun-1.5.
|
|
465
|
-
mlrun-1.5.
|
|
466
|
-
mlrun-1.5.
|
|
467
|
-
mlrun-1.5.
|
|
464
|
+
mlrun-1.5.0rc6.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
465
|
+
mlrun-1.5.0rc6.dist-info/METADATA,sha256=o7KtHFuaXXby6ynntFffWoJnLkFRs2TI6TVBggYMwck,17540
|
|
466
|
+
mlrun-1.5.0rc6.dist-info/WHEEL,sha256=5sUXSg9e4bi7lTLOHcm6QEYwO5TIF1TNbTSVFVjcJcc,92
|
|
467
|
+
mlrun-1.5.0rc6.dist-info/entry_points.txt,sha256=ZbXmb36B9JmK7EaleP8MIAbZSOQXQV0iwKR6si0HUWk,47
|
|
468
|
+
mlrun-1.5.0rc6.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
|
|
469
|
+
mlrun-1.5.0rc6.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|