mlrun 1.7.0rc32__py3-none-any.whl → 1.7.0rc33__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/config.py +9 -1
- mlrun/datastore/base.py +5 -1
- mlrun/db/base.py +3 -1
- mlrun/db/httpdb.py +1 -1
- mlrun/db/nopdb.py +3 -1
- mlrun/model_monitoring/controller.py +1 -1
- mlrun/model_monitoring/db/stores/base/store.py +2 -0
- mlrun/model_monitoring/db/stores/sqldb/sql_store.py +9 -23
- mlrun/model_monitoring/db/stores/v3io_kv/kv_store.py +5 -20
- mlrun/model_monitoring/stream_processing.py +6 -0
- mlrun/projects/project.py +1 -1
- mlrun/runtimes/nuclio/api_gateway.py +15 -1
- mlrun/runtimes/nuclio/application/application.py +13 -0
- mlrun/utils/version/version.json +2 -2
- {mlrun-1.7.0rc32.dist-info → mlrun-1.7.0rc33.dist-info}/METADATA +2 -2
- {mlrun-1.7.0rc32.dist-info → mlrun-1.7.0rc33.dist-info}/RECORD +20 -20
- {mlrun-1.7.0rc32.dist-info → mlrun-1.7.0rc33.dist-info}/WHEEL +1 -1
- {mlrun-1.7.0rc32.dist-info → mlrun-1.7.0rc33.dist-info}/LICENSE +0 -0
- {mlrun-1.7.0rc32.dist-info → mlrun-1.7.0rc33.dist-info}/entry_points.txt +0 -0
- {mlrun-1.7.0rc32.dist-info → mlrun-1.7.0rc33.dist-info}/top_level.txt +0 -0
mlrun/config.py
CHANGED
|
@@ -252,7 +252,7 @@ default_config = {
|
|
|
252
252
|
},
|
|
253
253
|
"application": {
|
|
254
254
|
"default_sidecar_internal_port": 8050,
|
|
255
|
-
"default_authentication_mode":
|
|
255
|
+
"default_authentication_mode": mlrun.common.schemas.APIGatewayAuthenticationMode.none,
|
|
256
256
|
},
|
|
257
257
|
},
|
|
258
258
|
# TODO: function defaults should be moved to the function spec config above
|
|
@@ -1055,6 +1055,14 @@ class Config:
|
|
|
1055
1055
|
resource_requirement.pop(gpu)
|
|
1056
1056
|
return resource_requirement
|
|
1057
1057
|
|
|
1058
|
+
def force_api_gateway_ssl_redirect(self):
|
|
1059
|
+
"""
|
|
1060
|
+
Get the default value for the ssl_redirect configuration.
|
|
1061
|
+
In Iguazio we always want to redirect to HTTPS, in other cases we don't.
|
|
1062
|
+
:return: True if we should redirect to HTTPS, False otherwise.
|
|
1063
|
+
"""
|
|
1064
|
+
return self.is_running_on_iguazio()
|
|
1065
|
+
|
|
1058
1066
|
def to_dict(self):
|
|
1059
1067
|
return copy.deepcopy(self._cfg)
|
|
1060
1068
|
|
mlrun/datastore/base.py
CHANGED
|
@@ -215,7 +215,11 @@ class DataStore:
|
|
|
215
215
|
raise mlrun.errors.MLRunInvalidArgumentError(
|
|
216
216
|
"When providing start_time or end_time, must provide time_column"
|
|
217
217
|
)
|
|
218
|
-
if
|
|
218
|
+
if (
|
|
219
|
+
start_time
|
|
220
|
+
and end_time
|
|
221
|
+
and start_time.utcoffset() != end_time.utcoffset()
|
|
222
|
+
):
|
|
219
223
|
raise mlrun.errors.MLRunInvalidArgumentError(
|
|
220
224
|
"start_time and end_time must have the same time zone"
|
|
221
225
|
)
|
mlrun/db/base.py
CHANGED
|
@@ -175,7 +175,9 @@ class RunDBInterface(ABC):
|
|
|
175
175
|
pass
|
|
176
176
|
|
|
177
177
|
@abstractmethod
|
|
178
|
-
def list_functions(
|
|
178
|
+
def list_functions(
|
|
179
|
+
self, name=None, project="", tag="", labels=None, since=None, until=None
|
|
180
|
+
):
|
|
179
181
|
pass
|
|
180
182
|
|
|
181
183
|
@abstractmethod
|
mlrun/db/httpdb.py
CHANGED
|
@@ -1260,7 +1260,7 @@ class HTTPRunDB(RunDBInterface):
|
|
|
1260
1260
|
|
|
1261
1261
|
:param name: Return only functions with a specific name.
|
|
1262
1262
|
:param project: Return functions belonging to this project. If not specified, the default project is used.
|
|
1263
|
-
:param tag: Return function versions with specific tags.
|
|
1263
|
+
:param tag: Return function versions with specific tags. To return only tagged functions, set tag to ``"*"``.
|
|
1264
1264
|
:param labels: Return functions that have specific labels assigned to them.
|
|
1265
1265
|
:param since: Return functions updated after this date (as datetime object).
|
|
1266
1266
|
:param until: Return functions updated before this date (as datetime object).
|
mlrun/db/nopdb.py
CHANGED
|
@@ -178,7 +178,9 @@ class NopDB(RunDBInterface):
|
|
|
178
178
|
def delete_function(self, name: str, project: str = ""):
|
|
179
179
|
pass
|
|
180
180
|
|
|
181
|
-
def list_functions(
|
|
181
|
+
def list_functions(
|
|
182
|
+
self, name=None, project="", tag="", labels=None, since=None, until=None
|
|
183
|
+
):
|
|
182
184
|
pass
|
|
183
185
|
|
|
184
186
|
def tag_objects(
|
|
@@ -328,7 +328,7 @@ class MonitoringApplicationController:
|
|
|
328
328
|
logger.info("Start running monitoring controller")
|
|
329
329
|
try:
|
|
330
330
|
applications_names = []
|
|
331
|
-
endpoints = self.db.list_model_endpoints()
|
|
331
|
+
endpoints = self.db.list_model_endpoints(include_stats=True)
|
|
332
332
|
if not endpoints:
|
|
333
333
|
logger.info("No model endpoints found", project=self.project)
|
|
334
334
|
return
|
|
@@ -94,6 +94,7 @@ class StoreBase(ABC):
|
|
|
94
94
|
labels: list[str] = None,
|
|
95
95
|
top_level: bool = None,
|
|
96
96
|
uids: list = None,
|
|
97
|
+
include_stats: bool = None,
|
|
97
98
|
) -> list[dict[str, typing.Any]]:
|
|
98
99
|
"""
|
|
99
100
|
Returns a list of model endpoint dictionaries, supports filtering by model, function, labels or top level.
|
|
@@ -107,6 +108,7 @@ class StoreBase(ABC):
|
|
|
107
108
|
key (i.e. "key").
|
|
108
109
|
:param top_level: If True will return only routers and endpoint that are NOT children of any router.
|
|
109
110
|
:param uids: List of model endpoint unique ids to include in the result.
|
|
111
|
+
:param include_stats: If True, will include model endpoint statistics in the result.
|
|
110
112
|
|
|
111
113
|
:return: A list of model endpoint dictionaries.
|
|
112
114
|
"""
|
|
@@ -266,22 +266,8 @@ class SQLStoreBase(StoreBase):
|
|
|
266
266
|
labels: list[str] = None,
|
|
267
267
|
top_level: bool = None,
|
|
268
268
|
uids: list = None,
|
|
269
|
+
include_stats: bool = None,
|
|
269
270
|
) -> list[dict[str, typing.Any]]:
|
|
270
|
-
"""
|
|
271
|
-
Returns a list of model endpoint dictionaries, supports filtering by model, function, labels or top level.
|
|
272
|
-
By default, when no filters are applied, all available model endpoints for the given project will
|
|
273
|
-
be listed.
|
|
274
|
-
|
|
275
|
-
:param model: The name of the model to filter by.
|
|
276
|
-
:param function: The name of the function to filter by.
|
|
277
|
-
:param labels: A list of labels to filter by. Label filters work by either filtering a specific value
|
|
278
|
-
of a label (i.e. list("key=value")) or by looking for the existence of a given
|
|
279
|
-
key (i.e. "key").
|
|
280
|
-
:param top_level: If True will return only routers and endpoint that are NOT children of any router.
|
|
281
|
-
:param uids: List of model endpoint unique ids to include in the result.
|
|
282
|
-
|
|
283
|
-
:return: A list of model endpoint dictionaries.
|
|
284
|
-
"""
|
|
285
271
|
# Generate an empty model endpoints that will be filled afterwards with model endpoint dictionaries
|
|
286
272
|
endpoint_list = []
|
|
287
273
|
|
|
@@ -291,14 +277,8 @@ class SQLStoreBase(StoreBase):
|
|
|
291
277
|
# Get the model endpoints records using sqlalchemy ORM
|
|
292
278
|
with create_session(dsn=self._sql_connection_string) as session:
|
|
293
279
|
# Generate the list query
|
|
294
|
-
query = (
|
|
295
|
-
|
|
296
|
-
.options(
|
|
297
|
-
# Exclude these fields when listing model endpoints to avoid returning too much data (ML-6594)
|
|
298
|
-
sqlalchemy.orm.defer(mm_schemas.EventFieldType.FEATURE_STATS),
|
|
299
|
-
sqlalchemy.orm.defer(mm_schemas.EventFieldType.CURRENT_STATS),
|
|
300
|
-
)
|
|
301
|
-
.filter_by(project=self.project)
|
|
280
|
+
query = session.query(self.model_endpoints_table).filter_by(
|
|
281
|
+
project=self.project
|
|
302
282
|
)
|
|
303
283
|
|
|
304
284
|
# Apply filters
|
|
@@ -347,6 +327,12 @@ class SQLStoreBase(StoreBase):
|
|
|
347
327
|
):
|
|
348
328
|
continue
|
|
349
329
|
|
|
330
|
+
if not include_stats:
|
|
331
|
+
# Exclude these fields when listing model endpoints to avoid returning too much data (ML-6594)
|
|
332
|
+
# TODO: Remove stats from table schema (ML-7196)
|
|
333
|
+
endpoint_dict.pop(mm_schemas.EventFieldType.FEATURE_STATS)
|
|
334
|
+
endpoint_dict.pop(mm_schemas.EventFieldType.CURRENT_STATS)
|
|
335
|
+
|
|
350
336
|
endpoint_list.append(endpoint_dict)
|
|
351
337
|
|
|
352
338
|
return endpoint_list
|
|
@@ -226,24 +226,8 @@ class KVStoreBase(StoreBase):
|
|
|
226
226
|
labels: list[str] = None,
|
|
227
227
|
top_level: bool = None,
|
|
228
228
|
uids: list = None,
|
|
229
|
+
include_stats: bool = None,
|
|
229
230
|
) -> list[dict[str, typing.Any]]:
|
|
230
|
-
"""
|
|
231
|
-
Returns a list of model endpoint dictionaries, supports filtering by model, function, labels or top level.
|
|
232
|
-
By default, when no filters are applied, all available model endpoints for the given project will
|
|
233
|
-
be listed.
|
|
234
|
-
|
|
235
|
-
:param model: The name of the model to filter by.
|
|
236
|
-
:param function: The name of the function to filter by.
|
|
237
|
-
:param labels: A list of labels to filter by. Label filters work by either filtering a specific value
|
|
238
|
-
of a label (i.e. list("key=value")) or by looking for the existence of a given
|
|
239
|
-
key (i.e. "key").
|
|
240
|
-
:param top_level: If True will return only routers and endpoint that are NOT children of any router.
|
|
241
|
-
:param uids: List of model endpoint unique ids to include in the result.
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
:return: A list of model endpoint dictionaries.
|
|
245
|
-
"""
|
|
246
|
-
|
|
247
231
|
# # Initialize an empty model endpoints list
|
|
248
232
|
endpoint_list = []
|
|
249
233
|
|
|
@@ -283,9 +267,10 @@ class KVStoreBase(StoreBase):
|
|
|
283
267
|
endpoint_dict = self.get_model_endpoint(
|
|
284
268
|
endpoint_id=endpoint_id,
|
|
285
269
|
)
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
270
|
+
if not include_stats:
|
|
271
|
+
# Exclude these fields when listing model endpoints to avoid returning too much data (ML-6594)
|
|
272
|
+
endpoint_dict.pop(mm_schemas.EventFieldType.FEATURE_STATS)
|
|
273
|
+
endpoint_dict.pop(mm_schemas.EventFieldType.CURRENT_STATS)
|
|
289
274
|
|
|
290
275
|
if labels and not self._validate_labels(
|
|
291
276
|
endpoint_dict=endpoint_dict, labels=labels
|
|
@@ -773,6 +773,12 @@ class MapFeatureNames(mlrun.feature_store.steps.MapClass):
|
|
|
773
773
|
|
|
774
774
|
feature_values = event[EventFieldType.FEATURES]
|
|
775
775
|
label_values = event[EventFieldType.PREDICTION]
|
|
776
|
+
|
|
777
|
+
for index in range(len(feature_values)):
|
|
778
|
+
feature_value = feature_values[index]
|
|
779
|
+
if isinstance(feature_value, int):
|
|
780
|
+
feature_values[index] = float(feature_value)
|
|
781
|
+
|
|
776
782
|
# Get feature names and label columns
|
|
777
783
|
if endpoint_id not in self.feature_names:
|
|
778
784
|
endpoint_record = mlrun.model_monitoring.helpers.get_endpoint_record(
|
mlrun/projects/project.py
CHANGED
|
@@ -3781,7 +3781,7 @@ class MlrunProject(ModelObj):
|
|
|
3781
3781
|
|
|
3782
3782
|
|
|
3783
3783
|
:param name: Return only functions with a specific name.
|
|
3784
|
-
:param tag: Return function versions with specific tags.
|
|
3784
|
+
:param tag: Return function versions with specific tags. To return only tagged functions, set tag to ``"*"``.
|
|
3785
3785
|
:param labels: Return functions that have specific labels assigned to them.
|
|
3786
3786
|
:returns: List of function objects.
|
|
3787
3787
|
"""
|
|
@@ -546,6 +546,14 @@ class APIGateway(ModelObj):
|
|
|
546
546
|
project=self.spec.project, functions=self.spec.functions, ports=ports
|
|
547
547
|
)
|
|
548
548
|
|
|
549
|
+
def with_force_ssl_redirect(self):
|
|
550
|
+
"""
|
|
551
|
+
Set SSL redirect annotation for the API gateway.
|
|
552
|
+
"""
|
|
553
|
+
self.metadata.annotations["nginx.ingress.kubernetes.io/force-ssl-redirect"] = (
|
|
554
|
+
"true"
|
|
555
|
+
)
|
|
556
|
+
|
|
549
557
|
@classmethod
|
|
550
558
|
def from_scheme(cls, api_gateway: schemas.APIGateway):
|
|
551
559
|
project = api_gateway.metadata.labels.get(
|
|
@@ -560,6 +568,8 @@ class APIGateway(ModelObj):
|
|
|
560
568
|
new_api_gateway = cls(
|
|
561
569
|
metadata=APIGatewayMetadata(
|
|
562
570
|
name=api_gateway.spec.name,
|
|
571
|
+
annotations=api_gateway.metadata.annotations,
|
|
572
|
+
labels=api_gateway.metadata.labels,
|
|
563
573
|
),
|
|
564
574
|
spec=APIGatewaySpec(
|
|
565
575
|
project=project,
|
|
@@ -600,7 +610,11 @@ class APIGateway(ModelObj):
|
|
|
600
610
|
upstreams[i].port = port
|
|
601
611
|
|
|
602
612
|
api_gateway = schemas.APIGateway(
|
|
603
|
-
metadata=schemas.APIGatewayMetadata(
|
|
613
|
+
metadata=schemas.APIGatewayMetadata(
|
|
614
|
+
name=self.metadata.name,
|
|
615
|
+
labels=self.metadata.labels,
|
|
616
|
+
annotations=self.metadata.annotations,
|
|
617
|
+
),
|
|
604
618
|
spec=schemas.APIGatewaySpec(
|
|
605
619
|
name=self.metadata.name,
|
|
606
620
|
description=self.spec.description,
|
|
@@ -266,6 +266,7 @@ class ApplicationRuntime(RemoteRuntime):
|
|
|
266
266
|
direct_port_access: bool = False,
|
|
267
267
|
authentication_mode: schemas.APIGatewayAuthenticationMode = None,
|
|
268
268
|
authentication_creds: tuple[str] = None,
|
|
269
|
+
ssl_redirect: bool = None,
|
|
269
270
|
):
|
|
270
271
|
"""
|
|
271
272
|
Deploy function, builds the application image if required (self.requires_build()) or force_build is True,
|
|
@@ -285,6 +286,9 @@ class ApplicationRuntime(RemoteRuntime):
|
|
|
285
286
|
:param direct_port_access: Set True to allow direct port access to the application sidecar
|
|
286
287
|
:param authentication_mode: API Gateway authentication mode
|
|
287
288
|
:param authentication_creds: API Gateway authentication credentials as a tuple (username, password)
|
|
289
|
+
:param ssl_redirect: Set True to force SSL redirect, False to disable. Defaults to
|
|
290
|
+
mlrun.mlconf.force_api_gateway_ssl_redirect()
|
|
291
|
+
|
|
288
292
|
:return: True if the function is ready (deployed)
|
|
289
293
|
"""
|
|
290
294
|
if self.requires_build() or force_build:
|
|
@@ -326,6 +330,7 @@ class ApplicationRuntime(RemoteRuntime):
|
|
|
326
330
|
ports=ports,
|
|
327
331
|
authentication_mode=authentication_mode,
|
|
328
332
|
authentication_creds=authentication_creds,
|
|
333
|
+
ssl_redirect=ssl_redirect,
|
|
329
334
|
)
|
|
330
335
|
|
|
331
336
|
def with_source_archive(
|
|
@@ -361,6 +366,7 @@ class ApplicationRuntime(RemoteRuntime):
|
|
|
361
366
|
ports: list[int] = None,
|
|
362
367
|
authentication_mode: schemas.APIGatewayAuthenticationMode = None,
|
|
363
368
|
authentication_creds: tuple[str] = None,
|
|
369
|
+
ssl_redirect: bool = None,
|
|
364
370
|
):
|
|
365
371
|
api_gateway = APIGateway(
|
|
366
372
|
APIGatewayMetadata(
|
|
@@ -377,6 +383,13 @@ class ApplicationRuntime(RemoteRuntime):
|
|
|
377
383
|
),
|
|
378
384
|
)
|
|
379
385
|
|
|
386
|
+
if ssl_redirect is None:
|
|
387
|
+
ssl_redirect = mlrun.mlconf.force_api_gateway_ssl_redirect()
|
|
388
|
+
if ssl_redirect:
|
|
389
|
+
# force ssl redirect so that the application is only accessible via https
|
|
390
|
+
api_gateway.with_force_ssl_redirect()
|
|
391
|
+
|
|
392
|
+
# add authentication if required
|
|
380
393
|
authentication_mode = (
|
|
381
394
|
authentication_mode
|
|
382
395
|
or mlrun.mlconf.function.application.default_authentication_mode
|
mlrun/utils/version/version.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: mlrun
|
|
3
|
-
Version: 1.7.
|
|
3
|
+
Version: 1.7.0rc33
|
|
4
4
|
Summary: Tracking and config of machine learning runs
|
|
5
5
|
Home-page: https://github.com/mlrun/mlrun
|
|
6
6
|
Author: Yaron Haviv
|
|
@@ -46,7 +46,7 @@ Requires-Dist: v3iofs ~=0.1.17
|
|
|
46
46
|
Requires-Dist: storey ~=1.7.20
|
|
47
47
|
Requires-Dist: inflection ~=0.5.0
|
|
48
48
|
Requires-Dist: python-dotenv ~=0.17.0
|
|
49
|
-
Requires-Dist: setuptools ~=
|
|
49
|
+
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
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
mlrun/__init__.py,sha256=y08M1JcKXy5-9_5WaI9fn5aV5BxIQ5QkbduJK0OxWbA,7470
|
|
2
2
|
mlrun/__main__.py,sha256=iAifncsrQQx6ozXXmz7GH1OiNl8PA7KS3TnwlxnHGeo,45890
|
|
3
|
-
mlrun/config.py,sha256=
|
|
3
|
+
mlrun/config.py,sha256=5QrlkkUosFwziSFTtApeB2obpS-gW126lB8y5za7rhM,66103
|
|
4
4
|
mlrun/errors.py,sha256=VpC_imeSz2twRMZZb7u90Zj29z6aO-tCxUHD3ZA_Axw,7465
|
|
5
5
|
mlrun/execution.py,sha256=StasIZWmnbRjXDn5d7VU6DWu1fs_AJQckSiUKlSYL9M,42021
|
|
6
6
|
mlrun/features.py,sha256=m17K_3l9Jktwb9dOwlHLTAPTlemsWrRF7dJhXUX0iJU,15429
|
|
@@ -79,7 +79,7 @@ mlrun/data_types/to_pandas.py,sha256=xPEcQ5_Wb-L1WRhPy8lBbw5HZlPx0PaQOPZISTvrn80
|
|
|
79
79
|
mlrun/datastore/__init__.py,sha256=8WvgHF245fvU9u98ctRqosvEmQ9iAKKIIS_dSgj_fmU,4153
|
|
80
80
|
mlrun/datastore/alibaba_oss.py,sha256=OfQ9AbsJNBFF9DFgUdq38TvKw6qwnHmEcnH-nze6ZZg,4827
|
|
81
81
|
mlrun/datastore/azure_blob.py,sha256=T0IzgBQJxcv8c97VJ1KDayvo_dkxLlgQboa7vcx1WEk,9077
|
|
82
|
-
mlrun/datastore/base.py,sha256=
|
|
82
|
+
mlrun/datastore/base.py,sha256=7H1S2oBEZQz3BFrI1T0JFM2hJA0elKbthhwv0sl5bAA,25942
|
|
83
83
|
mlrun/datastore/datastore.py,sha256=F2i8XI2hkQwf51OjqdFZ8179oHvDfQtaT5pvfkvMV9U,9389
|
|
84
84
|
mlrun/datastore/datastore_profile.py,sha256=ZCU-brdRNXNE8EnknzFljtWjciEJ9sGZnoahFxbdEt4,18940
|
|
85
85
|
mlrun/datastore/dbfs_store.py,sha256=5IkxnFQXkW0fdx-ca5jjQnUdTsTfNdJzMvV31ZpDNrM,6634
|
|
@@ -101,10 +101,10 @@ mlrun/datastore/wasbfs/__init__.py,sha256=s5Ul-0kAhYqFjKDR2X0O2vDGDbLQQduElb32Ev
|
|
|
101
101
|
mlrun/datastore/wasbfs/fs.py,sha256=MnSj7Q4OKA2L55ihCmUnj2t3GA3B77oLMdAw-yxvN9w,6151
|
|
102
102
|
mlrun/db/__init__.py,sha256=WqJ4x8lqJ7ZoKbhEyFqkYADd9P6E3citckx9e9ZLcIU,1163
|
|
103
103
|
mlrun/db/auth_utils.py,sha256=hpg8D2r82oN0BWabuWN04BTNZ7jYMAF242YSUpK7LFM,5211
|
|
104
|
-
mlrun/db/base.py,sha256=
|
|
104
|
+
mlrun/db/base.py,sha256=8GVa4WlswPcUjnidwazRhIjKbaI2aqeQ8MmHr62ih1k,24085
|
|
105
105
|
mlrun/db/factory.py,sha256=ibIrE5QkIIyzDU1FXKrfbc31cZiRLYKDZb8dqCpQwyU,2397
|
|
106
|
-
mlrun/db/httpdb.py,sha256=
|
|
107
|
-
mlrun/db/nopdb.py,sha256
|
|
106
|
+
mlrun/db/httpdb.py,sha256=qy0uERFBfTklXmrRpxCC2dJSv7xtyz1bvP2eK1Yf-xE,183765
|
|
107
|
+
mlrun/db/nopdb.py,sha256=d7vSk_2sfwZGY24w7ucSkoq88fLPDLF137IXabongXU,20791
|
|
108
108
|
mlrun/feature_store/__init__.py,sha256=FhHRc8NdqL_HWpCs7A8dKruxJS5wEm55Gs3dcgBiRUg,1522
|
|
109
109
|
mlrun/feature_store/api.py,sha256=uYheyPkJOVCrz1jivvpGatgy_JBAq0It0XZqPpNVQkE,48699
|
|
110
110
|
mlrun/feature_store/common.py,sha256=DKmoRk04NCS1gv7qZuEUa2-g8WsfR6IWjYctcrqKVlg,12853
|
|
@@ -212,13 +212,13 @@ mlrun/launcher/remote.py,sha256=tGICSfWtvUHeR31mbzy6gqHejmDxjPUgjtxXTWhRubg,7699
|
|
|
212
212
|
mlrun/model_monitoring/__init__.py,sha256=dm5_j0_pwqrdzFwTaEtGnKfv2nVpNaM56nBI-oqLbNU,879
|
|
213
213
|
mlrun/model_monitoring/api.py,sha256=WMxB4MMrsturFwyr1G1CHOddt0d_VSYcNEobjuxkjHg,27815
|
|
214
214
|
mlrun/model_monitoring/application.py,sha256=RJ8HeAPfGO3P2A_dEZYNg60c1wKTADh2YSv8BQ5embg,745
|
|
215
|
-
mlrun/model_monitoring/controller.py,sha256=
|
|
215
|
+
mlrun/model_monitoring/controller.py,sha256=V0hJCcL4N5fQwsE286gUfMyFS8EKUVeg0pOIIHRSthI,27604
|
|
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
218
|
mlrun/model_monitoring/helpers.py,sha256=jD9m_Dte16kDZc1GCXvv-0z-MCel1LRg_6Pn1nwqk7A,11599
|
|
219
219
|
mlrun/model_monitoring/model_endpoint.py,sha256=7VX0cBATqLsA4sSinDzouf41ndxqh2mf5bO9BW0G5Z4,4017
|
|
220
220
|
mlrun/model_monitoring/prometheus.py,sha256=cUR4y73GutJB_pA_VCBDl9YtK4PcIJp2wj2rnLVmYi4,7578
|
|
221
|
-
mlrun/model_monitoring/stream_processing.py,sha256=
|
|
221
|
+
mlrun/model_monitoring/stream_processing.py,sha256=KJXvmVbAQsgLLLxd6kM_KZCInjWzJUSGiss4dMHuSTU,42545
|
|
222
222
|
mlrun/model_monitoring/tracking_policy.py,sha256=sQq956akAQpntkrJwIgFWcEq-JpyVcg0FxgNa4h3V70,5502
|
|
223
223
|
mlrun/model_monitoring/writer.py,sha256=aQ1DAi5XUi1WXXfcSgBQGKiTANT6E61I74abiu_5s8s,9824
|
|
224
224
|
mlrun/model_monitoring/applications/__init__.py,sha256=i793GqYee01mRh_KD6GShvX7UbPBgdJDO4qf9Z3BXEQ,970
|
|
@@ -231,15 +231,15 @@ mlrun/model_monitoring/applications/results.py,sha256=VVlu9Si7Tj2LNJzPQrp4_Qeyh9
|
|
|
231
231
|
mlrun/model_monitoring/db/__init__.py,sha256=6Ic-X3Fh9XLPYMytmevGNSs-Hii1rAjLLoFTSPwTguw,736
|
|
232
232
|
mlrun/model_monitoring/db/stores/__init__.py,sha256=ZScmxeZZ3yZ84MocdDGRtvVIixSo0rAPiuLpavXTgJw,4737
|
|
233
233
|
mlrun/model_monitoring/db/stores/base/__init__.py,sha256=JufJETW3BXzPhFwbRa8dMf7BFGGZKceIWIMgr5x9n9c,599
|
|
234
|
-
mlrun/model_monitoring/db/stores/base/store.py,sha256=
|
|
234
|
+
mlrun/model_monitoring/db/stores/base/store.py,sha256=xaiaUwXDYYV1z6e17Ny9IiE3a7pSiEFg8nffdWHSq0A,7517
|
|
235
235
|
mlrun/model_monitoring/db/stores/sqldb/__init__.py,sha256=6CsTXAxeLbbf8yfCADTaxmiavqwrLEdYFJ-qc5kgDAY,569
|
|
236
|
-
mlrun/model_monitoring/db/stores/sqldb/sql_store.py,sha256=
|
|
236
|
+
mlrun/model_monitoring/db/stores/sqldb/sql_store.py,sha256=0RApL8I9YWBU7-U6D5_WaWwkrUbqixIJjV6iggeAIuA,25198
|
|
237
237
|
mlrun/model_monitoring/db/stores/sqldb/models/__init__.py,sha256=lCiGw9WKPtHAIgrtNS2jyvM5OZvZvogBh76iurNYblg,2453
|
|
238
238
|
mlrun/model_monitoring/db/stores/sqldb/models/base.py,sha256=V2B5WdQM0KHKq0FNDq61q7tkNJ9fNRbxfnxrholKgjk,5352
|
|
239
239
|
mlrun/model_monitoring/db/stores/sqldb/models/mysql.py,sha256=tCzc5ANPxZw7tIPsn9p30woK0_s2HU_FsNzA3hL2wQs,2666
|
|
240
240
|
mlrun/model_monitoring/db/stores/sqldb/models/sqlite.py,sha256=yJJZppbKj3PsOANS_DXAQFFHKX4cQcm6Pz2DoxRiXMk,1104
|
|
241
241
|
mlrun/model_monitoring/db/stores/v3io_kv/__init__.py,sha256=6CsTXAxeLbbf8yfCADTaxmiavqwrLEdYFJ-qc5kgDAY,569
|
|
242
|
-
mlrun/model_monitoring/db/stores/v3io_kv/kv_store.py,sha256=
|
|
242
|
+
mlrun/model_monitoring/db/stores/v3io_kv/kv_store.py,sha256=ACBpi_MTa6ByOheSPM6X_tsG4AAyqd65SNcnl3lRrYc,26290
|
|
243
243
|
mlrun/model_monitoring/db/tsdb/__init__.py,sha256=_Mfa4gguX86OS1fQCxnt_QSaNh603-zPYAK8NjYk7t8,4040
|
|
244
244
|
mlrun/model_monitoring/db/tsdb/base.py,sha256=sESs5U71a-iJKI-999sAloYH-mjOR3uSEQG7BxRs6No,13134
|
|
245
245
|
mlrun/model_monitoring/db/tsdb/helpers.py,sha256=0oUXc4aUkYtP2SGP6jTb3uPPKImIUsVsrb9otX9a7O4,1189
|
|
@@ -274,7 +274,7 @@ mlrun/platforms/iguazio.py,sha256=1h5BpdAEQJBg2vIt7ySjUADU0ip5OkaMYr0_VREi9ys,13
|
|
|
274
274
|
mlrun/projects/__init__.py,sha256=Lv5rfxyXJrw6WGOWJKhBz66M6t3_zsNMCfUD6waPwx4,1153
|
|
275
275
|
mlrun/projects/operations.py,sha256=Y-NwrIFXpltUXcDLDQ9b33NY_r4TOPvJgO4F-xSuzoM,19252
|
|
276
276
|
mlrun/projects/pipelines.py,sha256=Xc9tQSBBPEg1Yxn-b4RseFdfO7SvrYC-ekdw_hAcPH8,40006
|
|
277
|
-
mlrun/projects/project.py,sha256=
|
|
277
|
+
mlrun/projects/project.py,sha256=pmZuqi24YV9E14QlllwhEtCTkthSF5wkI9NlQXllH7U,184395
|
|
278
278
|
mlrun/runtimes/__init__.py,sha256=0-tYDkew-Cr4DM-wztvMbzDA5xq385Jjo-GrtO_84Sc,8741
|
|
279
279
|
mlrun/runtimes/base.py,sha256=g716uF0BpL6vLe75bNqpJ2SjtYW_tQqICl46d_4ljHs,37633
|
|
280
280
|
mlrun/runtimes/daskjob.py,sha256=JfK8rSPY-0SYnLJdtp_ts3oKyad0pA98th-2VntYzK0,19387
|
|
@@ -294,12 +294,12 @@ mlrun/runtimes/mpijob/__init__.py,sha256=V_1gQD1VHa0Qvjqgyv8RLouH27Sy9YTwj2ZG62o
|
|
|
294
294
|
mlrun/runtimes/mpijob/abstract.py,sha256=kDWo-IY1FKLZhI30j38Xx9HMhlUvHezfd1DT2ShoxZY,9161
|
|
295
295
|
mlrun/runtimes/mpijob/v1.py,sha256=1XQZC7AIMGX_AQCbApcwpH8I7y39-v0v2O35MvxjXoo,3213
|
|
296
296
|
mlrun/runtimes/nuclio/__init__.py,sha256=gx1kizzKv8pGT5TNloN1js1hdbxqDw3rM90sLVYVffY,794
|
|
297
|
-
mlrun/runtimes/nuclio/api_gateway.py,sha256=
|
|
297
|
+
mlrun/runtimes/nuclio/api_gateway.py,sha256=CTYPcdocMrQQiCk08jbC_nNF0jlwTQ2WKxRsC_fz_ms,25155
|
|
298
298
|
mlrun/runtimes/nuclio/function.py,sha256=8RhCvwC_24eSxFaL7Yb5tiRiJaV4H_xTmJ0QiWNIPw8,50317
|
|
299
299
|
mlrun/runtimes/nuclio/nuclio.py,sha256=sLK8KdGO1LbftlL3HqPZlFOFTAAuxJACZCVl1c0Ha6E,2942
|
|
300
300
|
mlrun/runtimes/nuclio/serving.py,sha256=ucSDp2YbaKEFpuCxCTEPwOEPngPkuP-TRviHJ9J4D60,29866
|
|
301
301
|
mlrun/runtimes/nuclio/application/__init__.py,sha256=rRs5vasy_G9IyoTpYIjYDafGoL6ifFBKgBtsXn31Atw,614
|
|
302
|
-
mlrun/runtimes/nuclio/application/application.py,sha256=
|
|
302
|
+
mlrun/runtimes/nuclio/application/application.py,sha256=WxUKsW46rbezvXZp0Q3B9TAa8hP2kcyz2SgOxA-nRYw,19669
|
|
303
303
|
mlrun/runtimes/nuclio/application/reverse_proxy.go,sha256=JIIYae6bXzCLf3jXuu49KWPQYoXr_FDQ2Rbo1OWKAd0,3150
|
|
304
304
|
mlrun/runtimes/sparkjob/__init__.py,sha256=_KPvk0qefeLtHO6lxQE_AMOGiMTG_OT48eRCE4Z2ldw,709
|
|
305
305
|
mlrun/runtimes/sparkjob/spark3job.py,sha256=1bNRy72Migrh_ZASQOx7UlSZTbB-xpNc76sz4kfc9UM,41191
|
|
@@ -342,11 +342,11 @@ mlrun/utils/notifications/notification/ipython.py,sha256=ZtVL30B_Ha0VGoo4LxO-voT
|
|
|
342
342
|
mlrun/utils/notifications/notification/slack.py,sha256=wqpFGr5BTvFO5KuUSzFfxsgmyU1Ohq7fbrGeNe9TXOk,7006
|
|
343
343
|
mlrun/utils/notifications/notification/webhook.py,sha256=y8Hc3rlR48M2W76lfI2knEBxlD_T6k9P9kXD_vqFnfg,4472
|
|
344
344
|
mlrun/utils/version/__init__.py,sha256=7kkrB7hEZ3cLXoWj1kPoDwo4MaswsI2JVOBpbKgPAgc,614
|
|
345
|
-
mlrun/utils/version/version.json,sha256=
|
|
345
|
+
mlrun/utils/version/version.json,sha256=bF07SUc3kt0cxWLc2toAHKMH3fldu-Xj7OtOTIRrx44,89
|
|
346
346
|
mlrun/utils/version/version.py,sha256=eEW0tqIAkU9Xifxv8Z9_qsYnNhn3YH7NRAfM-pPLt1g,1878
|
|
347
|
-
mlrun-1.7.
|
|
348
|
-
mlrun-1.7.
|
|
349
|
-
mlrun-1.7.
|
|
350
|
-
mlrun-1.7.
|
|
351
|
-
mlrun-1.7.
|
|
352
|
-
mlrun-1.7.
|
|
347
|
+
mlrun-1.7.0rc33.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
348
|
+
mlrun-1.7.0rc33.dist-info/METADATA,sha256=_hmgPc5EaCBTVPlT9ULORtjuNezfTWuFa5_fK8uGiiM,19534
|
|
349
|
+
mlrun-1.7.0rc33.dist-info/WHEEL,sha256=Wyh-_nZ0DJYolHNn1_hMa4lM7uDedD_RGVwbmTjyItk,91
|
|
350
|
+
mlrun-1.7.0rc33.dist-info/entry_points.txt,sha256=1Owd16eAclD5pfRCoJpYC2ZJSyGNTtUr0nCELMioMmU,46
|
|
351
|
+
mlrun-1.7.0rc33.dist-info/top_level.txt,sha256=NObLzw3maSF9wVrgSeYBv-fgnHkAJ1kEkh12DLdd5KM,6
|
|
352
|
+
mlrun-1.7.0rc33.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|