forked from temporalio/samples-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
worker.py
69 lines (54 loc) · 1.71 KB
/
worker.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
import asyncio
from datetime import timedelta
from temporalio import activity, workflow
from temporalio.client import Client
from temporalio.runtime import PrometheusConfig, Runtime, TelemetryConfig
from temporalio.worker import Worker
@workflow.defn
class GreetingWorkflow:
@workflow.run
async def run(self, name: str) -> str:
return await workflow.execute_activity(
compose_greeting,
name,
start_to_close_timeout=timedelta(seconds=10),
)
@activity.defn
async def compose_greeting(name: str) -> str:
return f"Hello, {name}!"
interrupt_event = asyncio.Event()
def init_runtime_with_prometheus(port: int) -> Runtime:
# Create runtime for use with Prometheus metrics
return Runtime(
telemetry=TelemetryConfig(
metrics=PrometheusConfig(bind_address=f"127.0.0.1:{port}")
)
)
async def main():
runtime = init_runtime_with_prometheus(9000)
# Connect client
client = await Client.connect(
"localhost:7233",
runtime=runtime,
)
# Run a worker for the workflow
async with Worker(
client,
task_queue="prometheus-task-queue",
workflows=[GreetingWorkflow],
activities=[compose_greeting],
):
# Wait until interrupted
print("Worker started")
print(
"Prometheus metrics available at http://127.0.0.1:9000/metrics, ctrl+c to exit"
)
await interrupt_event.wait()
print("Shutting down")
if __name__ == "__main__":
loop = asyncio.new_event_loop()
try:
loop.run_until_complete(main())
except KeyboardInterrupt:
interrupt_event.set()
loop.run_until_complete(loop.shutdown_asyncgens())