forked from opendatahub-io/opendatahub-tests
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinference_utils.py
More file actions
728 lines (590 loc) · 24.7 KB
/
inference_utils.py
File metadata and controls
728 lines (590 loc) · 24.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
import json
import re
import shlex
from contextlib import contextmanager
from http import HTTPStatus
from json import JSONDecodeError
from string import Template
from typing import Any, Optional, Generator
from urllib.parse import urlparse
from kubernetes.dynamic import DynamicClient
from ocp_resources.inference_service import InferenceService
from ocp_resources.resource import get_client
from ocp_resources.service import Service
from pyhelper_utils.shell import run_command
from simple_logger.logger import get_logger
from timeout_sampler import TimeoutWatch, retry
from utilities.exceptions import InferenceResponseError, InvalidStorageArgumentError
from utilities.infra import (
get_inference_serving_runtime,
get_model_route,
get_pods_by_isvc_label,
get_services_by_isvc_label,
wait_for_inference_deployment_replicas,
verify_no_failed_pods,
)
from utilities.certificates_utils import get_ca_bundle
from utilities.constants import (
KServeDeploymentType,
Labels,
ModelName,
Protocols,
HTTPRequest,
Annotations,
Timeout,
)
import portforward
LOGGER = get_logger(name=__name__)
class Inference:
ALL_TOKENS: str = "all-tokens"
STREAMING: str = "streaming"
INFER: str = "infer"
MNIST: str = f"infer-{ModelName.MNIST}"
def __init__(self, inference_service: InferenceService):
"""
Args:
inference_service: InferenceService object
"""
self.inference_service = inference_service
self.deployment_mode = self.get_deployment_type()
self.runtime = get_inference_serving_runtime(isvc=self.inference_service)
self.visibility_exposed = self.is_service_exposed()
self.inference_url = self.get_inference_url()
def get_deployment_type(self) -> str:
"""
Get deployment type
Returns:
deployment type
"""
if deployment_type := self.inference_service.instance.metadata.annotations.get(
"serving.kserve.io/deploymentMode"
):
return deployment_type
return self.inference_service.instance.status.deploymentMode
def get_inference_url(self) -> str:
"""
Get inference url
Returns:
inference url
Raises:
ValueError: If the inference url is not found
"""
if self.visibility_exposed:
if self.deployment_mode == KServeDeploymentType.SERVERLESS and (
url := self.inference_service.instance.status.components.predictor.url
):
return urlparse(url=url).netloc
elif self.deployment_mode == KServeDeploymentType.RAW_DEPLOYMENT and (
url := self.inference_service.instance.status.url
):
return urlparse(url=url).netloc
elif self.deployment_mode == KServeDeploymentType.MODEL_MESH:
route = get_model_route(client=self.inference_service.client, isvc=self.inference_service)
return route.instance.spec.host
else:
raise ValueError(f"{self.inference_service.name}: No url found for inference")
else:
return "localhost"
def is_service_exposed(self) -> bool:
"""
Check if the service is exposed or internal
Returns:
bool: True if the service is exposed, False otherwise
"""
labels = self.inference_service.labels
if self.deployment_mode in KServeDeploymentType.RAW_DEPLOYMENT:
return labels and labels.get(Labels.Kserve.NETWORKING_KSERVE_IO) == Labels.Kserve.EXPOSED
if self.deployment_mode == KServeDeploymentType.SERVERLESS:
if labels and labels.get("networking.knative.dev/visibility") == "cluster-local":
return False
else:
return True
if self.deployment_mode == KServeDeploymentType.MODEL_MESH:
if self.runtime:
_annotations = self.runtime.instance.metadata.annotations
return _annotations and _annotations.get("enable-route") == "true"
return False
class UserInference(Inference):
def __init__(
self,
protocol: str,
inference_type: str,
inference_config: dict[str, Any],
**kwargs: Any,
) -> None:
"""
User inference object
Args:
protocol (str): inference protocol
inference_type (str): inference type
inference_config (dict[str, Any]): inference config
**kwargs ():
"""
super().__init__(**kwargs)
self.protocol = protocol
self.inference_type = inference_type
self.inference_config = inference_config
self.runtime_config = self.get_runtime_config()
def get_runtime_config(self) -> dict[str, Any]:
"""
Get runtime config from inference config based on inference type and protocol
Returns:
dict[str, Any]: runtime config
Raises:
ValueError: If the runtime config is not found
"""
if inference_type := self.inference_config.get(self.inference_type):
protocol = Protocols.HTTP if self.protocol in Protocols.TCP_PROTOCOLS else self.protocol
if data := inference_type.get(protocol):
return data
else:
raise ValueError(f"Protocol {protocol} not supported.\nSupported protocols are {self.inference_type}")
else:
raise ValueError(
f"Inference type {inference_type} not supported.\nSupported inference types are {self.inference_config}"
)
@property
def inference_response_text_key_name(self) -> Optional[str]:
"""
Get inference response text key name from runtime config
Returns:
Optional[str]: inference response text key name
"""
return self.runtime_config["response_fields_map"].get("response_output")
@property
def inference_response_key_name(self) -> str:
"""
Get inference response key name from runtime config
Returns:
str: inference response key name
"""
return self.runtime_config["response_fields_map"].get("response", "output")
def get_inference_body(
self,
model_name: str,
inference_input: Optional[Any] = None,
use_default_query: bool = False,
) -> str:
"""
Get inference body from runtime config
Args:
model_name (str): inference model name
inference_input (Any): inference input
use_default_query (bool): use default query from inference config
Returns:
str: inference body
Raises:
ValueError: If inference input is not provided
"""
if not use_default_query and inference_input is None:
raise ValueError("Either pass `inference_input` or set `use_default_query` to True")
if use_default_query:
default_query_config = self.inference_config.get("default_query_model")
if not default_query_config:
raise ValueError(f"Missing default query config for {model_name}")
if self.inference_config.get("support_multi_default_queries"):
inference_input = default_query_config.get(self.inference_type).get("query_input")
else:
inference_input = default_query_config.get("query_input")
if not inference_input:
raise ValueError(f"Missing default query dict for {model_name}")
if isinstance(inference_input, list):
inference_input = json.dumps(inference_input)
return Template(self.runtime_config["body"]).safe_substitute(
model_name=model_name,
query_input=inference_input,
)
def get_inference_endpoint_url(self) -> str:
"""
Get inference endpoint url from runtime config
Returns:
str: inference endpoint url
Raises:
ValueError: If the protocol is not supported
"""
endpoint = Template(self.runtime_config["endpoint"]).safe_substitute(model_name=self.inference_service.name)
if self.protocol in Protocols.TCP_PROTOCOLS:
return f"{self.protocol}://{self.inference_url}/{endpoint}"
elif self.protocol == "grpc":
return f"{self.inference_url}{':443' if self.visibility_exposed else ''} {endpoint}"
else:
raise ValueError(f"Protocol {self.protocol} not supported")
def generate_command(
self,
model_name: str,
inference_input: Optional[Any] = None,
use_default_query: bool = False,
insecure: bool = False,
token: Optional[str] = None,
) -> str:
"""
Generate command to run inference
Args:
model_name (str): inference model name
inference_input (Any): inference input
use_default_query (bool): use default query from inference config
insecure (bool): Use insecure connection
token (str): Token to use for authentication
Returns:
str: inference command
Raises:
ValueError: If the protocol is not supported
"""
body = self.get_inference_body(
model_name=model_name,
inference_input=inference_input,
use_default_query=use_default_query,
)
header = f"'{Template(self.runtime_config['header']).safe_substitute(model_name=model_name)}'"
url = self.get_inference_endpoint_url()
if self.protocol in Protocols.TCP_PROTOCOLS:
cmd_exec = "curl -i -s "
elif self.protocol == "grpc":
cmd_exec = "grpcurl -connect-timeout 10 "
if self.deployment_mode == KServeDeploymentType.RAW_DEPLOYMENT:
cmd_exec += " --plaintext "
else:
raise ValueError(f"Protocol {self.protocol} not supported")
cmd = f"{cmd_exec} -d '{body}' -H {header}"
if token:
cmd += f" {HTTPRequest.AUTH_HEADER.format(token=token)}"
if insecure:
cmd += " --insecure"
else:
# admin client is needed to check if cluster is managed
_client = get_client()
if ca := get_ca_bundle(client=_client, deployment_mode=self.deployment_mode):
cmd += f" --cacert {ca} "
else:
LOGGER.warning("No CA bundle found, using insecure access")
cmd += " --insecure"
if cmd_args := self.runtime_config.get("args"):
cmd += f" {cmd_args} "
cmd += f" {url}"
return cmd
def run_inference_flow(
self,
model_name: str,
inference_input: Optional[str] = None,
use_default_query: bool = False,
insecure: bool = False,
token: Optional[str] = None,
) -> dict[str, Any]:
"""
Run inference full flow - generate command and run it
Args:
model_name (str): inference model name
inference_input (str): inference input
use_default_query (bool): use default query from inference config
insecure (bool): Use insecure connection
token (str): Token to use for authentication
Returns:
dict: inference response dict with response headers and response output
"""
cmd = self.generate_command(
model_name=model_name,
inference_input=inference_input,
use_default_query=use_default_query,
insecure=insecure,
token=token,
)
out = self.run_inference(cmd=cmd)
try:
if self.protocol in Protocols.TCP_PROTOCOLS:
# with curl response headers are also returned
response_dict: dict[str, Any] = {}
response_headers: list[str] = []
if "content-type: application/json" in out.lower():
if response_re := re.match(r"(.*)\n\{", out, re.MULTILINE | re.DOTALL):
response_headers = response_re.group(1).splitlines()
if output_re := re.search(r"(\{.*)(?s:.*)(\})", out, re.MULTILINE | re.DOTALL):
output = re.sub(r"\n\s*", "", output_re.group())
response_dict["output"] = json.loads(output)
else:
response_headers = out.splitlines()[:-2]
response_dict["output"] = json.loads(response_headers[-1])
for line in response_headers:
if line:
header_name, header_value = re.split(": | ", line.strip(), maxsplit=1)
response_dict[header_name] = header_value
return response_dict
else:
return json.loads(out)
except JSONDecodeError:
return {"output": out}
@retry(wait_timeout=Timeout.TIMEOUT_30SEC, sleep=5)
def run_inference(self, cmd: str) -> str:
"""
Run inference command
Args:
cmd (str): inference command
Returns:
str: inference output
Raises:
ValueError: If inference fails
"""
# For internal inference, we need to use port forwarding to the service
if not self.visibility_exposed:
svc = get_services_by_isvc_label(
client=self.inference_service.client,
isvc=self.inference_service,
runtime_name=self.runtime.name,
)[0]
port = self.get_target_port(svc=svc)
cmd = cmd.replace("localhost", f"localhost:{port}")
with portforward.forward(
pod_or_service=svc.name,
namespace=svc.namespace,
from_port=port,
to_port=port,
):
res, out, err = run_command(command=shlex.split(cmd), verify_stderr=False, check=False)
else:
res, out, err = run_command(command=shlex.split(cmd), verify_stderr=False, check=False)
if res:
if f"http/1.0 {HTTPStatus.SERVICE_UNAVAILABLE}" in out.lower():
raise InferenceResponseError(
f"The Route for {self.get_inference_url()} is not ready yet. "
f"Got {HTTPStatus.SERVICE_UNAVAILABLE} error."
)
else:
raise ValueError(f"Inference failed with error: {err}\nOutput: {out}\nCommand: {cmd}")
LOGGER.info(f"Inference output:\n{out}")
return out
def get_target_port(self, svc: Service) -> int:
"""
Get target port for inference when using port forwarding
Args:
svc (Service): Service object
Returns:
int: Target port
Raises:
ValueError: If target port is not found in service
"""
if self.protocol in Protocols.ALL_SUPPORTED_PROTOCOLS:
svc_protocol = "TCP"
else:
svc_protocol = self.protocol
ports = svc.instance.spec.ports
# For multi node with headless service, we need to get the pod to get the port
# TODO: check behavior for both normal and headless service
if self.inference_service.instance.spec.predictor.workerSpec and not self.visibility_exposed:
pod = get_pods_by_isvc_label(
client=self.inference_service.client,
isvc=self.inference_service,
runtime_name=self.runtime.name,
)[0]
if ports := pod.instance.spec.containers[0].ports:
return ports[0].containerPort
if not ports:
raise ValueError(f"Service {svc.name} has no ports")
for port in ports:
svc_port = port.targetPort if isinstance(port.targetPort, int) else port.port
if (
self.deployment_mode == KServeDeploymentType.MODEL_MESH
and port.protocol.lower() == svc_protocol.lower()
and port.name == self.protocol
):
return svc_port
elif (
self.deployment_mode
in (
KServeDeploymentType.RAW_DEPLOYMENT,
KServeDeploymentType.SERVERLESS,
)
and port.protocol.lower() == svc_protocol.lower()
):
return svc_port
raise ValueError(f"No port found for protocol {self.protocol} service {svc.instance}")
@contextmanager
def create_isvc(
client: DynamicClient,
name: str,
namespace: str,
model_format: str,
runtime: str,
storage_uri: str | None = None,
storage_key: str | None = None,
storage_path: str | None = None,
wait: bool = True,
enable_auth: bool = False,
deployment_mode: str | None = None,
external_route: bool | None = None,
model_service_account: str | None = None,
min_replicas: int | None = None,
max_replicas: int | None = None,
argument: list[str] | None = None,
resources: dict[str, Any] | None = None,
volumes: dict[str, Any] | None = None,
volumes_mounts: dict[str, Any] | None = None,
model_version: str | None = None,
wait_for_predictor_pods: bool = True,
autoscaler_mode: str | None = None,
multi_node_worker_spec: dict[str, int] | None = None,
timeout: int = Timeout.TIMEOUT_15MIN,
scale_metric: str | None = None,
scale_target: int | None = None,
model_env_variables: list[dict[str, str]] | None = None,
teardown: bool = True,
) -> Generator[InferenceService, Any, Any]:
"""
Create InferenceService object.
Args:
client (DynamicClient): DynamicClient object
name (str): InferenceService name
namespace (str): Namespace name
deployment_mode (str): Deployment mode
model_format (str): Model format
runtime (str): ServingRuntime name
storage_uri (str): Storage URI
storage_key (str): Storage key
storage_path (str): Storage path
wait (bool): Wait for InferenceService to be ready
enable_auth (bool): Enable authentication
external_route (bool): External route
model_service_account (str): Model service account
min_replicas (int): Minimum replicas
max_replicas (int): Maximum replicas
argument (list[str]): Argument
resources (dict[str, Any]): Resources
volumes (dict[str, Any]): Volumes
volumes_mounts (dict[str, Any]): Volumes mounts
model_version (str): Model version
wait_for_predictor_pods (bool): Wait for predictor pods
autoscaler_mode (str): Autoscaler mode
multi_node_worker_spec (dict[str, int]): Multi node worker spec
timeout (int): Time to wait for the model inference,deployment to be ready
scale_metric (str): Scale metric
scale_target (int): Scale target
model_env_variables (list[dict[str, str]]): Model environment variables
teardown (bool): Teardown
Yields:
InferenceService: InferenceService object
"""
labels: dict[str, str] = {}
predictor_dict: dict[str, Any] = {
"model": {
"modelFormat": {"name": model_format},
"version": model_version,
"runtime": runtime,
},
}
if min_replicas is not None:
predictor_dict["minReplicas"] = min_replicas
if max_replicas is not None:
predictor_dict["maxReplicas"] = max_replicas
if model_version:
predictor_dict["model"]["modelFormat"]["version"] = model_version
_check_storage_arguments(storage_uri=storage_uri, storage_key=storage_key, storage_path=storage_path)
if storage_uri:
predictor_dict["model"]["storageUri"] = storage_uri
elif storage_key:
predictor_dict["model"]["storage"] = {"key": storage_key, "path": storage_path}
if model_service_account:
predictor_dict["serviceAccountName"] = model_service_account
if min_replicas:
predictor_dict["minReplicas"] = min_replicas
if argument:
predictor_dict["model"]["args"] = argument
if resources:
predictor_dict["model"]["resources"] = resources
if volumes_mounts:
predictor_dict["model"]["volumeMounts"] = volumes_mounts
if volumes:
predictor_dict["volumes"] = volumes
if model_env_variables:
predictor_dict["model"]["env"] = model_env_variables
_annotations: dict[str, str] = {}
if deployment_mode:
_annotations = {Annotations.KserveIo.DEPLOYMENT_MODE: deployment_mode}
if deployment_mode == KServeDeploymentType.SERVERLESS:
_annotations.update({
"serving.knative.openshift.io/enablePassthrough": "true",
"sidecar.istio.io/inject": "true",
"sidecar.istio.io/rewriteAppHTTPProbers": "true",
})
if enable_auth:
# model mesh auth is set in ServingRuntime
if deployment_mode == KServeDeploymentType.SERVERLESS:
_annotations[Annotations.KserveAuth.SECURITY] = "true"
elif deployment_mode == KServeDeploymentType.RAW_DEPLOYMENT:
_annotations[Annotations.KserveAuth.SECURITY] = "true"
# default to True if deployment_mode is Serverless (default behavior of Serverless) if was not provided by the user
# model mesh external route is set in ServingRuntime
if external_route is None and deployment_mode == KServeDeploymentType.SERVERLESS:
external_route = True
if external_route and deployment_mode == KServeDeploymentType.RAW_DEPLOYMENT:
labels[Labels.Kserve.NETWORKING_KSERVE_IO] = Labels.Kserve.EXPOSED
if deployment_mode == KServeDeploymentType.SERVERLESS and external_route is False:
labels["networking.knative.dev/visibility"] = "cluster-local"
if autoscaler_mode:
_annotations["serving.kserve.io/autoscalerClass"] = autoscaler_mode
if multi_node_worker_spec is not None:
predictor_dict["workerSpec"] = multi_node_worker_spec
if scale_metric is not None:
predictor_dict["scaleMetric"] = scale_metric
if scale_target is not None:
predictor_dict["scaleTarget"] = scale_target
with InferenceService(
client=client,
name=name,
namespace=namespace,
annotations=_annotations,
predictor=predictor_dict,
label=labels,
teardown=teardown,
) as inference_service:
timeout_watch = TimeoutWatch(timeout=timeout)
if wait_for_predictor_pods:
verify_no_failed_pods(
client=client,
isvc=inference_service,
runtime_name=runtime,
timeout=timeout_watch.remaining_time(),
)
wait_for_inference_deployment_replicas(
client=client,
isvc=inference_service,
runtime_name=runtime,
timeout=timeout_watch.remaining_time(),
)
if wait:
# Modelmesh 2nd server in the ns will fail to be Ready; isvc needs to be re-applied
if deployment_mode == KServeDeploymentType.MODEL_MESH:
for isvc in InferenceService.get(dyn_client=client, namespace=namespace):
_runtime = get_inference_serving_runtime(isvc=isvc)
isvc_annotations = isvc.instance.metadata.annotations
if (
_runtime.name != runtime
and isvc_annotations
and isvc_annotations.get(Annotations.KserveIo.DEPLOYMENT_MODE)
== KServeDeploymentType.MODEL_MESH
):
LOGGER.warning(
"Bug RHOAIENG-13636 - re-creating isvc if there's already a modelmesh isvc in the namespace"
)
inference_service.clean_up()
inference_service.deploy()
break
inference_service.wait_for_condition(
condition=inference_service.Condition.READY,
status=inference_service.Condition.Status.TRUE,
timeout=timeout_watch.remaining_time(),
)
yield inference_service
def _check_storage_arguments(
storage_uri: Optional[str],
storage_key: Optional[str],
storage_path: Optional[str],
) -> None:
"""
Check if storage_uri, storage_key and storage_path are valid.
Args:
storage_uri (str): URI of the storage.
storage_key (str): Key of the storage.
storage_path (str): Path of the storage.
Raises:
InvalidStorageArgumentError: If storage_uri, storage_key and storage_path are not valid.
"""
if (storage_uri and storage_path) or (not storage_uri and not storage_key) or (storage_key and not storage_path):
raise InvalidStorageArgumentError(storage_uri=storage_uri, storage_key=storage_key, storage_path=storage_path)