Kafka¶
The kafka adapter provides integration with Apache Kafka for producing and consuming messages in
event-driven architectures. It ships five adapter classes — one for admin operations and two
sync/async pairs for producing and consuming.
| Class | Mode | Port |
|---|---|---|
KafkaAdminAdapter |
sync | KafkaAdminPort |
KafkaProducerAdapter |
sync | KafkaProducerPort |
KafkaConsumerAdapter |
sync | KafkaConsumerPort |
AsyncKafkaProducerAdapter |
async | AsyncKafkaProducerPort |
AsyncKafkaConsumerAdapter |
async | AsyncKafkaConsumerPort |
Ports¶
Abstract port interfaces defining the Kafka adapter contracts for sync and async message production and consumption.
archipy.adapters.kafka.ports.KafkaAdminPort ¶
Interface for Kafka admin operations.
This interface defines the contract for performing administrative operations on Kafka topics.
Source code in archipy/adapters/kafka/ports.py
archipy.adapters.kafka.ports.KafkaAdminPort.create_topic
abstractmethod
¶
Creates a new Kafka topic.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
topic
|
str
|
Name of the topic to create. |
required |
num_partitions
|
int
|
Number of partitions for the topic. Defaults to 1. |
1
|
replication_factor
|
int
|
Replication factor for the topic. Defaults to 1. |
1
|
Raises:
| Type | Description |
|---|---|
NotImplementedError
|
If the method is not implemented by the concrete class. |
Source code in archipy/adapters/kafka/ports.py
archipy.adapters.kafka.ports.KafkaAdminPort.delete_topic
abstractmethod
¶
Deletes one or more Kafka topics.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
topics
|
list[str]
|
List of topic names to delete. |
required |
Raises:
| Type | Description |
|---|---|
NotImplementedError
|
If the method is not implemented by the concrete class. |
Source code in archipy/adapters/kafka/ports.py
archipy.adapters.kafka.ports.KafkaAdminPort.list_topics
abstractmethod
¶
Lists Kafka topics.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
topic
|
str | None
|
Specific topic to list. If None, lists all topics. Defaults to None. |
None
|
timeout
|
int
|
Timeout in seconds for the operation. Defaults to 1. |
1
|
Returns:
| Name | Type | Description |
|---|---|---|
ClusterMetadata |
ClusterMetadata
|
Metadata about the Kafka cluster and topics. |
Raises:
| Type | Description |
|---|---|
NotImplementedError
|
If the method is not implemented by the concrete class. |
Source code in archipy/adapters/kafka/ports.py
archipy.adapters.kafka.ports.KafkaConsumerPort ¶
Interface for Kafka consumer operations.
This interface defines the contract for consuming messages from Kafka topics.
Source code in archipy/adapters/kafka/ports.py
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 | |
archipy.adapters.kafka.ports.KafkaConsumerPort.batch_consume
abstractmethod
¶
Consumes a batch of messages from subscribed topics.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
messages_number
|
int
|
Maximum number of messages to consume. |
required |
timeout
|
int
|
Timeout in seconds for the operation. |
required |
Returns:
| Type | Description |
|---|---|
list[Message]
|
list[Message]: List of consumed messages. |
Raises:
| Type | Description |
|---|---|
NotImplementedError
|
If the method is not implemented by the concrete class. |
Source code in archipy/adapters/kafka/ports.py
archipy.adapters.kafka.ports.KafkaConsumerPort.poll
abstractmethod
¶
Polls for a single message from subscribed topics.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
timeout
|
int
|
Timeout in seconds for the operation. |
required |
Returns:
| Type | Description |
|---|---|
Message | None
|
Message | None: The consumed message or None if no message was received. |
Raises:
| Type | Description |
|---|---|
NotImplementedError
|
If the method is not implemented by the concrete class. |
Source code in archipy/adapters/kafka/ports.py
archipy.adapters.kafka.ports.KafkaConsumerPort.commit
abstractmethod
¶
Commits the offset of a consumed message.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
message
|
Message
|
The message whose offset should be committed. |
required |
asynchronous
|
bool
|
Whether to commit asynchronously. |
required |
Returns:
| Type | Description |
|---|---|
None | list[TopicPartition]
|
None | list[TopicPartition]: None for synchronous commits, or list of committed partitions for asynchronous commits. |
Raises:
| Type | Description |
|---|---|
NotImplementedError
|
If the method is not implemented by the concrete class. |
Source code in archipy/adapters/kafka/ports.py
archipy.adapters.kafka.ports.KafkaConsumerPort.subscribe
abstractmethod
¶
Subscribes to a list of topics.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
topic_list
|
list[str]
|
List of topic names to subscribe to. |
required |
Raises:
| Type | Description |
|---|---|
NotImplementedError
|
If the method is not implemented by the concrete class. |
Source code in archipy/adapters/kafka/ports.py
archipy.adapters.kafka.ports.KafkaConsumerPort.assign
abstractmethod
¶
Assigns specific partitions to the consumer.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
partition_list
|
list[TopicPartition]
|
List of partitions to assign. |
required |
Raises:
| Type | Description |
|---|---|
NotImplementedError
|
If the method is not implemented by the concrete class. |
Source code in archipy/adapters/kafka/ports.py
archipy.adapters.kafka.ports.KafkaConsumerPort.close
abstractmethod
¶
Closes the consumer, leaving the consumer group and committing offsets.
Raises:
| Type | Description |
|---|---|
NotImplementedError
|
If the method is not implemented by the concrete class. |
Source code in archipy/adapters/kafka/ports.py
archipy.adapters.kafka.ports.KafkaProducerPort ¶
Interface for Kafka producer operations.
This interface defines the contract for producing messages to Kafka topics.
Source code in archipy/adapters/kafka/ports.py
archipy.adapters.kafka.ports.KafkaProducerPort.produce
abstractmethod
¶
Produces a message to the configured topic.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
message
|
str | bytes
|
The message to produce. |
required |
key
|
str | None
|
The key for the message. Defaults to None. |
None
|
Raises:
| Type | Description |
|---|---|
NotImplementedError
|
If the method is not implemented by the concrete class. |
Source code in archipy/adapters/kafka/ports.py
archipy.adapters.kafka.ports.KafkaProducerPort.flush
abstractmethod
¶
Flushes any pending messages to the broker.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
timeout
|
int | None
|
Maximum time to wait for messages to be delivered. If None, wait indefinitely. |
required |
Raises:
| Type | Description |
|---|---|
NotImplementedError
|
If the method is not implemented by the concrete class. |
Source code in archipy/adapters/kafka/ports.py
archipy.adapters.kafka.ports.KafkaProducerPort.validate_healthiness
abstractmethod
¶
Validates the health of the producer connection.
Raises:
| Type | Description |
|---|---|
NotImplementedError
|
If the method is not implemented by the concrete class. |
Source code in archipy/adapters/kafka/ports.py
archipy.adapters.kafka.ports.KafkaProducerPort.list_topics
abstractmethod
¶
Lists Kafka topics.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
topic
|
str | None
|
Specific topic to list. If None, lists all topics. |
required |
timeout
|
int
|
Timeout in seconds for the operation. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
ClusterMetadata |
ClusterMetadata
|
Metadata about the Kafka cluster and topics. |
Raises:
| Type | Description |
|---|---|
NotImplementedError
|
If the method is not implemented by the concrete class. |
Source code in archipy/adapters/kafka/ports.py
archipy.adapters.kafka.ports.KafkaProducerPort.close
abstractmethod
¶
Closes the producer, flushing any remaining messages.
Raises:
| Type | Description |
|---|---|
NotImplementedError
|
If the method is not implemented by the concrete class. |
archipy.adapters.kafka.ports.AsyncKafkaConsumerPort ¶
Async interface for Kafka consumer operations.
This interface defines the async contract for consuming messages from Kafka topics.
Source code in archipy/adapters/kafka/ports.py
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 | |
archipy.adapters.kafka.ports.AsyncKafkaConsumerPort.batch_consume
abstractmethod
async
¶
Consumes a batch of messages from subscribed topics.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
messages_number
|
int
|
Maximum number of messages to consume. |
required |
timeout
|
int
|
Timeout in seconds for the operation. |
required |
Returns:
| Type | Description |
|---|---|
list[Message]
|
list[Message]: List of consumed messages. |
Raises:
| Type | Description |
|---|---|
NotImplementedError
|
If the method is not implemented by the concrete class. |
Source code in archipy/adapters/kafka/ports.py
archipy.adapters.kafka.ports.AsyncKafkaConsumerPort.poll
abstractmethod
async
¶
Polls for a single message from subscribed topics.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
timeout
|
int
|
Timeout in seconds for the operation. |
required |
Returns:
| Type | Description |
|---|---|
Message | None
|
Message | None: The consumed message or None if no message was received. |
Raises:
| Type | Description |
|---|---|
NotImplementedError
|
If the method is not implemented by the concrete class. |
Source code in archipy/adapters/kafka/ports.py
archipy.adapters.kafka.ports.AsyncKafkaConsumerPort.commit
abstractmethod
async
¶
Commits the offset of a consumed message.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
message
|
Message
|
The message whose offset should be committed. |
required |
asynchronous
|
bool
|
Whether to commit asynchronously. |
required |
Returns:
| Type | Description |
|---|---|
None | list[TopicPartition]
|
None | list[TopicPartition]: None for synchronous commits, or list of committed partitions for asynchronous commits. |
Raises:
| Type | Description |
|---|---|
NotImplementedError
|
If the method is not implemented by the concrete class. |
Source code in archipy/adapters/kafka/ports.py
archipy.adapters.kafka.ports.AsyncKafkaConsumerPort.subscribe
abstractmethod
async
¶
Subscribes to a list of topics.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
topic_list
|
list[str]
|
List of topic names to subscribe to. |
required |
Raises:
| Type | Description |
|---|---|
NotImplementedError
|
If the method is not implemented by the concrete class. |
Source code in archipy/adapters/kafka/ports.py
archipy.adapters.kafka.ports.AsyncKafkaConsumerPort.assign
abstractmethod
async
¶
Assigns specific partitions to the consumer.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
partition_list
|
list[TopicPartition]
|
List of partitions to assign. |
required |
Raises:
| Type | Description |
|---|---|
NotImplementedError
|
If the method is not implemented by the concrete class. |
Source code in archipy/adapters/kafka/ports.py
archipy.adapters.kafka.ports.AsyncKafkaConsumerPort.close
abstractmethod
async
¶
Closes the consumer, leaving the consumer group and committing offsets.
Raises:
| Type | Description |
|---|---|
NotImplementedError
|
If the method is not implemented by the concrete class. |
Source code in archipy/adapters/kafka/ports.py
archipy.adapters.kafka.ports.AsyncKafkaProducerPort ¶
Async interface for Kafka producer operations.
This interface defines the async contract for producing messages to Kafka topics.
Source code in archipy/adapters/kafka/ports.py
archipy.adapters.kafka.ports.AsyncKafkaProducerPort.produce
abstractmethod
async
¶
Produces a message to the configured topic.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
message
|
str | bytes
|
The message to produce. |
required |
key
|
str | None
|
The key for the message. Defaults to None. |
None
|
Raises:
| Type | Description |
|---|---|
NotImplementedError
|
If the method is not implemented by the concrete class. |
Source code in archipy/adapters/kafka/ports.py
archipy.adapters.kafka.ports.AsyncKafkaProducerPort.flush
abstractmethod
async
¶
Flushes any pending messages to the broker.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
timeout
|
int | None
|
Maximum time to wait for messages to be delivered. If None, wait indefinitely. |
required |
Raises:
| Type | Description |
|---|---|
NotImplementedError
|
If the method is not implemented by the concrete class. |
Source code in archipy/adapters/kafka/ports.py
archipy.adapters.kafka.ports.AsyncKafkaProducerPort.validate_healthiness
abstractmethod
async
¶
Validates the health of the producer connection.
Raises:
| Type | Description |
|---|---|
NotImplementedError
|
If the method is not implemented by the concrete class. |
Source code in archipy/adapters/kafka/ports.py
archipy.adapters.kafka.ports.AsyncKafkaProducerPort.list_topics
abstractmethod
async
¶
Lists Kafka topics.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
topic
|
str | None
|
Specific topic to list. If None, lists all topics. |
required |
timeout
|
int
|
Timeout in seconds for the operation. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
ClusterMetadata |
ClusterMetadata
|
Metadata about the Kafka cluster and topics. |
Raises:
| Type | Description |
|---|---|
NotImplementedError
|
If the method is not implemented by the concrete class. |
Source code in archipy/adapters/kafka/ports.py
archipy.adapters.kafka.ports.AsyncKafkaProducerPort.close
abstractmethod
async
¶
Closes the producer, flushing any remaining messages.
Raises:
| Type | Description |
|---|---|
NotImplementedError
|
If the method is not implemented by the concrete class. |
options: show_root_toc_entry: false heading_level: 3
Adapters¶
Concrete Kafka adapter implementations for both sync and async producer/consumer patterns,
built on confluent_kafka and confluent_kafka.aio.
archipy.adapters.kafka.adapters.KafkaExceptionHandlerMixin ¶
Mixin class to handle Kafka exceptions in a consistent way.
Source code in archipy/adapters/kafka/adapters.py
archipy.adapters.kafka.adapters.KafkaAdminAdapter ¶
Bases: KafkaAdminPort, KafkaExceptionHandlerMixin
Synchronous Kafka admin adapter.
This adapter provides synchronous administrative operations for Kafka topics. It implements the KafkaAdminPort interface and handles topic creation, deletion, and listing operations.
Source code in archipy/adapters/kafka/adapters.py
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 | |
archipy.adapters.kafka.adapters.KafkaAdminAdapter.adapter
instance-attribute
¶
archipy.adapters.kafka.adapters.KafkaAdminAdapter.create_topic ¶
Creates a new Kafka topic.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
topic
|
str
|
Name of the topic to create. |
required |
num_partitions
|
int
|
Number of partitions for the topic. Defaults to 1. |
1
|
replication_factor
|
int
|
Replication factor for the topic. Defaults to 1. |
1
|
Raises:
| Type | Description |
|---|---|
InvalidArgumentError
|
If the topic name or partition configuration is invalid. |
ServiceUnavailableError
|
If the Kafka service is unavailable during topic creation. |
InternalError
|
If there is an internal error creating the topic. |
Source code in archipy/adapters/kafka/adapters.py
archipy.adapters.kafka.adapters.KafkaAdminAdapter.delete_topic ¶
Deletes one or more Kafka topics.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
topics
|
list[str]
|
List of topic names to delete. |
required |
Raises:
| Type | Description |
|---|---|
InvalidArgumentError
|
If the topics list is invalid. |
ServiceUnavailableError
|
If the Kafka service is unavailable during topic deletion. |
InternalError
|
If there is an internal error deleting the topics. |
Source code in archipy/adapters/kafka/adapters.py
archipy.adapters.kafka.adapters.KafkaAdminAdapter.list_topics ¶
Lists Kafka topics.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
topic
|
str | None
|
Specific topic to list. If None, lists all topics. Defaults to None. |
None
|
timeout
|
int
|
Timeout in seconds for the operation. Defaults to 1. |
1
|
Returns:
| Name | Type | Description |
|---|---|---|
ClusterMetadata |
ClusterMetadata
|
Metadata about the Kafka cluster and topics. |
Raises:
| Type | Description |
|---|---|
ConnectionTimeoutError
|
If the operation times out. |
ServiceUnavailableError
|
If the Kafka service is unavailable. |
UnavailableError
|
If there is an unknown issue accessing Kafka. |
Source code in archipy/adapters/kafka/adapters.py
archipy.adapters.kafka.adapters.KafkaConsumerAdapter ¶
Bases: KafkaConsumerPort, KafkaExceptionHandlerMixin
Synchronous Kafka consumer adapter.
This adapter provides synchronous message consumption from Kafka topics. It implements the KafkaConsumerPort interface and handles message polling, batch consumption, and offset management.
Source code in archipy/adapters/kafka/adapters.py
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 | |
archipy.adapters.kafka.adapters.KafkaConsumerAdapter.batch_consume ¶
Consumes a batch of messages from subscribed topics.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
messages_number
|
int
|
Maximum number of messages to consume. Defaults to 500. |
500
|
timeout
|
int
|
Timeout in seconds for the operation. Defaults to 1. |
1
|
Returns:
| Type | Description |
|---|---|
list[Message]
|
list[Message]: List of consumed messages. |
Raises:
| Type | Description |
|---|---|
ConnectionTimeoutError
|
If the operation times out. |
ServiceUnavailableError
|
If Kafka is unavailable. |
InternalError
|
If there is an error consuming messages. |
Source code in archipy/adapters/kafka/adapters.py
archipy.adapters.kafka.adapters.KafkaConsumerAdapter.poll ¶
Polls for a single message from subscribed topics.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
timeout
|
int
|
Timeout in seconds for the operation. Defaults to 1. |
1
|
Returns:
| Type | Description |
|---|---|
Message | None
|
Message | None: The consumed message or None if no message was received. |
Raises:
| Type | Description |
|---|---|
ConnectionTimeoutError
|
If the operation times out. |
ServiceUnavailableError
|
If Kafka is unavailable. |
InternalError
|
If there is an error polling for messages. |
Source code in archipy/adapters/kafka/adapters.py
archipy.adapters.kafka.adapters.KafkaConsumerAdapter.commit ¶
Commits the offset for a message.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
message
|
Message
|
The message to commit. |
required |
asynchronous
|
bool
|
Whether to commit asynchronously. Defaults to True. |
True
|
Returns:
| Type | Description |
|---|---|
None | list[TopicPartition]
|
None | list[TopicPartition]: None for async commits, list of TopicPartition for sync commits. |
Raises:
| Type | Description |
|---|---|
InvalidArgumentError
|
If the message is invalid. |
ServiceUnavailableError
|
If Kafka is unavailable. |
InternalError
|
If there is an error committing the offset. |
Source code in archipy/adapters/kafka/adapters.py
archipy.adapters.kafka.adapters.KafkaConsumerAdapter.subscribe ¶
Subscribes to a list of topics.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
topic_list
|
list[str]
|
List of topics to subscribe to. |
required |
Raises:
| Type | Description |
|---|---|
InvalidArgumentError
|
If the topic list is invalid. |
ServiceUnavailableError
|
If Kafka is unavailable. |
InternalError
|
If there is an error subscribing to topics. |
Source code in archipy/adapters/kafka/adapters.py
archipy.adapters.kafka.adapters.KafkaConsumerAdapter.assign ¶
Assigns the consumer to a list of topic partitions.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
partition_list
|
list[TopicPartition]
|
List of partitions to assign. |
required |
Raises:
| Type | Description |
|---|---|
InvalidArgumentError
|
If the partition list is invalid. |
ServiceUnavailableError
|
If Kafka is unavailable. |
InternalError
|
If there is an error assigning partitions. |
Source code in archipy/adapters/kafka/adapters.py
archipy.adapters.kafka.adapters.KafkaConsumerAdapter.close ¶
Closes the consumer, leaving the consumer group and committing offsets.
Raises:
| Type | Description |
|---|---|
ServiceUnavailableError
|
If Kafka is unavailable during close. |
InternalError
|
If there is an error closing the consumer. |
Source code in archipy/adapters/kafka/adapters.py
archipy.adapters.kafka.adapters.KafkaProducerAdapter ¶
Bases: KafkaProducerPort, KafkaExceptionHandlerMixin
Synchronous Kafka producer adapter.
This adapter provides synchronous message production to Kafka topics. It implements the KafkaProducerPort interface and handles message production.
Source code in archipy/adapters/kafka/adapters.py
426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 | |
archipy.adapters.kafka.adapters.KafkaProducerAdapter.produce ¶
Produces a message to the configured topic.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
message
|
str | bytes
|
The message to produce. |
required |
key
|
str | None
|
The key for the message. Defaults to None. |
None
|
Raises:
| Type | Description |
|---|---|
NetworkError
|
If there is a network error producing the message. |
ResourceExhaustedError
|
If the producer queue is full. |
InternalError
|
If there is an error producing the message. |
Source code in archipy/adapters/kafka/adapters.py
archipy.adapters.kafka.adapters.KafkaProducerAdapter.flush ¶
Flushes the producer queue.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
timeout
|
int | None
|
Timeout in seconds for the operation. Defaults to None. |
None
|
Raises:
| Type | Description |
|---|---|
ConnectionTimeoutError
|
If the operation times out. |
ServiceUnavailableError
|
If Kafka is unavailable. |
InternalError
|
If there is an error flushing the queue. |
Source code in archipy/adapters/kafka/adapters.py
archipy.adapters.kafka.adapters.KafkaProducerAdapter.validate_healthiness ¶
Validates the health of the Kafka connection.
Raises:
| Type | Description |
|---|---|
UnavailableError
|
If the Kafka service is unavailable. |
Source code in archipy/adapters/kafka/adapters.py
archipy.adapters.kafka.adapters.KafkaProducerAdapter.list_topics ¶
Lists Kafka topics.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
topic
|
str | None
|
Specific topic to list. If None, lists all topics. Defaults to None. |
None
|
timeout
|
int
|
Timeout in seconds for the operation. Defaults to 1. |
1
|
Returns:
| Name | Type | Description |
|---|---|---|
ClusterMetadata |
ClusterMetadata
|
Metadata about the Kafka cluster and topics. |
Raises:
| Type | Description |
|---|---|
ConnectionTimeoutError
|
If the operation times out. |
ServiceUnavailableError
|
If the Kafka service is unavailable. |
UnavailableError
|
If there is an unknown issue accessing Kafka. |
Source code in archipy/adapters/kafka/adapters.py
archipy.adapters.kafka.adapters.KafkaProducerAdapter.close ¶
Closes the producer, flushing any remaining messages.
Raises:
| Type | Description |
|---|---|
ConnectionTimeoutError
|
If the flush times out. |
ServiceUnavailableError
|
If Kafka is unavailable during close. |
InternalError
|
If there is an error closing the producer. |
Source code in archipy/adapters/kafka/adapters.py
archipy.adapters.kafka.adapters.AsyncKafkaProducerAdapter ¶
Bases: AsyncKafkaProducerPort, KafkaExceptionHandlerMixin
Async Kafka producer adapter.
This adapter provides async message production to Kafka topics using AIOProducer. It implements the AsyncKafkaProducerPort interface.
Source code in archipy/adapters/kafka/adapters.py
628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 | |
archipy.adapters.kafka.adapters.AsyncKafkaProducerAdapter.produce
async
¶
Produces a message to the configured topic asynchronously.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
message
|
str | bytes
|
The message to produce. |
required |
key
|
str | None
|
The key for the message. Defaults to None. |
None
|
Raises:
| Type | Description |
|---|---|
NetworkError
|
If there is a network error producing the message. |
ResourceExhaustedError
|
If the producer queue is full. |
InternalError
|
If there is an error producing the message. |
Source code in archipy/adapters/kafka/adapters.py
archipy.adapters.kafka.adapters.AsyncKafkaProducerAdapter.flush
async
¶
Flushes the producer queue asynchronously.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
timeout
|
int | None
|
Timeout in seconds for the operation. Defaults to None. |
None
|
Raises:
| Type | Description |
|---|---|
ConnectionTimeoutError
|
If the operation times out. |
ServiceUnavailableError
|
If Kafka is unavailable. |
InternalError
|
If there is an error flushing the queue. |
Source code in archipy/adapters/kafka/adapters.py
archipy.adapters.kafka.adapters.AsyncKafkaProducerAdapter.validate_healthiness
async
¶
Validates the health of the async Kafka producer connection.
Raises:
| Type | Description |
|---|---|
UnavailableError
|
If the Kafka service is unavailable. |
Source code in archipy/adapters/kafka/adapters.py
archipy.adapters.kafka.adapters.AsyncKafkaProducerAdapter.list_topics
async
¶
Lists Kafka topics asynchronously.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
topic
|
str | None
|
Specific topic to list. If None, lists all topics. Defaults to None. |
None
|
timeout
|
int
|
Timeout in seconds for the operation. Defaults to 1. |
1
|
Returns:
| Name | Type | Description |
|---|---|---|
ClusterMetadata |
ClusterMetadata
|
Metadata about the Kafka cluster and topics. |
Raises:
| Type | Description |
|---|---|
ConnectionTimeoutError
|
If the operation times out. |
ServiceUnavailableError
|
If the Kafka service is unavailable. |
UnavailableError
|
If there is an unknown issue accessing Kafka. |
Source code in archipy/adapters/kafka/adapters.py
archipy.adapters.kafka.adapters.AsyncKafkaProducerAdapter.close
async
¶
Closes the async producer, flushing any remaining messages.
Raises:
| Type | Description |
|---|---|
ConnectionTimeoutError
|
If the flush times out. |
ServiceUnavailableError
|
If Kafka is unavailable during close. |
InternalError
|
If there is an error closing the producer. |
Source code in archipy/adapters/kafka/adapters.py
archipy.adapters.kafka.adapters.AsyncKafkaConsumerAdapter ¶
Bases: AsyncKafkaConsumerPort, KafkaExceptionHandlerMixin
Async Kafka consumer adapter.
This adapter provides async message consumption from Kafka topics using AIOConsumer. It implements the AsyncKafkaConsumerPort interface.
Source code in archipy/adapters/kafka/adapters.py
826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 | |
archipy.adapters.kafka.adapters.AsyncKafkaConsumerAdapter.batch_consume
async
¶
Consumes a batch of messages from subscribed topics asynchronously.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
messages_number
|
int
|
Maximum number of messages to consume. Defaults to 500. |
500
|
timeout
|
int
|
Timeout in seconds for the operation. Defaults to 1. |
1
|
Returns:
| Type | Description |
|---|---|
list[Message]
|
list[Message]: List of consumed messages. |
Raises:
| Type | Description |
|---|---|
ConnectionTimeoutError
|
If the operation times out. |
ServiceUnavailableError
|
If Kafka is unavailable. |
InternalError
|
If there is an error consuming messages. |
Source code in archipy/adapters/kafka/adapters.py
archipy.adapters.kafka.adapters.AsyncKafkaConsumerAdapter.poll
async
¶
Polls for a single message from subscribed topics asynchronously.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
timeout
|
int
|
Timeout in seconds for the operation. Defaults to 1. |
1
|
Returns:
| Type | Description |
|---|---|
Message | None
|
Message | None: The consumed message or None if no message was received. |
Raises:
| Type | Description |
|---|---|
ConnectionTimeoutError
|
If the operation times out. |
ServiceUnavailableError
|
If Kafka is unavailable. |
InternalError
|
If there is an error polling for messages. |
Source code in archipy/adapters/kafka/adapters.py
archipy.adapters.kafka.adapters.AsyncKafkaConsumerAdapter.commit
async
¶
Commits the offset for a message asynchronously.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
message
|
Message
|
The message to commit. |
required |
asynchronous
|
bool
|
Whether to commit asynchronously. Defaults to True. |
True
|
Returns:
| Type | Description |
|---|---|
None | list[TopicPartition]
|
None | list[TopicPartition]: None for async commits, list of TopicPartition for sync commits. |
Raises:
| Type | Description |
|---|---|
InvalidArgumentError
|
If the message is invalid. |
ServiceUnavailableError
|
If Kafka is unavailable. |
InternalError
|
If there is an error committing the offset. |
Source code in archipy/adapters/kafka/adapters.py
archipy.adapters.kafka.adapters.AsyncKafkaConsumerAdapter.subscribe
async
¶
Subscribes to a list of topics asynchronously.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
topic_list
|
list[str]
|
List of topics to subscribe to. |
required |
Raises:
| Type | Description |
|---|---|
InvalidArgumentError
|
If the topic list is invalid. |
ServiceUnavailableError
|
If Kafka is unavailable. |
InternalError
|
If there is an error subscribing to topics. |
Source code in archipy/adapters/kafka/adapters.py
archipy.adapters.kafka.adapters.AsyncKafkaConsumerAdapter.assign
async
¶
Assigns the async consumer to a list of topic partitions.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
partition_list
|
list[TopicPartition]
|
List of partitions to assign. |
required |
Raises:
| Type | Description |
|---|---|
InvalidArgumentError
|
If the partition list is invalid. |
ServiceUnavailableError
|
If Kafka is unavailable. |
InternalError
|
If there is an error assigning partitions. |
Source code in archipy/adapters/kafka/adapters.py
archipy.adapters.kafka.adapters.AsyncKafkaConsumerAdapter.close
async
¶
Closes the async consumer, leaving the consumer group and committing offsets.
Raises:
| Type | Description |
|---|---|
ServiceUnavailableError
|
If Kafka is unavailable during close. |
InternalError
|
If there is an error closing the consumer. |
Source code in archipy/adapters/kafka/adapters.py
options: show_root_toc_entry: false heading_level: 3