Serve Executor
Executor for serving DAG tasks in online environments.
Server-style DAG executor that supports submitting tasks and retrieving results asynchronously.
ContextStatus
Bases: Enum
Status of a submitted context in the ServeExecutor.
Source code in shutils/dag/serve_executor.py
26 27 28 29 30 31 | |
ServeExecutor
Bases: Executor
Long-running DAG executor that supports submitting contexts and awaiting results.
Source code in shutils/dag/serve_executor.py
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 | |
__init__(dag, runtime=None, config=None)
Initialize the serve executor.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
dag
|
DAG
|
The DAG to execute. |
required |
runtime
|
Runtime | None
|
Optional runtime for tracking active contexts. |
None
|
config
|
ExecutorConfig | None
|
Executor configuration. |
None
|
Source code in shutils/dag/serve_executor.py
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | |
get_task_result(task_id)
async
Wait for and return the result of a submitted context.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
task_id
|
str
|
The context ID returned by submit_task. |
required |
Returns:
| Type | Description |
|---|---|
dict
|
The output data dictionary. |
Raises:
| Type | Description |
|---|---|
ValueError
|
If the task_id is not found. |
Source code in shutils/dag/serve_executor.py
188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 | |
get_task_status(task_id)
async
Get the current status of a submitted context.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
task_id
|
str
|
The context ID returned by submit_task. |
required |
Returns:
| Type | Description |
|---|---|
|
The ContextStatus enum value. |
Raises:
| Type | Description |
|---|---|
ValueError
|
If the task_id is not found. |
Source code in shutils/dag/serve_executor.py
171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 | |
run()
async
Start the worker pool. Does not return until shutdown.
Source code in shutils/dag/serve_executor.py
58 59 60 61 62 63 64 65 66 67 68 69 70 71 | |
submit_task(context)
async
Submit a context for execution and return its ID.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
context
|
Context
|
The input context to process. |
required |
Returns:
| Type | Description |
|---|---|
str
|
The context ID for tracking status and results. |
Raises:
| Type | Description |
|---|---|
ValueError
|
If a context with the same ID has already been submitted. |
Source code in shutils/dag/serve_executor.py
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 | |