-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
Copy pathclient.py
1786 lines (1546 loc) · 69.5 KB
/
client.py
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
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Copyright 2022 The Kubeflow Authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""The SDK client for Kubeflow Pipelines API."""
import copy
import dataclasses
import datetime
import json
import logging
import os
import re
import tarfile
import tempfile
import time
from types import ModuleType
from typing import Any, Dict, List, Optional, TextIO
import warnings
import zipfile
from google.protobuf import json_format
from kfp import compiler
from kfp.client import auth
from kfp.client import set_volume_credentials
from kfp.client.token_credentials_base import TokenCredentialsBase
from kfp.dsl import base_component
from kfp.pipeline_spec import pipeline_spec_pb2
import kfp_server_api
import yaml
# Operators on scalar values. Only applies to one of |int_value|,
# |long_value|, |string_value| or |timestamp_value|.
_FILTER_OPERATIONS = {
'EQUALS': 1,
'NOT_EQUALS': 2,
'GREATER_THAN': 3,
'GREATER_THAN_EQUALS': 5,
'LESS_THAN': 6,
'LESS_THAN_EQUALS': 7,
'IN': 8,
'IS_SUBSTRING': 9,
}
KF_PIPELINES_ENDPOINT_ENV = 'KF_PIPELINES_ENDPOINT'
KF_PIPELINES_UI_ENDPOINT_ENV = 'KF_PIPELINES_UI_ENDPOINT'
KF_PIPELINES_DEFAULT_EXPERIMENT_NAME = 'KF_PIPELINES_DEFAULT_EXPERIMENT_NAME'
KF_PIPELINES_OVERRIDE_EXPERIMENT_NAME = 'KF_PIPELINES_OVERRIDE_EXPERIMENT_NAME'
KF_PIPELINES_IAP_OAUTH2_CLIENT_ID_ENV = 'KF_PIPELINES_IAP_OAUTH2_CLIENT_ID'
KF_PIPELINES_APP_OAUTH2_CLIENT_ID_ENV = 'KF_PIPELINES_APP_OAUTH2_CLIENT_ID'
KF_PIPELINES_APP_OAUTH2_CLIENT_SECRET_ENV = 'KF_PIPELINES_APP_OAUTH2_CLIENT_SECRET'
@dataclasses.dataclass
class _PipelineDoc:
pipeline_spec: pipeline_spec_pb2.PipelineSpec
platform_spec: pipeline_spec_pb2.PlatformSpec
def to_dict(self) -> dict:
if self.platform_spec == pipeline_spec_pb2.PlatformSpec():
return json_format.MessageToDict(self.pipeline_spec)
else:
return {
'pipeline_spec': json_format.MessageToDict(self.pipeline_spec),
'platform_spec': json_format.MessageToDict(self.platform_spec),
}
@dataclasses.dataclass
class _JobConfig:
pipeline_spec: dict
pipeline_version_reference: kfp_server_api.V2beta1PipelineVersionReference
runtime_config: kfp_server_api.V2beta1RuntimeConfig
class RunPipelineResult:
def __init__(self, client: 'Client',
run_info: kfp_server_api.V2beta1Run) -> None:
self._client = client
self.run_info = run_info
self.run_id = run_info.run_id
def wait_for_run_completion(self, timeout=None):
timeout = timeout or datetime.timedelta.max
return self._client.wait_for_run_completion(self.run_id, timeout)
def __repr__(self):
return f'RunPipelineResult(run_id={self.run_id})'
class Client:
"""The KFP SDK client for the Kubeflow Pipelines backend API.
Args:
host: Host name to use to talk to Kubeflow Pipelines. If not set,
the in-cluster service DNS name will be used, which only works if
the current environment is a pod in the same cluster (such as a
Jupyter instance spawned by Kubeflow's JupyterHub). (`More information on connecting. <https://www.kubeflow.org/docs/components/pipelines/user-guides/core-functions/connect-api/>`_)
client_id: Client ID used by Identity-Aware Proxy.
namespace: Kubernetes namespace to use. Used for multi-user deployments. For single-user deployments, this should be left as ``None``.
other_client_id: Client ID used to obtain the auth codes and refresh
tokens (`reference <https://cloud.google.com/iap/docs/authentication-howto#authenticating_from_a_desktop_app>`_).
other_client_secret: Client secret used to obtain the auth codes and
refresh tokens.
existing_token: Authentication token to pass in directly. Used in cases where the token is
generated from outside the SDK.
cookies: CookieJar object containing cookies that will be passed to the
Pipelines API.
proxy: HTTP or HTTPS proxy server.
ssl_ca_cert: Certification for proxy.
kube_context: kubectl context to use. Must be a context listed in the kubeconfig file. Defaults to the current-context set within kubeconfig.
credentials: ``TokenCredentialsBase`` object which provides the logic to
populate the requests with credentials to authenticate against the
API server.
ui_host: Base URL to use to open the Kubeflow Pipelines UI. This is used
when running the client from a notebook to generate and print links.
verify_ssl: Whether to verify the server's TLS certificate.
"""
# in-cluster DNS name of the pipeline service
_IN_CLUSTER_DNS_NAME = 'ml-pipeline.{}.svc.cluster.local:8888'
_KUBE_PROXY_PATH = 'api/v1/namespaces/{}/services/ml-pipeline:http/proxy/'
# Auto populated path in pods
# https://kubernetes.io/docs/tasks/access-application-cluster/access-cluster/#accessing-the-api-from-a-pod
# https://kubernetes.io/docs/reference/access-authn-authz/service-accounts-admin/#serviceaccount-admission-controller
_NAMESPACE_PATH = '/var/run/secrets/kubernetes.io/serviceaccount/namespace'
_LOCAL_KFP_CONTEXT = os.path.expanduser('~/.config/kfp/context.json')
# TODO: Wrap the configurations for different authentication methods.
def __init__(
self,
host: Optional[str] = None,
client_id: Optional[str] = None,
namespace: str = 'kubeflow',
other_client_id: Optional[str] = None,
other_client_secret: Optional[str] = None,
existing_token: Optional[str] = None,
cookies: Optional[str] = None,
proxy: Optional[str] = None,
ssl_ca_cert: Optional[str] = None,
kube_context: Optional[str] = None,
credentials: Optional[TokenCredentialsBase] = None,
ui_host: Optional[str] = None,
verify_ssl: Optional[bool] = None,
) -> None:
"""Create a new instance of kfp client."""
warnings.warn(
'This client only works with Kubeflow Pipeline v2.0.0-beta.2 '
'and later versions.',
category=FutureWarning)
host = host or os.environ.get(KF_PIPELINES_ENDPOINT_ENV)
self._uihost = os.environ.get(KF_PIPELINES_UI_ENDPOINT_ENV, ui_host or
host)
client_id = client_id or os.environ.get(
KF_PIPELINES_IAP_OAUTH2_CLIENT_ID_ENV)
other_client_id = other_client_id or os.environ.get(
KF_PIPELINES_APP_OAUTH2_CLIENT_ID_ENV)
other_client_secret = other_client_secret or os.environ.get(
KF_PIPELINES_APP_OAUTH2_CLIENT_SECRET_ENV)
config = self._load_config(host, client_id, namespace, other_client_id,
other_client_secret, existing_token, proxy,
ssl_ca_cert, kube_context, credentials,
verify_ssl)
# Save the loaded API client configuration, as a reference if update is
# needed.
self._load_context_setting_or_default()
# If custom namespace provided, overwrite the loaded or default one in
# context settings for current client instance
if namespace != 'kubeflow':
self._context_setting['namespace'] = namespace
self._existing_config = config
if cookies is None:
cookies = self._context_setting.get('client_authentication_cookie')
api_client = kfp_server_api.ApiClient(
config,
cookie=cookies,
header_name=self._context_setting.get(
'client_authentication_header_name'),
header_value=self._context_setting.get(
'client_authentication_header_value'))
_add_generated_apis(self, kfp_server_api, api_client)
self._recurring_run_api = kfp_server_api.RecurringRunServiceApi(
api_client)
self._run_api = kfp_server_api.RunServiceApi(api_client)
self._experiment_api = kfp_server_api.ExperimentServiceApi(api_client)
self._pipelines_api = kfp_server_api.PipelineServiceApi(api_client)
self._upload_api = kfp_server_api.PipelineUploadServiceApi(api_client)
self._healthz_api = kfp_server_api.HealthzServiceApi(api_client)
if not self._context_setting['namespace'] and self.get_kfp_healthz(
).multi_user is True:
try:
with open(Client._NAMESPACE_PATH, 'r') as f:
current_namespace = f.read()
self.set_user_namespace(current_namespace)
except FileNotFoundError:
logging.info(
'Failed to automatically set namespace.', exc_info=False)
def _load_config(
self,
host: Optional[str],
client_id: Optional[str],
namespace: str,
other_client_id: Optional[str],
other_client_secret: Optional[str],
existing_token: Optional[str],
proxy: Optional[str],
ssl_ca_cert: Optional[str],
kube_context: Optional[str],
credentials: Optional[TokenCredentialsBase],
verify_ssl: Optional[bool],
) -> kfp_server_api.Configuration:
config = kfp_server_api.Configuration()
if proxy:
# https://github.com/kubeflow/pipelines/blob/c6ac5e0b1fd991e19e96419f0f508ec0a4217c29/backend/api/python_http_client/kfp_server_api/rest.py#L100
config.proxy = proxy
if verify_ssl is not None:
config.verify_ssl = verify_ssl
if ssl_ca_cert:
config.ssl_ca_cert = ssl_ca_cert
host = host or ''
# Defaults to 'https' if host does not contain 'http' or 'https' protocol.
if host and not host.startswith('http'):
warnings.warn(
f'The host {host} does not contain the "http" or "https" protocol. Defaults to "https".'
)
host = 'https://' + host
# Preprocess the host endpoint to prevent some common user mistakes.
if not client_id:
# always preserving the protocol (http://localhost requires it)
host = host.rstrip('/')
if host:
config.host = host
token = None
# "existing_token" is designed to accept token generated outside of SDK.
#
# https://cloud.google.com/functions/docs/securing/function-identity
# https://cloud.google.com/endpoints/docs/grpc/service-account-authentication
#
# Here is an example.
#
# import requests
# import kfp
#
# def get_access_token():
# url = 'http://metadata.google.internal/computeMetadata/v1/instance/service-accounts/default/token'
# r = requests.get(url, headers={'Metadata-Flavor': 'Google'})
# r.raise_for_status()
# access_token = r.json()['access_token']
# return access_token
#
# client = kfp.Client(host='<KFPHost>', existing_token=get_access_token())
#
if existing_token:
token = existing_token
self._is_refresh_token = False
elif client_id:
token, self._is_refresh_token = auth.get_auth_token(
client_id, other_client_id, other_client_secret)
elif self._is_inverse_proxy_host(host):
token = auth.get_gcp_access_token()
self._is_refresh_token = False
elif credentials:
config.api_key['authorization'] = 'placeholder'
config.api_key_prefix['authorization'] = 'Bearer'
config.refresh_api_key_hook = credentials.refresh_api_key_hook
if token:
config.api_key['authorization'] = token
config.api_key_prefix['authorization'] = 'Bearer'
return config
if host:
# if host is explicitly set with auth token, it's probably a port
# forward address.
return config
import kubernetes as k8s
in_cluster = True
try:
k8s.config.load_incluster_config()
except:
in_cluster = False
if in_cluster:
config.host = Client._IN_CLUSTER_DNS_NAME.format(namespace)
config = self._get_config_with_default_credentials(config)
return config
try:
k8s.config.load_kube_config(
client_configuration=config, context=kube_context)
except:
print('Failed to load kube config.')
return config
if config.host:
config.host = config.host + '/' + Client._KUBE_PROXY_PATH.format(
namespace)
return config
def _is_inverse_proxy_host(self, host: str) -> bool:
return bool(re.match(r'\S+.googleusercontent.com/{0,1}$', host))
def _get_url_prefix(self) -> str:
if self._uihost:
# User's own connection.
if self._uihost.startswith('http://') or self._uihost.startswith(
'https://'):
return self._uihost
else:
return 'http://' + self._uihost
# In-cluster pod. We could use relative URL.
return '/pipeline'
def _load_context_setting_or_default(self) -> None:
if os.path.exists(Client._LOCAL_KFP_CONTEXT):
with open(Client._LOCAL_KFP_CONTEXT, 'r') as f:
self._context_setting = json.load(f)
else:
self._context_setting = {
'namespace': '',
}
def _refresh_api_client_token(self) -> None:
"""Refreshes the existing token associated with the kfp_api_client."""
if getattr(self, '_is_refresh_token', None):
return
new_token = auth.get_gcp_access_token()
self._existing_config.api_key['authorization'] = new_token
def _get_config_with_default_credentials(
self, config: kfp_server_api.Configuration
) -> kfp_server_api.Configuration:
"""Apply default credentials to the configuration object.
This method accepts a Configuration object and extends it with
some default credentials interface.
"""
# XXX: The default credentials are audience-based service account tokens
# projected by the kubelet (ServiceAccountTokenVolumeCredentials). As we
# implement more and more credentials, we can have some heuristic and
# choose from a number of options.
# See https://github.com/kubeflow/pipelines/pull/5287#issuecomment-805654121
credentials = set_volume_credentials.ServiceAccountTokenVolumeCredentials(
)
config_copy = copy.deepcopy(config)
try:
credentials.refresh_api_key_hook(config_copy)
except Exception:
logging.warning('Failed to set up default credentials. Proceeding'
' without credentials...')
return config
config.refresh_api_key_hook = credentials.refresh_api_key_hook
config.api_key_prefix['authorization'] = 'Bearer'
config.refresh_api_key_hook(config)
return config
def set_user_namespace(self, namespace: str) -> None:
"""Sets the namespace in the Kuberenetes cluster to use.
This function should only be used when Kubeflow Pipelines is in the
multi-user mode.
Args:
namespace: Namespace to use within the Kubernetes cluster (namespace containing the Kubeflow Pipelines deployment).
"""
self._context_setting['namespace'] = namespace
if not os.path.exists(os.path.dirname(Client._LOCAL_KFP_CONTEXT)):
os.makedirs(os.path.dirname(Client._LOCAL_KFP_CONTEXT))
with open(Client._LOCAL_KFP_CONTEXT, 'w') as f:
json.dump(self._context_setting, f)
def get_kfp_healthz(
self,
sleep_duration: int = 5,
) -> kfp_server_api.V2beta1GetHealthzResponse:
"""Gets healthz info for KFP deployment.
Args:
sleep_duration: Time in seconds between retries.
Returns:
JSON response from the healthz endpoint.
"""
count = 0
response = None
max_attempts = 5
while not response:
count += 1
if count > max_attempts:
raise TimeoutError(
f'Failed getting healthz endpoint after {max_attempts} attempts.'
)
try:
return self._healthz_api.healthz_service_get_healthz()
# ApiException, including network errors, is the only type that may
# recover after retry.
except kfp_server_api.ApiException:
# logging.exception also logs detailed info about the ApiException
logging.exception(
f'Failed to get healthz info attempt {count} of {max_attempts}.'
)
time.sleep(sleep_duration)
def get_user_namespace(self) -> str:
"""Gets user namespace in context config.
Returns:
Kubernetes namespace from the local context file or empty if it
wasn't set.
"""
return self._context_setting['namespace']
def create_experiment(
self,
name: str,
description: str = None,
namespace: str = None,
) -> kfp_server_api.V2beta1Experiment:
"""Creates a new experiment.
Args:
name: Name of the experiment.
description: Description of the experiment.
namespace: Kubernetes namespace to use. Used for multi-user deployments. For single-user deployments, this should be left as ``None``.
Returns:
``V2beta1Experiment`` object.
"""
namespace = namespace or self.get_user_namespace()
experiment = None
try:
experiment = self.get_experiment(
experiment_name=name, namespace=namespace)
except ValueError as error:
# Ignore error if the experiment does not exist.
if not str(error).startswith('No experiment is found with name'):
raise error
if not experiment:
logging.info(f'Creating experiment {name}.')
experiment = kfp_server_api.V2beta1Experiment(
display_name=name,
description=description,
namespace=namespace,
)
experiment = self._experiment_api.experiment_service_create_experiment(
body=experiment)
link = f'{self._get_url_prefix()}/#/experiments/details/{experiment.experiment_id}'
if auth.is_ipython():
import IPython
html = f'<a href="{link}" target="_blank" >Experiment details</a>.'
IPython.display.display(IPython.display.HTML(html))
else:
print(f'Experiment details: {link}')
return experiment
def get_pipeline_id(self, name: str) -> Optional[str]:
"""Gets the ID of a pipeline by its name.
Args:
name: Pipeline name.
Returns:
The pipeline ID if a pipeline with the name exists.
"""
pipeline_filter = json.dumps({
'predicates': [{
'operation': _FILTER_OPERATIONS['EQUALS'],
'key': 'display_name',
'stringValue': name,
}]
})
result = self._pipelines_api.pipeline_service_list_pipelines(
filter=pipeline_filter)
if result.pipelines is None:
return None
if len(result.pipelines) == 1:
return result.pipelines[0].pipeline_id
elif len(result.pipelines) > 1:
raise ValueError(
f'Multiple pipelines with the name: {name} found, the name needs to be unique.'
)
return None
def list_experiments(
self,
page_token: str = '',
page_size: int = 10,
sort_by: str = '',
namespace: Optional[str] = None,
filter: Optional[str] = None,
) -> kfp_server_api.V2beta1ListExperimentsResponse:
"""Lists experiments.
Args:
page_token: Page token for obtaining page from paginated response.
page_size: Size of the page.
sort_by: Sort string of format ``'[field_name]', '[field_name] desc'``. For example, ``'display_name desc'``.
namespace: Kubernetes namespace to use. Used for multi-user deployments. For single-user deployments, this should be left as ``None``.
filter: A url-encoded, JSON-serialized Filter protocol buffer
(see `filter.proto message <https://github.com/kubeflow/pipelines/blob/cb7d9a87c999eb1d2280959e5afbeee9e270ef3d/backend/api/v2beta1/filter.proto>`_). Example:
::
json.dumps({
"predicates": [{
"operation": "EQUALS",
"key": "display_name",
"stringValue": "my-name",
}]
})
Returns:
``V2beta1ListExperimentsResponse`` object.
"""
namespace = namespace or self.get_user_namespace()
return self._experiment_api.experiment_service_list_experiments(
page_token=page_token,
page_size=page_size,
sort_by=sort_by,
filter=filter,
namespace=namespace,
)
def get_experiment(
self,
experiment_id: Optional[str] = None,
experiment_name: Optional[str] = None,
namespace: Optional[str] = None,
) -> kfp_server_api.V2beta1Experiment:
"""Gets details of an experiment.
Either ``experiment_id`` or ``experiment_name`` is required.
Args:
experiment_id: ID of the experiment.
experiment_name: Name of the experiment.
namespace: Kubernetes namespace to use. Used for multi-user deployments.
For single-user deployments, this should be left as ``None``.
Returns:
``V2beta1Experiment`` object.
"""
namespace = namespace or self.get_user_namespace()
if experiment_id is None and experiment_name is None:
raise ValueError(
'Either experiment_id or experiment_name is required.')
if experiment_id is not None:
return self._experiment_api.experiment_service_get_experiment(
experiment_id=experiment_id)
experiment_filter = json.dumps({
'predicates': [{
'operation': _FILTER_OPERATIONS['EQUALS'],
'key': 'display_name',
'stringValue': experiment_name,
}]
})
if namespace is not None:
result = self._experiment_api.experiment_service_list_experiments(
filter=experiment_filter, namespace=namespace)
else:
result = self._experiment_api.experiment_service_list_experiments(
filter=experiment_filter)
if not result.experiments:
raise ValueError(
f'No experiment is found with name {experiment_name}.')
if len(result.experiments) > 1:
raise ValueError(
f'Multiple experiments is found with name {experiment_name}.')
return result.experiments[0]
def archive_experiment(self, experiment_id: str) -> dict:
"""Archives an experiment.
Args:
experiment_id: ID of the experiment.
Returns:
Empty dictionary.
"""
return self._experiment_api.experiment_service_archive_experiment(
experiment_id=experiment_id)
def unarchive_experiment(self, experiment_id: str) -> dict:
"""Unarchives an experiment.
Args:
experiment_id: ID of the experiment.
Returns:
Empty dictionary.
"""
return self._experiment_api.experiment_service_unarchive_experiment(
experiment_id=experiment_id)
def delete_experiment(self, experiment_id: str) -> dict:
"""Delete experiment.
Args:
experiment_id: ID of the experiment.
Returns:
Empty dictionary.
"""
return self._experiment_api.experiment_service_delete_experiment(
experiment_id=experiment_id)
def list_pipelines(
self,
page_token: str = '',
page_size: int = 10,
sort_by: str = '',
filter: Optional[str] = None,
namespace: Optional[str] = None,
) -> kfp_server_api.V2beta1ListPipelinesResponse:
"""Lists pipelines.
Args:
page_token: Page token for obtaining page from paginated response.
page_size: Size of the page.
sort_by: Sort string of format ``'[field_name]', '[field_name] desc'``. For example, ``'display_name desc'``.
filter: A url-encoded, JSON-serialized Filter protocol buffer
(see `filter.proto message <https://github.com/kubeflow/pipelines/blob/cb7d9a87c999eb1d2280959e5afbeee9e270ef3d/backend/api/v2beta1/filter.proto>`_). Example:
::
json.dumps({
"predicates": [{
"operation": "EQUALS",
"key": "display_name",
"stringValue": "my-name",
}]
})
Returns:
``V2beta1ListPipelinesResponse`` object.
"""
return self._pipelines_api.pipeline_service_list_pipelines(
namespace=namespace,
page_token=page_token,
page_size=page_size,
sort_by=sort_by,
filter=filter)
# TODO: provide default namespace, similar to kubectl default namespaces.
def run_pipeline(
self,
experiment_id: str,
job_name: str,
pipeline_package_path: Optional[str] = None,
params: Optional[Dict[str, Any]] = None,
pipeline_id: Optional[str] = None,
version_id: Optional[str] = None,
pipeline_root: Optional[str] = None,
enable_caching: Optional[bool] = None,
cache_key: Optional[str] = None,
service_account: Optional[str] = None,
) -> kfp_server_api.V2beta1Run:
"""Runs a specified pipeline.
Args:
experiment_id: ID of an experiment.
job_name: Name of the job.
pipeline_package_path: Local path of the pipeline package (the
filename should end with one of the following .tar.gz, .tgz,
.zip, .json).
params: Arguments to the pipeline function provided as a dict.
pipeline_id: ID of the pipeline.
version_id: ID of the pipeline version to run.
If both pipeline_id and version_id are specified, version_id
will take precendence.
If only pipeline_id is specified, the default version of this
pipeline is used to create the run.
pipeline_root: Root path of the pipeline outputs.
enable_caching: Whether or not to enable caching for the
run. If not set, defaults to the compile-time settings, which
is ``True`` for all tasks by default. If set, the
setting applies to all tasks in the pipeline (overrides the
compile time settings).
cache_key (optional): Customized cache key for this task.
If set, the cache_key will be used as the key for the task's cache.
service_account: Specifies which Kubernetes service
account to use for this run.
Returns:
``V2beta1Run`` object.
"""
job_config = self._create_job_config(
params=params,
pipeline_package_path=pipeline_package_path,
pipeline_id=pipeline_id,
version_id=version_id,
enable_caching=enable_caching,
cache_key=cache_key,
pipeline_root=pipeline_root,
)
run_body = kfp_server_api.V2beta1Run(
experiment_id=experiment_id,
display_name=job_name,
pipeline_spec=job_config.pipeline_spec,
pipeline_version_reference=job_config.pipeline_version_reference,
runtime_config=job_config.runtime_config,
service_account=service_account)
response = self._run_api.run_service_create_run(body=run_body)
link = f'{self._get_url_prefix()}/#/runs/details/{response.run_id}'
if auth.is_ipython():
import IPython
html = (f'<a href="{link}" target="_blank" >Run details</a>.')
IPython.display.display(IPython.display.HTML(html))
else:
print(f'Run details: {link}')
return response
def archive_run(self, run_id: str) -> dict:
"""Archives a run.
Args:
run_id: ID of the run.
Returns:
Empty dictionary.
"""
return self._run_api.run_service_archive_run(run_id=run_id)
def unarchive_run(self, run_id: str) -> dict:
"""Restores an archived run.
Args:
run_id: ID of the run.
Returns:
Empty dictionary.
"""
return self._run_api.run_service_unarchive_run(run_id=run_id)
def delete_run(self, run_id: str) -> dict:
"""Deletes a run.
Args:
run_id: ID of the run.
Returns:
Empty dictionary.
"""
return self._run_api.run_service_delete_run(run_id=run_id)
def terminate_run(self, run_id: str) -> dict:
"""Terminates a run.
Args:
run_id: ID of the run.
Returns:
Empty dictionary.
"""
return self._run_api.run_service_terminate_run(run_id=run_id)
def create_recurring_run(
self,
experiment_id: str,
job_name: str,
description: Optional[str] = None,
start_time: Optional[str] = None,
end_time: Optional[str] = None,
interval_second: Optional[int] = None,
cron_expression: Optional[str] = None,
max_concurrency: Optional[int] = 1,
no_catchup: Optional[bool] = None,
params: Optional[dict] = None,
pipeline_package_path: Optional[str] = None,
pipeline_id: Optional[str] = None,
version_id: Optional[str] = None,
enabled: bool = True,
pipeline_root: Optional[str] = None,
enable_caching: Optional[bool] = None,
cache_key: Optional[str] = None,
service_account: Optional[str] = None,
) -> kfp_server_api.V2beta1RecurringRun:
"""Creates a recurring run.
Args:
experiment_id: ID of the experiment.
job_name: Name of the job.
description: Description of the job.
start_time: RFC3339 time string of the time when to start the
job.
end_time: RFC3339 time string of the time when to end the job.
interval_second: Integer indicating the seconds between two
recurring runs in for a periodic schedule.
cron_expression: Cron expression representing a set of times,
using 6 space-separated fields (e.g., ``'0 0 9 ? * 2-6'``). See `cron format
<https://pkg.go.dev/github.com/robfig/cron#hdr-CRON_Expression_Format>`_.
max_concurrency: Integer indicating how many jobs can be run in
parallel.
no_catchup: Whether the recurring run should catch up if behind
schedule. For example, if the recurring run is paused for a
while and re-enabled afterwards. If ``no_catchup=False``, the
scheduler will catch up on (backfill) each missed interval.
Otherwise, it only schedules the latest interval if more than
one interval is ready to be scheduled. Usually, if your pipeline
handles backfill internally, you should turn catchup off to
avoid duplicate backfill.
pipeline_package_path: Local path of the pipeline package (the
filename should end with one of the following .tar.gz, .tgz,
.zip, .json).
params: Arguments to the pipeline function provided as a dict.
pipeline_id: ID of a pipeline.
version_id: ID of a pipeline version.
If both ``pipeline_id`` and ``version_id`` are specified, ``version_id``
will take precedence.
If only ``pipeline_id`` is specified, the default version of this
pipeline is used to create the run.
enabled: Whether to enable or disable the recurring run.
pipeline_root: Root path of the pipeline outputs.
enable_caching: Whether or not to enable caching for the
run. If not set, defaults to the compile time settings, which
is ``True`` for all tasks by default, while users may specify
different caching options for individual tasks. If set, the
setting applies to all tasks in the pipeline (overrides the
compile time settings).
cache_key (optional): Customized cache key for this task.
If set, the cache_key will be used as the key for the task's cache.
service_account: Specifies which Kubernetes service
account this recurring run uses.
Returns:
``V2beta1RecurringRun`` object.
"""
job_config = self._create_job_config(
params=params,
pipeline_package_path=pipeline_package_path,
pipeline_id=pipeline_id,
version_id=version_id,
enable_caching=enable_caching,
cache_key=cache_key,
pipeline_root=pipeline_root,
)
if all([interval_second, cron_expression
]) or not any([interval_second, cron_expression]):
raise ValueError(
'Either interval_second or cron_expression is required.')
if interval_second is not None:
trigger = kfp_server_api.V2beta1Trigger(
periodic_schedule=kfp_server_api.V2beta1PeriodicSchedule(
start_time=start_time,
end_time=end_time,
interval_second=interval_second))
if cron_expression is not None:
trigger = kfp_server_api.V2beta1Trigger(
cron_schedule=kfp_server_api.V2beta1CronSchedule(
start_time=start_time,
end_time=end_time,
cron=cron_expression))
mode = kfp_server_api.RecurringRunMode.DISABLE
if enabled:
mode = kfp_server_api.RecurringRunMode.ENABLE
job_body = kfp_server_api.V2beta1RecurringRun(
experiment_id=experiment_id,
mode=mode,
pipeline_spec=job_config.pipeline_spec,
pipeline_version_reference=job_config.pipeline_version_reference,
runtime_config=job_config.runtime_config,
display_name=job_name,
description=description,
no_catchup=no_catchup,
trigger=trigger,
max_concurrency=max_concurrency,
service_account=service_account)
return self._recurring_run_api.recurring_run_service_create_recurring_run(
body=job_body)
def _create_job_config(
self,
params: Optional[Dict[str, Any]],
pipeline_package_path: Optional[str],
pipeline_id: Optional[str],
version_id: Optional[str],
enable_caching: Optional[bool],
cache_key: Optional[str],
pipeline_root: Optional[str],
) -> _JobConfig:
"""Creates a JobConfig with spec and resource_references.
Args:
pipeline_package_path: Local path of the pipeline package (the
filename should end with one of the following .tar.gz, .tgz,
.zip, .yaml, .yml).
params: A dictionary with key as param name and value as param value.
pipeline_id: ID of a pipeline.
version_id: ID of a pipeline version.
If both pipeline_id and version_id are specified, version_id
will take precedence. If only pipeline_id is specified, the
default version of this pipeline is used to create the run.
enable_caching: Whether or not to enable caching for the
run. If not set, defaults to the compile time settings, which
is ``True`` for all tasks by default, while users may specify
different caching options for individual tasks. If set, the
setting applies to all tasks in the pipeline (overrides the
compile time settings).
cache_key (optional): Customized cache key for this task.
If set, the cache_key will be used as the key for the task's cache.
pipeline_root: Root path of the pipeline outputs.
Returns:
A _JobConfig object with attributes .pipeline_spec,
.pipeline_version_reference, and .runtime_config.
"""
from_spec = pipeline_package_path is not None
from_template = pipeline_id is not None or version_id is not None
if from_spec == from_template:
raise ValueError(
'Must specify either `pipeline_pacakge_path` or both `pipeline_id` and `version_id`.'
)
if (pipeline_id is None) != (version_id is None):
raise ValueError(
'To run a pipeline from an existing template, both `pipeline_id` and `version_id` are required.'
)
if params is None:
params = {}
pipeline_spec = None
if pipeline_package_path:
pipeline_doc = _extract_pipeline_yaml(pipeline_package_path)
# Caching option set at submission time overrides the compile time
# settings.
if enable_caching is not None:
_override_caching_options(pipeline_doc.pipeline_spec,
enable_caching, cache_key)
pipeline_spec = pipeline_doc.to_dict()
pipeline_version_reference = None
if pipeline_id is not None and version_id is not None:
pipeline_version_reference = kfp_server_api.V2beta1PipelineVersionReference(
pipeline_id=pipeline_id, pipeline_version_id=version_id)
runtime_config = kfp_server_api.V2beta1RuntimeConfig(
pipeline_root=pipeline_root,
parameters=params,
)
return _JobConfig(
pipeline_spec=pipeline_spec,
pipeline_version_reference=pipeline_version_reference,
runtime_config=runtime_config,
)
def create_run_from_pipeline_func(
self,
pipeline_func: base_component.BaseComponent,
arguments: Optional[Dict[str, Any]] = None,
run_name: Optional[str] = None,
experiment_name: Optional[str] = None,
namespace: Optional[str] = None,
pipeline_root: Optional[str] = None,
enable_caching: Optional[bool] = None,
cache_key: Optional[str] = None,
service_account: Optional[str] = None,
experiment_id: Optional[str] = None,
) -> RunPipelineResult: