prefect.input.run_input
¶
This module contains functions that allow sending type-checked RunInput
data
to flows at runtime. Flows can send back responses, establishing two-way
channels with senders. These functions are particularly useful for systems that
require ongoing data transfer or need to react to input quickly.
real-time interaction and efficient data handling. It's designed to facilitate
dynamic communication within distributed or microservices-oriented systems,
making it ideal for scenarios requiring continuous data synchronization and
processing. It's particularly useful for systems that require ongoing data
input and output.
The following is an example of two flows. One sends a random number to the other and waits for a response. The other receives the number, squares it, and sends the result back. The sender flow then prints the result.
Sender flow:
import random
from uuid import UUID
from prefect import flow, get_run_logger
from prefect.input import RunInput
class NumberData(RunInput):
number: int
@flow
async def sender_flow(receiver_flow_run_id: UUID):
logger = get_run_logger()
the_number = random.randint(1, 100)
await NumberData(number=the_number).send_to(receiver_flow_run_id)
receiver = NumberData.receive(flow_run_id=receiver_flow_run_id)
squared = await receiver.next()
logger.info(f"{the_number} squared is {squared.number}")
Receiver flow:
import random
from uuid import UUID
from prefect import flow, get_run_logger
from prefect.input import RunInput
class NumberData(RunInput):
number: int
@flow
async def receiver_flow():
async for data in NumberData.receive():
squared = data.number ** 2
data.respond(NumberData(number=squared))
AutomaticRunInput
¶
Bases: RunInput
Source code in prefect/input/run_input.py
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 |
|
load
async
classmethod
¶
Load the run input response from the given key.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
- |
keyset (Keyset
|
the keyset to load the input for |
required |
- |
flow_run_id (UUID
|
the flow run ID to load the input for |
required |
Source code in prefect/input/run_input.py
301 302 303 304 305 306 307 308 309 310 311 312 |
|
subclass_from_type
classmethod
¶
Create a new AutomaticRunInput
subclass from the given type.
Source code in prefect/input/run_input.py
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 |
|
RunInput
¶
Bases: BaseModel
Source code in prefect/input/run_input.py
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 |
|
load
async
classmethod
¶
Load the run input response from the given key.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
- |
keyset (Keyset
|
the keyset to load the input for |
required |
- |
flow_run_id (UUID
|
the flow run ID to load the input for |
required |
Source code in prefect/input/run_input.py
171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 |
|
load_from_flow_run_input
classmethod
¶
Load the run input from a FlowRunInput object.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
- |
flow_run_input (FlowRunInput
|
the flow run input to load the input for |
required |
Source code in prefect/input/run_input.py
192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 |
|
save
async
classmethod
¶
Save the run input response to the given key.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
- |
keyset (Keyset
|
the keyset to save the input for |
required |
- |
flow_run_id (UUID
|
the flow run ID to save the input for |
required |
Source code in prefect/input/run_input.py
151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 |
|
subclass_from_base_model_type
classmethod
¶
Create a new RunInput
subclass from the given pydantic.BaseModel
subclass.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
- |
model_cls (pydantic.BaseModel subclass
|
the class from which
to create the new |
required |
Source code in prefect/input/run_input.py
283 284 285 286 287 288 289 290 291 292 293 294 295 |
|
with_initial_data
classmethod
¶
Create a new RunInput
subclass with the given initial data as field
defaults.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
- |
kwargs (Any
|
the initial data |
required |
Source code in prefect/input/run_input.py
208 209 210 211 212 213 214 215 216 217 218 219 220 |
|
keyset_from_base_key
¶
Get the keyset for the given base key.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
- |
base_key (str
|
the base key to get the keyset for |
required |
Returns:
Type | Description |
---|---|
Keyset
|
|
Source code in prefect/input/run_input.py
115 116 117 118 119 120 121 122 123 124 125 126 127 128 |
|
keyset_from_paused_state
¶
Get the keyset for the given Paused state.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
- |
state (State
|
the state to get the keyset for |
required |
Source code in prefect/input/run_input.py
100 101 102 103 104 105 106 107 108 109 110 111 112 |
|
run_input_subclass_from_type
¶
Create a new RunInput
subclass from the given type.
Source code in prefect/input/run_input.py
356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 |
|