popoto.streams.consumer¶
popoto.streams.consumer
¶
StreamConsumer — Redis Streams consumer group framework for Popoto.
This module provides a consumer group abstraction over Redis Streams, handling the XREADGROUP/XACK/XCLAIM/XPENDING lifecycle so application code only needs to supply a handler function.
Design
- Async-first: core logic uses
redis.asyncioviaget_async_redis_db() - Sync wrappers (
run_sync,process_batch_sync) useasyncio.run() - Dead-letter: entries exceeding
max_retriesare moved todead:{stream_key} - Recovery:
XCLAIMreclaims entries from crashed consumers after idle timeout - No Redis modules — only core Streams commands (Valkey compatible)
Redis Commands Used
- XGROUP CREATE — create consumer group (idempotent with BUSYGROUP handling)
- XREADGROUP — read new entries for this consumer
- XACK — acknowledge processed entries
- XPENDING — inspect pending entries for recovery/dead-letter decisions
- XCLAIM — reclaim entries from idle consumers
- XADD — write to dead-letter stream
Example
async def my_handler(entries): for entry_id, fields in entries: print(f"Processing {entry_id}: {fields}")
consumer = StreamConsumer( stream_key="stream:memory_mutations", group_name="pattern-detector", consumer_name="worker-1", handler=my_handler, ) consumer.run_sync() # blocking loop
Or single batch:¶
count = consumer.process_batch_sync()
StreamConsumer
¶
Redis Streams consumer group framework.
Manages the consumer group lifecycle — group creation, batch reading, acknowledgment, dead-letter handling, and pending entry recovery — while delegating actual processing logic to an application-provided handler.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
stream_key
|
str
|
Redis stream key (e.g., "stream:memory_mutations"). |
required |
group_name
|
str
|
Consumer group name. |
required |
consumer_name
|
str
|
This consumer's name within the group. |
required |
handler
|
Callable
|
Async callable that receives a list of (entry_id, fields_dict) tuples. All field values are decoded to str. |
required |
batch_size
|
int
|
Number of entries to read per XREADGROUP call. Default 50. |
50
|
block_ms
|
int
|
XREADGROUP BLOCK timeout in milliseconds. Default 5000. |
5000
|
max_retries
|
int
|
Delivery count threshold before dead-lettering. Default 3. |
3
|
claim_timeout_ms
|
int
|
XCLAIM idle timeout in milliseconds. Default 180000 (3 minutes). |
180000
|
dead_letter_max_length
|
Optional[int]
|
Optional MAXLEN for the dead-letter stream. Defaults to None (unbounded unless set). |
None
|
Source code in src/popoto/streams/consumer.py
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 | |
process_batch()
async
¶
Execute one processing cycle: read, handle, and acknowledge entries.
Performs the following steps: 1. Ensure consumer group exists (cached after first call) 2. Reclaim/dead-letter pending entries from crashed consumers 3. Read new entries via XREADGROUP 4. Invoke handler with decoded entries 5. XACK processed entries
Returns:
| Name | Type | Description |
|---|---|---|
int |
int
|
Number of entries successfully processed in this batch. |
Source code in src/popoto/streams/consumer.py
run()
async
¶
Blocking loop that continuously processes batches until stopped.
Call stop() from another coroutine or signal handler to exit
the loop gracefully after the current batch completes.
Connection errors are caught and logged with a 1-second backoff to avoid tight error loops. Non-connection errors from the handler are also caught to keep the consumer running.
Source code in src/popoto/streams/consumer.py
stop()
¶
Signal the consumer to stop after the current batch completes.
Sets the internal _running flag to False, causing the run()
loop to exit after finishing the in-progress batch.
Source code in src/popoto/streams/consumer.py
run_sync()
¶
Synchronous wrapper for run().
Starts the blocking consumer loop using asyncio.run().
Suitable for standalone scripts or processes that don't already
have an event loop running.
Source code in src/popoto/streams/consumer.py
process_batch_sync()
¶
Synchronous wrapper for process_batch().
Executes one processing cycle using asyncio.run().
Returns:
| Name | Type | Description |
|---|---|---|
int |
int
|
Number of entries successfully processed. |