mlrun 1.6.4rc5__py3-none-any.whl → 1.6.4rc6__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.
- mlrun/db/base.py +1 -0
- mlrun/db/httpdb.py +3 -0
- mlrun/db/nopdb.py +1 -0
- mlrun/projects/project.py +3 -0
- mlrun/run.py +1 -1
- mlrun/utils/version/version.json +2 -2
- {mlrun-1.6.4rc5.dist-info → mlrun-1.6.4rc6.dist-info}/METADATA +1 -1
- {mlrun-1.6.4rc5.dist-info → mlrun-1.6.4rc6.dist-info}/RECORD +12 -12
- {mlrun-1.6.4rc5.dist-info → mlrun-1.6.4rc6.dist-info}/WHEEL +1 -1
- {mlrun-1.6.4rc5.dist-info → mlrun-1.6.4rc6.dist-info}/LICENSE +0 -0
- {mlrun-1.6.4rc5.dist-info → mlrun-1.6.4rc6.dist-info}/entry_points.txt +0 -0
- {mlrun-1.6.4rc5.dist-info → mlrun-1.6.4rc6.dist-info}/top_level.txt +0 -0
mlrun/db/base.py
CHANGED
mlrun/db/httpdb.py
CHANGED
|
@@ -955,6 +955,7 @@ class HTTPRunDB(RunDBInterface):
|
|
|
955
955
|
category: Union[str, mlrun.common.schemas.ArtifactCategories] = None,
|
|
956
956
|
tree: str = None,
|
|
957
957
|
producer_uri: str = None,
|
|
958
|
+
limit: int = None,
|
|
958
959
|
) -> ArtifactList:
|
|
959
960
|
"""List artifacts filtered by various parameters.
|
|
960
961
|
|
|
@@ -987,6 +988,7 @@ class HTTPRunDB(RunDBInterface):
|
|
|
987
988
|
:param producer_uri: Return artifacts produced by the requested producer URI. Producer URI usually
|
|
988
989
|
points to a run and is used to filter artifacts by the run that produced them when the artifact producer id
|
|
989
990
|
is a workflow id (artifact was created as part of a workflow).
|
|
991
|
+
:param limit: Maximum number of artifacts to return.
|
|
990
992
|
"""
|
|
991
993
|
|
|
992
994
|
project = project or config.default_project
|
|
@@ -1006,6 +1008,7 @@ class HTTPRunDB(RunDBInterface):
|
|
|
1006
1008
|
"tree": tree,
|
|
1007
1009
|
"format": mlrun.common.schemas.ArtifactsFormat.full.value,
|
|
1008
1010
|
"producer_uri": producer_uri,
|
|
1011
|
+
"limit": limit,
|
|
1009
1012
|
}
|
|
1010
1013
|
error = "list artifacts"
|
|
1011
1014
|
endpoint_path = f"projects/{project}/artifacts"
|
mlrun/db/nopdb.py
CHANGED
mlrun/projects/project.py
CHANGED
|
@@ -3271,6 +3271,7 @@ class MlrunProject(ModelObj):
|
|
|
3271
3271
|
kind: str = None,
|
|
3272
3272
|
category: typing.Union[str, mlrun.common.schemas.ArtifactCategories] = None,
|
|
3273
3273
|
tree: str = None,
|
|
3274
|
+
limit: int = None,
|
|
3274
3275
|
) -> mlrun.lists.ArtifactList:
|
|
3275
3276
|
"""List artifacts filtered by various parameters.
|
|
3276
3277
|
|
|
@@ -3300,6 +3301,7 @@ class MlrunProject(ModelObj):
|
|
|
3300
3301
|
:param kind: Return artifacts of the requested kind.
|
|
3301
3302
|
:param category: Return artifacts of the requested category.
|
|
3302
3303
|
:param tree: Return artifacts of the requested tree.
|
|
3304
|
+
:param limit: Maximum number of artifacts to return.
|
|
3303
3305
|
"""
|
|
3304
3306
|
db = mlrun.db.get_run_db(secrets=self._secrets)
|
|
3305
3307
|
return db.list_artifacts(
|
|
@@ -3314,6 +3316,7 @@ class MlrunProject(ModelObj):
|
|
|
3314
3316
|
kind=kind,
|
|
3315
3317
|
category=category,
|
|
3316
3318
|
tree=tree,
|
|
3319
|
+
limit=limit,
|
|
3317
3320
|
)
|
|
3318
3321
|
|
|
3319
3322
|
def list_models(
|
mlrun/run.py
CHANGED
|
@@ -628,7 +628,7 @@ def code_to_function(
|
|
|
628
628
|
- spark: run distributed Spark job using Spark Kubernetes Operator
|
|
629
629
|
- remote-spark: run distributed Spark job on remote Spark service
|
|
630
630
|
|
|
631
|
-
Learn more about
|
|
631
|
+
Learn more about [Kinds of function (runtimes)](../concepts/functions-overview.html).
|
|
632
632
|
|
|
633
633
|
:param name: function name, typically best to use hyphen-case
|
|
634
634
|
:param project: project used to namespace the function, defaults to 'default'
|
mlrun/utils/version/version.json
CHANGED
|
@@ -9,7 +9,7 @@ mlrun/kfpops.py,sha256=VgvS_4DappCPHzV7057SbraBTbF2mn7zZ7iPAaks3KU,30493
|
|
|
9
9
|
mlrun/lists.py,sha256=sEEfl_mw_oVUD1dfkvQZIkJ8q7LJKJPDrb5B_Dg85nY,8388
|
|
10
10
|
mlrun/model.py,sha256=EbSxpwtNFkqodTwM_StcmDG5MFSG50ZuDMhqzIyzLmM,64896
|
|
11
11
|
mlrun/render.py,sha256=pfAky9fTHRbINs93_Km_hEdVxmra9RA8BwqMepPbiuE,13451
|
|
12
|
-
mlrun/run.py,sha256=
|
|
12
|
+
mlrun/run.py,sha256=WDWJF612eiszYuk-gH4UQIx4G2noJbxRG-qPIgGDi5I,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
|
|
@@ -86,10 +86,10 @@ mlrun/datastore/wasbfs/__init__.py,sha256=s5Ul-0kAhYqFjKDR2X0O2vDGDbLQQduElb32Ev
|
|
|
86
86
|
mlrun/datastore/wasbfs/fs.py,sha256=MnSj7Q4OKA2L55ihCmUnj2t3GA3B77oLMdAw-yxvN9w,6151
|
|
87
87
|
mlrun/db/__init__.py,sha256=WqJ4x8lqJ7ZoKbhEyFqkYADd9P6E3citckx9e9ZLcIU,1163
|
|
88
88
|
mlrun/db/auth_utils.py,sha256=hpg8D2r82oN0BWabuWN04BTNZ7jYMAF242YSUpK7LFM,5211
|
|
89
|
-
mlrun/db/base.py,sha256=
|
|
89
|
+
mlrun/db/base.py,sha256=ELEObv8fUTBEcg6kJGYTVgCC3vw5NvrfQd3bv26URR0,18405
|
|
90
90
|
mlrun/db/factory.py,sha256=wTEKHEmdDkylM6IkTYvmEYVF8gn2HdjLoLoWICCyatI,2403
|
|
91
|
-
mlrun/db/httpdb.py,sha256=
|
|
92
|
-
mlrun/db/nopdb.py,sha256=
|
|
91
|
+
mlrun/db/httpdb.py,sha256=4jkJ-MUObEKR3VgROywrCxCD1Z7Prkt1BfGYDCRA4IU,157710
|
|
92
|
+
mlrun/db/nopdb.py,sha256=i1n6kgsBMGHQHwWoSse0FTljiKuS0ucOHs1nOPFadsk,14685
|
|
93
93
|
mlrun/feature_store/__init__.py,sha256=n1F5m1svFW2chbE2dJdWzZJJiYS4E-y8PQsG9Q-F0lU,1584
|
|
94
94
|
mlrun/feature_store/api.py,sha256=ehEwKlmE07pq1FUwh-ehA8Jm9LTkQofl5MQpEiMwVqM,49520
|
|
95
95
|
mlrun/feature_store/common.py,sha256=jA7Flrv7iJx2Ug1-4BsOxPCQpVKeaPDcJPupBhu8MgI,12860
|
|
@@ -240,7 +240,7 @@ mlrun/platforms/other.py,sha256=z4pWqxXkVVuMLk-MbNb0Y_ZR5pmIsUm0R8vHnqpEnew,1185
|
|
|
240
240
|
mlrun/projects/__init__.py,sha256=Lv5rfxyXJrw6WGOWJKhBz66M6t3_zsNMCfUD6waPwx4,1153
|
|
241
241
|
mlrun/projects/operations.py,sha256=CJRGKEFhqKXlg0VOKhcfjOUVAmWHA9WwAFNiXtUqBhg,18550
|
|
242
242
|
mlrun/projects/pipelines.py,sha256=FcKNsFtRUP1sOuSEp5Hk0_Qv4ZIKT9gWpatg6bSUCsI,41165
|
|
243
|
-
mlrun/projects/project.py,sha256=
|
|
243
|
+
mlrun/projects/project.py,sha256=o7atu7WzLx6Ezxg_yWTAPGeneVop-0TU_JGjHTD7eVw,153393
|
|
244
244
|
mlrun/runtimes/__init__.py,sha256=f5cdEg4raKNXQawJE-AuWzK6AqIsLfDODREeMnI2Ies,7062
|
|
245
245
|
mlrun/runtimes/base.py,sha256=XRn-YTGRyV7BsM2KRDD0dVgvSoxPzxhfC3utHafI2Sc,36926
|
|
246
246
|
mlrun/runtimes/constants.py,sha256=tB7nIlHob3yF0K9Uf9BUZ8yxjZNSzlzrd3K32K_vV7w,9550
|
|
@@ -304,11 +304,11 @@ mlrun/utils/notifications/notification/ipython.py,sha256=qrBmtECiRG6sZpCIVMg7RZc
|
|
|
304
304
|
mlrun/utils/notifications/notification/slack.py,sha256=5JysqIpUYUZKXPSeeZtbl7qb2L9dj7p2NvnEBcEsZkA,3898
|
|
305
305
|
mlrun/utils/notifications/notification/webhook.py,sha256=QHezCuN5uXkLcroAGxGrhGHaxAdUvkDLIsp27_Yrfd4,2390
|
|
306
306
|
mlrun/utils/version/__init__.py,sha256=7kkrB7hEZ3cLXoWj1kPoDwo4MaswsI2JVOBpbKgPAgc,614
|
|
307
|
-
mlrun/utils/version/version.json,sha256=
|
|
307
|
+
mlrun/utils/version/version.json,sha256=cbqw12I-paQmPzt7MNZ52K4YQZAE6unVTOZO5JAAh_E,88
|
|
308
308
|
mlrun/utils/version/version.py,sha256=HMwseV8xjTQ__6T6yUWojx_z6yUj7Io7O4NcCCH_sz8,1970
|
|
309
|
-
mlrun-1.6.
|
|
310
|
-
mlrun-1.6.
|
|
311
|
-
mlrun-1.6.
|
|
312
|
-
mlrun-1.6.
|
|
313
|
-
mlrun-1.6.
|
|
314
|
-
mlrun-1.6.
|
|
309
|
+
mlrun-1.6.4rc6.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
310
|
+
mlrun-1.6.4rc6.dist-info/METADATA,sha256=XWG49KfyXdd7M4QZfSCIaOtToKnhbeU-Q4SjvkG1keY,18403
|
|
311
|
+
mlrun-1.6.4rc6.dist-info/WHEEL,sha256=cpQTJ5IWu9CdaPViMhC9YzF8gZuS5-vlfoFihTBC86A,91
|
|
312
|
+
mlrun-1.6.4rc6.dist-info/entry_points.txt,sha256=1Owd16eAclD5pfRCoJpYC2ZJSyGNTtUr0nCELMioMmU,46
|
|
313
|
+
mlrun-1.6.4rc6.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
|
|
314
|
+
mlrun-1.6.4rc6.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|