mirror of
https://github.com/hatchet-dev/hatchet.git
synced 2025-12-28 04:09:41 -06:00
* feat: add mock run methods for tasks * feat: docs * feat: first pass at unit tests * cleanup: split out tests * feat: pass lifespan through * fix: rm comment * drive by: retry on 404 to help with races * chore: changelog * chore: ver * feat: improve logging everywhere * chore: changelog * fix: rm print cruft * feat: print statement linter * feat: helper for getting result of a standalone * feat: docs for mock run * feat: add task run getter * feat: propagate additional metadata properly * chore: gen * fix: date * chore: gen * feat: return exceptions * chore: gen * chore: changelog * feat: tests + gen again * fix: rm print cruft
69 lines
1.6 KiB
Python
69 lines
1.6 KiB
Python
from datetime import timedelta
|
|
from typing import Any
|
|
|
|
from pydantic import BaseModel
|
|
|
|
from hatchet_sdk import Context, Hatchet, TriggerWorkflowOptions
|
|
|
|
hatchet = Hatchet(debug=True)
|
|
|
|
|
|
class ParentInput(BaseModel):
|
|
n: int = 5
|
|
|
|
|
|
class ChildInput(BaseModel):
|
|
a: str
|
|
|
|
|
|
sync_fanout_parent = hatchet.workflow(
|
|
name="SyncFanoutParent", input_validator=ParentInput
|
|
)
|
|
sync_fanout_child = hatchet.workflow(name="SyncFanoutChild", input_validator=ChildInput)
|
|
|
|
|
|
@sync_fanout_parent.task(execution_timeout=timedelta(minutes=5))
|
|
def spawn(input: ParentInput, ctx: Context) -> dict[str, list[dict[str, Any]]]:
|
|
print("spawning child")
|
|
|
|
results = sync_fanout_child.run_many(
|
|
[
|
|
sync_fanout_child.create_bulk_run_item(
|
|
input=ChildInput(a=str(i)),
|
|
key=f"child{i}",
|
|
options=TriggerWorkflowOptions(additional_metadata={"hello": "earth"}),
|
|
)
|
|
for i in range(input.n)
|
|
],
|
|
)
|
|
|
|
print(f"results {results}")
|
|
|
|
return {"results": results}
|
|
|
|
|
|
@sync_fanout_child.task()
|
|
def process(input: ChildInput, ctx: Context) -> dict[str, str]:
|
|
return {"status": "success " + input.a}
|
|
|
|
|
|
@sync_fanout_child.task(parents=[process])
|
|
def process2(input: ChildInput, ctx: Context) -> dict[str, str]:
|
|
process_output = ctx.task_output(process)
|
|
a = process_output["status"]
|
|
|
|
return {"status2": a + "2"}
|
|
|
|
|
|
def main() -> None:
|
|
worker = hatchet.worker(
|
|
"sync-fanout-worker",
|
|
slots=40,
|
|
workflows=[sync_fanout_parent, sync_fanout_child],
|
|
)
|
|
worker.start()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|