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
|
import json
from datetime import datetime
from typing import Any, Callable, Dict, List, Optional, TypedDict, TypeVar, Union
import grpc
from google.protobuf import timestamp_pb2
from hatchet_sdk.clients.rest.models.workflow_run import WorkflowRun
from hatchet_sdk.clients.rest.tenacity_utils import tenacity_retry
from hatchet_sdk.clients.run_event_listener import new_listener
from hatchet_sdk.clients.workflow_listener import PooledWorkflowRunListener
from hatchet_sdk.connection import new_conn
from hatchet_sdk.contracts.workflows_pb2 import (
BulkTriggerWorkflowRequest,
BulkTriggerWorkflowResponse,
CreateWorkflowVersionOpts,
PutRateLimitRequest,
PutWorkflowRequest,
RateLimitDuration,
ScheduleWorkflowRequest,
TriggerWorkflowRequest,
TriggerWorkflowResponse,
WorkflowVersion,
)
from hatchet_sdk.contracts.workflows_pb2_grpc import WorkflowServiceStub
from hatchet_sdk.utils.serialization import flatten
from hatchet_sdk.workflow_run import RunRef, WorkflowRunRef
from ..loader import ClientConfig
from ..metadata import get_metadata
from ..workflow import WorkflowMeta
def new_admin(config: ClientConfig):
return AdminClient(config)
class ScheduleTriggerWorkflowOptions(TypedDict, total=False):
parent_id: Optional[str]
parent_step_run_id: Optional[str]
child_index: Optional[int]
child_key: Optional[str]
namespace: Optional[str]
class ChildTriggerWorkflowOptions(TypedDict, total=False):
additional_metadata: Dict[str, str] | None = None
sticky: bool | None = None
class ChildWorkflowRunDict(TypedDict, total=False):
workflow_name: str
input: Any
options: ChildTriggerWorkflowOptions
key: str | None = None
class TriggerWorkflowOptions(ScheduleTriggerWorkflowOptions, total=False):
additional_metadata: Dict[str, str] | None = None
desired_worker_id: str | None = None
namespace: str | None = None
class WorkflowRunDict(TypedDict, total=False):
workflow_name: str
input: Any
options: TriggerWorkflowOptions | None
class DedupeViolationErr(Exception):
"""Raised by the Hatchet library to indicate that a workflow has already been run with this deduplication value."""
pass
class AdminClientBase:
pooled_workflow_listener: PooledWorkflowRunListener | None = None
def _prepare_workflow_request(
self, workflow_name: str, input: any, options: TriggerWorkflowOptions = None
):
try:
payload_data = json.dumps(input)
try:
meta = (
None
if options is None or "additional_metadata" not in options
else options["additional_metadata"]
)
if meta is not None:
options = {
**options,
"additional_metadata": json.dumps(meta).encode("utf-8"),
}
except json.JSONDecodeError as e:
raise ValueError(f"Error encoding payload: {e}")
return TriggerWorkflowRequest(
name=workflow_name, input=payload_data, **(options or {})
)
except json.JSONDecodeError as e:
raise ValueError(f"Error encoding payload: {e}")
def _prepare_put_workflow_request(
self,
name: str,
workflow: CreateWorkflowVersionOpts | WorkflowMeta,
overrides: CreateWorkflowVersionOpts | None = None,
):
try:
opts: CreateWorkflowVersionOpts
if isinstance(workflow, CreateWorkflowVersionOpts):
opts = workflow
else:
opts = workflow.get_create_opts(self.client.config.namespace)
if overrides is not None:
opts.MergeFrom(overrides)
opts.name = name
return PutWorkflowRequest(
opts=opts,
)
except grpc.RpcError as e:
raise ValueError(f"Could not put workflow: {e}")
def _prepare_schedule_workflow_request(
self,
name: str,
schedules: List[Union[datetime, timestamp_pb2.Timestamp]],
input={},
options: ScheduleTriggerWorkflowOptions = None,
):
timestamp_schedules = []
for schedule in schedules:
if isinstance(schedule, datetime):
t = schedule.timestamp()
seconds = int(t)
nanos = int(t % 1 * 1e9)
timestamp = timestamp_pb2.Timestamp(seconds=seconds, nanos=nanos)
timestamp_schedules.append(timestamp)
elif isinstance(schedule, timestamp_pb2.Timestamp):
timestamp_schedules.append(schedule)
else:
raise ValueError(
"Invalid schedule type. Must be datetime or timestamp_pb2.Timestamp."
)
return ScheduleWorkflowRequest(
name=name,
schedules=timestamp_schedules,
input=json.dumps(input),
**(options or {}),
)
T = TypeVar("T")
class AdminClientAioImpl(AdminClientBase):
def __init__(self, config: ClientConfig):
aio_conn = new_conn(config, True)
self.config = config
self.aio_client = WorkflowServiceStub(aio_conn)
self.token = config.token
self.listener_client = new_listener(config)
self.namespace = config.namespace
async def run(
self,
function: Union[str, Callable[[Any], T]],
input: any,
options: TriggerWorkflowOptions = None,
) -> "RunRef[T]":
workflow_name = function
if not isinstance(function, str):
workflow_name = function.function_name
wrr = await self.run_workflow(workflow_name, input, options)
return RunRef[T](
wrr.workflow_run_id, wrr.workflow_listener, wrr.workflow_run_event_listener
)
## IMPORTANT: Keep this method's signature in sync with the wrapper in the OTel instrumentor
@tenacity_retry
async def run_workflow(
self, workflow_name: str, input: any, options: TriggerWorkflowOptions = None
) -> WorkflowRunRef:
try:
if not self.pooled_workflow_listener:
self.pooled_workflow_listener = PooledWorkflowRunListener(self.config)
namespace = self.namespace
if (
options is not None
and "namespace" in options
and options["namespace"] is not None
):
namespace = options.pop("namespace")
if namespace != "" and not workflow_name.startswith(self.namespace):
workflow_name = f"{namespace}{workflow_name}"
request = self._prepare_workflow_request(workflow_name, input, options)
resp: TriggerWorkflowResponse = await self.aio_client.TriggerWorkflow(
request,
metadata=get_metadata(self.token),
)
return WorkflowRunRef(
workflow_run_id=resp.workflow_run_id,
workflow_listener=self.pooled_workflow_listener,
workflow_run_event_listener=self.listener_client,
)
except (grpc.RpcError, grpc.aio.AioRpcError) as e:
if e.code() == grpc.StatusCode.ALREADY_EXISTS:
raise DedupeViolationErr(e.details())
raise e
## IMPORTANT: Keep this method's signature in sync with the wrapper in the OTel instrumentor
@tenacity_retry
async def run_workflows(
self,
workflows: list[WorkflowRunDict],
options: TriggerWorkflowOptions | None = None,
) -> List[WorkflowRunRef]:
if len(workflows) == 0:
raise ValueError("No workflows to run")
if not self.pooled_workflow_listener:
self.pooled_workflow_listener = PooledWorkflowRunListener(self.config)
namespace = self.namespace
if (
options is not None
and "namespace" in options
and options["namespace"] is not None
):
namespace = options["namespace"]
del options["namespace"]
workflow_run_requests: TriggerWorkflowRequest = []
for workflow in workflows:
workflow_name = workflow["workflow_name"]
input_data = workflow["input"]
options = workflow["options"]
if namespace != "" and not workflow_name.startswith(self.namespace):
workflow_name = f"{namespace}{workflow_name}"
# Prepare and trigger workflow for each workflow name and input
request = self._prepare_workflow_request(workflow_name, input_data, options)
workflow_run_requests.append(request)
request = BulkTriggerWorkflowRequest(workflows=workflow_run_requests)
resp: BulkTriggerWorkflowResponse = await self.aio_client.BulkTriggerWorkflow(
request,
metadata=get_metadata(self.token),
)
return [
WorkflowRunRef(
workflow_run_id=workflow_run_id,
workflow_listener=self.pooled_workflow_listener,
workflow_run_event_listener=self.listener_client,
)
for workflow_run_id in resp.workflow_run_ids
]
@tenacity_retry
async def put_workflow(
self,
name: str,
workflow: CreateWorkflowVersionOpts | WorkflowMeta,
overrides: CreateWorkflowVersionOpts | None = None,
) -> WorkflowVersion:
opts = self._prepare_put_workflow_request(name, workflow, overrides)
return await self.aio_client.PutWorkflow(
opts,
metadata=get_metadata(self.token),
)
@tenacity_retry
async def put_rate_limit(
self,
key: str,
limit: int,
duration: RateLimitDuration = RateLimitDuration.SECOND,
):
await self.aio_client.PutRateLimit(
PutRateLimitRequest(
key=key,
limit=limit,
duration=duration,
),
metadata=get_metadata(self.token),
)
@tenacity_retry
async def schedule_workflow(
self,
name: str,
schedules: List[Union[datetime, timestamp_pb2.Timestamp]],
input={},
options: ScheduleTriggerWorkflowOptions = None,
) -> WorkflowVersion:
try:
namespace = self.namespace
if (
options is not None
and "namespace" in options
and options["namespace"] is not None
):
namespace = options["namespace"]
del options["namespace"]
if namespace != "" and not name.startswith(self.namespace):
name = f"{namespace}{name}"
request = self._prepare_schedule_workflow_request(
name, schedules, input, options
)
return await self.aio_client.ScheduleWorkflow(
request,
metadata=get_metadata(self.token),
)
except (grpc.aio.AioRpcError, grpc.RpcError) as e:
if e.code() == grpc.StatusCode.ALREADY_EXISTS:
raise DedupeViolationErr(e.details())
raise e
class AdminClient(AdminClientBase):
def __init__(self, config: ClientConfig):
conn = new_conn(config)
self.config = config
self.client = WorkflowServiceStub(conn)
self.aio = AdminClientAioImpl(config)
self.token = config.token
self.listener_client = new_listener(config)
self.namespace = config.namespace
@tenacity_retry
def put_workflow(
self,
name: str,
workflow: CreateWorkflowVersionOpts | WorkflowMeta,
overrides: CreateWorkflowVersionOpts | None = None,
) -> WorkflowVersion:
opts = self._prepare_put_workflow_request(name, workflow, overrides)
resp: WorkflowVersion = self.client.PutWorkflow(
opts,
metadata=get_metadata(self.token),
)
return resp
@tenacity_retry
def put_rate_limit(
self,
key: str,
limit: int,
duration: Union[RateLimitDuration.Value, str] = RateLimitDuration.SECOND,
):
self.client.PutRateLimit(
PutRateLimitRequest(
key=key,
limit=limit,
duration=duration,
),
metadata=get_metadata(self.token),
)
@tenacity_retry
def schedule_workflow(
self,
name: str,
schedules: List[Union[datetime, timestamp_pb2.Timestamp]],
input={},
options: ScheduleTriggerWorkflowOptions = None,
) -> WorkflowVersion:
try:
namespace = self.namespace
if (
options is not None
and "namespace" in options
and options["namespace"] is not None
):
namespace = options["namespace"]
del options["namespace"]
if namespace != "" and not name.startswith(self.namespace):
name = f"{namespace}{name}"
request = self._prepare_schedule_workflow_request(
name, schedules, input, options
)
return self.client.ScheduleWorkflow(
request,
metadata=get_metadata(self.token),
)
except (grpc.RpcError, grpc.aio.AioRpcError) as e:
if e.code() == grpc.StatusCode.ALREADY_EXISTS:
raise DedupeViolationErr(e.details())
raise e
## IMPORTANT: Keep this method's signature in sync with the wrapper in the OTel instrumentor
@tenacity_retry
def run_workflow(
self, workflow_name: str, input: any, options: TriggerWorkflowOptions = None
) -> WorkflowRunRef:
try:
if not self.pooled_workflow_listener:
self.pooled_workflow_listener = PooledWorkflowRunListener(self.config)
namespace = self.namespace
## TODO: Factor this out - it's repeated a lot of places
if (
options is not None
and "namespace" in options
and options["namespace"] is not None
):
namespace = options.pop("namespace")
if namespace != "" and not workflow_name.startswith(self.namespace):
workflow_name = f"{namespace}{workflow_name}"
request = self._prepare_workflow_request(workflow_name, input, options)
resp: TriggerWorkflowResponse = self.client.TriggerWorkflow(
request,
metadata=get_metadata(self.token),
)
return WorkflowRunRef(
workflow_run_id=resp.workflow_run_id,
workflow_listener=self.pooled_workflow_listener,
workflow_run_event_listener=self.listener_client,
)
except (grpc.RpcError, grpc.aio.AioRpcError) as e:
if e.code() == grpc.StatusCode.ALREADY_EXISTS:
raise DedupeViolationErr(e.details())
raise e
## IMPORTANT: Keep this method's signature in sync with the wrapper in the OTel instrumentor
@tenacity_retry
def run_workflows(
self, workflows: List[WorkflowRunDict], options: TriggerWorkflowOptions = None
) -> list[WorkflowRunRef]:
workflow_run_requests: TriggerWorkflowRequest = []
if not self.pooled_workflow_listener:
self.pooled_workflow_listener = PooledWorkflowRunListener(self.config)
for workflow in workflows:
workflow_name = workflow["workflow_name"]
input_data = workflow["input"]
options = workflow["options"]
namespace = self.namespace
if (
options is not None
and "namespace" in options
and options["namespace"] is not None
):
namespace = options["namespace"]
del options["namespace"]
if namespace != "" and not workflow_name.startswith(self.namespace):
workflow_name = f"{namespace}{workflow_name}"
# Prepare and trigger workflow for each workflow name and input
request = self._prepare_workflow_request(workflow_name, input_data, options)
workflow_run_requests.append(request)
request = BulkTriggerWorkflowRequest(workflows=workflow_run_requests)
resp: BulkTriggerWorkflowResponse = self.client.BulkTriggerWorkflow(
request,
metadata=get_metadata(self.token),
)
return [
WorkflowRunRef(
workflow_run_id=workflow_run_id,
workflow_listener=self.pooled_workflow_listener,
workflow_run_event_listener=self.listener_client,
)
for workflow_run_id in resp.workflow_run_ids
]
def run(
self,
function: Union[str, Callable[[Any], T]],
input: any,
options: TriggerWorkflowOptions = None,
) -> "RunRef[T]":
workflow_name = function
if not isinstance(function, str):
workflow_name = function.function_name
wrr = self.run_workflow(workflow_name, input, options)
return RunRef[T](
wrr.workflow_run_id, wrr.workflow_listener, wrr.workflow_run_event_listener
)
def get_workflow_run(self, workflow_run_id: str) -> WorkflowRunRef:
try:
if not self.pooled_workflow_listener:
self.pooled_workflow_listener = PooledWorkflowRunListener(self.config)
return WorkflowRunRef(
workflow_run_id=workflow_run_id,
workflow_listener=self.pooled_workflow_listener,
workflow_run_event_listener=self.listener_client,
)
except grpc.RpcError as e:
raise ValueError(f"Could not get workflow run: {e}")
|