KafkaRouter
faststream.kafka.broker.KafkaRouter
#
KafkaRouter(
prefix="",
handlers=(),
*,
dependencies=(),
middlewares=(),
routers=(),
parser=None,
decoder=None,
include_in_schema=None,
)
Bases: KafkaRegistrator
, BrokerRouter[Union['ConsumerRecord', tuple['ConsumerRecord', ...]]]
Includable to KafkaBroker router.
Initialize KafkaRouter.
PARAMETER | DESCRIPTION |
---|---|
prefix
|
String prefix to add to all subscribers queues.
TYPE:
|
handlers
|
Route object to include.
TYPE:
|
dependencies
|
Dependencies list (
TYPE:
|
middlewares
|
Router middlewares to apply to all routers' publishers/subscribers.
TYPE:
|
routers
|
Routers to apply to broker.
TYPE:
|
parser
|
Parser to map original ConsumerRecord object to FastStream one.
TYPE:
|
decoder
|
Function to decode FastStream msg bytes body to python objects.
TYPE:
|
include_in_schema
|
Whetever to include operation in AsyncAPI schema or not.
TYPE:
|
Source code in faststream/kafka/broker/router.py
add_middleware
#
Append BrokerMiddleware to the end of middlewares list.
Current middleware will be used as a most inner of the stack.
Source code in faststream/_internal/broker/registrator.py
insert_middleware
#
Insert BrokerMiddleware to the start of middlewares list.
Current middleware will be used as a most outer of the stack.
Source code in faststream/_internal/broker/registrator.py
subscriber
#
subscriber(
*topics: str,
batch: Literal[False] = False,
group_id: str | None = None,
key_deserializer: Callable[[bytes], Any] | None = None,
value_deserializer: Callable[[bytes], Any]
| None = None,
fetch_max_bytes: int = 50 * 1024 * 1024,
fetch_min_bytes: int = 1,
fetch_max_wait_ms: int = 500,
max_partition_fetch_bytes: int = 1 * 1024 * 1024,
auto_offset_reset: Literal[
"latest", "earliest", "none"
] = "latest",
auto_commit: bool = EMPTY,
auto_commit_interval_ms: int = 5 * 1000,
check_crcs: bool = True,
partition_assignment_strategy: Sequence[
AbstractPartitionAssignor
] = (RoundRobinPartitionAssignor,),
max_poll_interval_ms: int = 5 * 60 * 1000,
rebalance_timeout_ms: int | None = None,
session_timeout_ms: int = 10 * 1000,
heartbeat_interval_ms: int = 3 * 1000,
consumer_timeout_ms: int = 200,
max_poll_records: int | None = None,
exclude_internal_topics: bool = True,
isolation_level: Literal[
"read_uncommitted", "read_committed"
] = "read_uncommitted",
batch_timeout_ms: int = 200,
max_records: int | None = None,
listener: Optional[ConsumerRebalanceListener] = None,
pattern: str | None = None,
partitions: Collection[TopicPartition] = (),
persistent: bool = True,
dependencies: Iterable[Dependant] = (),
parser: Optional[CustomCallable] = None,
decoder: Optional[CustomCallable] = None,
middlewares: Sequence[SubscriberMiddleware[Any]] = (),
no_ack: bool = EMPTY,
max_workers: None = None,
ack_policy: AckPolicy = EMPTY,
no_reply: bool = False,
title: str | None = None,
description: str | None = None,
include_in_schema: bool = True,
) -> DefaultSubscriber
subscriber(
*topics: str,
batch: Literal[True] = ...,
group_id: str | None = None,
key_deserializer: Callable[[bytes], Any] | None = None,
value_deserializer: Callable[[bytes], Any]
| None = None,
fetch_max_bytes: int = 50 * 1024 * 1024,
fetch_min_bytes: int = 1,
fetch_max_wait_ms: int = 500,
max_partition_fetch_bytes: int = 1 * 1024 * 1024,
auto_offset_reset: Literal[
"latest", "earliest", "none"
] = "latest",
auto_commit: bool = EMPTY,
auto_commit_interval_ms: int = 5 * 1000,
check_crcs: bool = True,
partition_assignment_strategy: Sequence[
AbstractPartitionAssignor
] = (RoundRobinPartitionAssignor,),
max_poll_interval_ms: int = 5 * 60 * 1000,
rebalance_timeout_ms: int | None = None,
session_timeout_ms: int = 10 * 1000,
heartbeat_interval_ms: int = 3 * 1000,
consumer_timeout_ms: int = 200,
max_poll_records: int | None = None,
exclude_internal_topics: bool = True,
isolation_level: Literal[
"read_uncommitted", "read_committed"
] = "read_uncommitted",
batch_timeout_ms: int = 200,
max_records: int | None = None,
listener: Optional[ConsumerRebalanceListener] = None,
pattern: str | None = None,
partitions: Collection[TopicPartition] = (),
persistent: bool = True,
dependencies: Iterable[Dependant] = (),
parser: Optional[CustomCallable] = None,
decoder: Optional[CustomCallable] = None,
middlewares: Sequence[SubscriberMiddleware[Any]] = (),
no_ack: bool = EMPTY,
max_workers: None = None,
ack_policy: AckPolicy = EMPTY,
no_reply: bool = False,
title: str | None = None,
description: str | None = None,
include_in_schema: bool = True,
) -> BatchSubscriber
subscriber(
*topics: str,
batch: Literal[False] = False,
group_id: None = None,
key_deserializer: Callable[[bytes], Any] | None = None,
value_deserializer: Callable[[bytes], Any]
| None = None,
fetch_max_bytes: int = 50 * 1024 * 1024,
fetch_min_bytes: int = 1,
fetch_max_wait_ms: int = 500,
max_partition_fetch_bytes: int = 1 * 1024 * 1024,
auto_offset_reset: Literal[
"latest", "earliest", "none"
] = "latest",
auto_commit: bool = EMPTY,
auto_commit_interval_ms: int = 5 * 1000,
check_crcs: bool = True,
partition_assignment_strategy: Sequence[
AbstractPartitionAssignor
] = (RoundRobinPartitionAssignor,),
max_poll_interval_ms: int = 5 * 60 * 1000,
rebalance_timeout_ms: int | None = None,
session_timeout_ms: int = 10 * 1000,
heartbeat_interval_ms: int = 3 * 1000,
consumer_timeout_ms: int = 200,
max_poll_records: int | None = None,
exclude_internal_topics: bool = True,
isolation_level: Literal[
"read_uncommitted", "read_committed"
] = "read_uncommitted",
batch_timeout_ms: int = 200,
max_records: int | None = None,
listener: Optional[ConsumerRebalanceListener] = None,
pattern: str | None = None,
partitions: Collection[TopicPartition] = (),
persistent: bool = True,
dependencies: Iterable[Dependant] = (),
parser: Optional[CustomCallable] = None,
decoder: Optional[CustomCallable] = None,
middlewares: Sequence[SubscriberMiddleware[Any]] = (),
no_ack: bool = EMPTY,
max_workers: int = ...,
ack_policy: AckPolicy = EMPTY,
no_reply: bool = False,
title: str | None = None,
description: str | None = None,
include_in_schema: bool = True,
) -> ConcurrentDefaultSubscriber
subscriber(
*topics: str,
batch: Literal[False] = False,
group_id: str = ...,
key_deserializer: Callable[[bytes], Any] | None = None,
value_deserializer: Callable[[bytes], Any]
| None = None,
fetch_max_bytes: int = 50 * 1024 * 1024,
fetch_min_bytes: int = 1,
fetch_max_wait_ms: int = 500,
max_partition_fetch_bytes: int = 1 * 1024 * 1024,
auto_offset_reset: Literal[
"latest", "earliest", "none"
] = "latest",
auto_commit: bool = EMPTY,
auto_commit_interval_ms: int = 5 * 1000,
check_crcs: bool = True,
partition_assignment_strategy: Sequence[
AbstractPartitionAssignor
] = (RoundRobinPartitionAssignor,),
max_poll_interval_ms: int = 5 * 60 * 1000,
rebalance_timeout_ms: int | None = None,
session_timeout_ms: int = 10 * 1000,
heartbeat_interval_ms: int = 3 * 1000,
consumer_timeout_ms: int = 200,
max_poll_records: int | None = None,
exclude_internal_topics: bool = True,
isolation_level: Literal[
"read_uncommitted", "read_committed"
] = "read_uncommitted",
batch_timeout_ms: int = 200,
max_records: int | None = None,
listener: Optional[ConsumerRebalanceListener] = None,
pattern: str | None = None,
partitions: Collection[TopicPartition] = (),
persistent: bool = True,
dependencies: Iterable[Dependant] = (),
parser: Optional[CustomCallable] = None,
decoder: Optional[CustomCallable] = None,
middlewares: Sequence[SubscriberMiddleware[Any]] = (),
no_ack: bool = EMPTY,
max_workers: int = ...,
ack_policy: AckPolicy = EMPTY,
no_reply: bool = False,
title: str | None = None,
description: str | None = None,
include_in_schema: bool = True,
) -> ConcurrentBetweenPartitionsSubscriber
subscriber(
*topics: str,
batch: bool = False,
group_id: str | None = None,
key_deserializer: Callable[[bytes], Any] | None = None,
value_deserializer: Callable[[bytes], Any]
| None = None,
fetch_max_bytes: int = 50 * 1024 * 1024,
fetch_min_bytes: int = 1,
fetch_max_wait_ms: int = 500,
max_partition_fetch_bytes: int = 1 * 1024 * 1024,
auto_offset_reset: Literal[
"latest", "earliest", "none"
] = "latest",
auto_commit: bool = EMPTY,
auto_commit_interval_ms: int = 5 * 1000,
check_crcs: bool = True,
partition_assignment_strategy: Sequence[
AbstractPartitionAssignor
] = (RoundRobinPartitionAssignor,),
max_poll_interval_ms: int = 5 * 60 * 1000,
rebalance_timeout_ms: int | None = None,
session_timeout_ms: int = 10 * 1000,
heartbeat_interval_ms: int = 3 * 1000,
consumer_timeout_ms: int = 200,
max_poll_records: int | None = None,
exclude_internal_topics: bool = True,
isolation_level: Literal[
"read_uncommitted", "read_committed"
] = "read_uncommitted",
batch_timeout_ms: int = 200,
max_records: int | None = None,
listener: Optional[ConsumerRebalanceListener] = None,
pattern: str | None = None,
partitions: Collection[TopicPartition] = (),
persistent: bool = True,
dependencies: Iterable[Dependant] = (),
parser: Optional[CustomCallable] = None,
decoder: Optional[CustomCallable] = None,
middlewares: Sequence[SubscriberMiddleware[Any]] = (),
no_ack: bool = EMPTY,
max_workers: int | None = None,
ack_policy: AckPolicy = EMPTY,
no_reply: bool = False,
title: str | None = None,
description: str | None = None,
include_in_schema: bool = True,
) -> Union[
DefaultSubscriber,
BatchSubscriber,
ConcurrentDefaultSubscriber,
ConcurrentBetweenPartitionsSubscriber,
]
subscriber(
*topics,
batch=False,
group_id=None,
key_deserializer=None,
value_deserializer=None,
fetch_max_bytes=50 * 1024 * 1024,
fetch_min_bytes=1,
fetch_max_wait_ms=500,
max_partition_fetch_bytes=1 * 1024 * 1024,
auto_offset_reset="latest",
auto_commit=EMPTY,
auto_commit_interval_ms=5 * 1000,
check_crcs=True,
partition_assignment_strategy=(
RoundRobinPartitionAssignor,
),
max_poll_interval_ms=5 * 60 * 1000,
rebalance_timeout_ms=None,
session_timeout_ms=10 * 1000,
heartbeat_interval_ms=3 * 1000,
consumer_timeout_ms=200,
max_poll_records=None,
exclude_internal_topics=True,
isolation_level="read_uncommitted",
batch_timeout_ms=200,
max_records=None,
listener=None,
pattern=None,
partitions=(),
persistent=True,
dependencies=(),
parser=None,
decoder=None,
middlewares=(),
no_ack=EMPTY,
max_workers=None,
ack_policy=EMPTY,
no_reply=False,
title=None,
description=None,
include_in_schema=True,
)
Create a subscriber for Kafka topics.
PARAMETER | DESCRIPTION |
---|---|
*topics
|
Kafka topics to consume messages from.
TYPE:
|
batch
|
Whether to consume messages in batches or not.
TYPE:
|
group_id
|
Name of the consumer group to join for dynamic
partition assignment (if enabled), and to use for fetching and
committing offsets. If
TYPE:
|
key_deserializer
|
Any callable that takes a raw message
TYPE:
|
value_deserializer
|
Any callable that takes a raw message
TYPE:
|
fetch_max_bytes
|
The maximum amount of data the server should return for a fetch request. This is not an absolute maximum, if the first message in the first non-empty partition of the fetch is larger than this value, the message will still be returned to ensure that the consumer can make progress. NOTE: consumer performs fetches to multiple brokers in parallel so memory usage will depend on the number of brokers containing partitions for the topic.
TYPE:
|
fetch_min_bytes
|
Minimum amount of data the server should
return for a fetch request, otherwise wait up to
TYPE:
|
fetch_max_wait_ms
|
The maximum amount of time in milliseconds
the server will block before answering the fetch request if
there isn't sufficient data to immediately satisfy the
requirement given by
TYPE:
|
max_partition_fetch_bytes
|
The maximum amount of data
per-partition the server will return. The maximum total memory
used for a request
TYPE:
|
auto_offset_reset
|
A policy for resetting offsets on
TYPE:
|
auto_commit
|
If
TYPE:
|
auto_commit_interval_ms
|
Milliseconds between automatic
offset commits, if
TYPE:
|
check_crcs
|
Automatically check the CRC32 of the records consumed. This ensures no on-the-wire or on-disk corruption to the messages occurred. This check adds some overhead, so it may be disabled in cases seeking extreme performance.
TYPE:
|
partition_assignment_strategy
|
List of objects to use to distribute partition ownership amongst consumer instances when group management is used. This preference is implicit in the order of the strategies in the list. When assignment strategy changes: to support a change to the assignment strategy, new versions must enable support both for the old assignment strategy and the new one. The coordinator will choose the old assignment strategy until all members have been updated. Then it will choose the new strategy.
TYPE:
|
max_poll_interval_ms
|
Maximum allowed time between calls to consume messages in batches. If this interval is exceeded the consumer is considered failed and the group will rebalance in order to reassign the partitions to another consumer group member. If API methods block waiting for messages, that time does not count against this timeout.
TYPE:
|
rebalance_timeout_ms
|
The maximum time server will wait for this
consumer to rejoin the group in a case of rebalance. In Java client
this behaviour is bound to
TYPE:
|
session_timeout_ms
|
Client group session and failure detection
timeout. The consumer sends periodic heartbeats
(
TYPE:
|
heartbeat_interval_ms
|
The expected time in milliseconds
between heartbeats to the consumer coordinator when using
Kafka's group management feature. Heartbeats are used to ensure
that the consumer's session stays active and to facilitate
rebalancing when new consumers join or leave the group. The
value must be set lower than
TYPE:
|
consumer_timeout_ms
|
Maximum wait timeout for background fetching routine. Mostly defines how fast the system will see rebalance and request new data for new partitions.
TYPE:
|
max_poll_records
|
The maximum number of records returned in a single call by batch consumer. Has no limit by default.
TYPE:
|
exclude_internal_topics
|
Whether records from internal topics (such as offsets) should be exposed to the consumer. If set to True the only way to receive records from an internal topic is subscribing to it.
TYPE:
|
isolation_level
|
Controls how to read messages written transactionally.
Non-transactional messages will be returned unconditionally in either mode. Messages will always be returned in offset order. Hence, in
TYPE:
|
batch_timeout_ms
|
Milliseconds spent waiting if data is not available in the buffer. If 0, returns immediately with any records that are available currently in the buffer, else returns empty.
TYPE:
|
max_records
|
Number of messages to consume as one batch.
TYPE:
|
listener
|
Optionally include listener callback, which will be called before and after each rebalance operation. As part of group management, the consumer will keep track of the list of consumers that belong to a particular group and will trigger a rebalance operation if one of the following events trigger:
When any of these events are triggered, the provided listener will be invoked first to indicate that the consumer's assignment has been revoked, and then again when the new assignment has been received. Note that this listener will immediately override any listener set in a previous call to subscribe. It is guaranteed, however, that the partitions revoked/assigned through this interface are from topics subscribed in this call.
TYPE:
|
pattern
|
Pattern to match available topics. You must provide either topics or pattern, but not both.
TYPE:
|
partitions
|
An explicit partitions list to assign. You can't use 'topics' and 'partitions' in the same time.
TYPE:
|
dependencies
|
Dependencies list (
TYPE:
|
parser
|
Parser to map original ConsumerRecord object to FastStream one.
TYPE:
|
decoder
|
Function to decode FastStream msg bytes body to python objects.
TYPE:
|
middlewares
|
Subscriber middlewares to wrap incoming message processing.
TYPE:
|
max_workers
|
Number of workers to process messages concurrently.
TYPE:
|
no_ack
|
Whether to disable FastStream auto acknowledgement logic or not.
TYPE:
|
ack_policy
|
Acknowledgement policy for the subscriber.
TYPE:
|
no_reply
|
Whether to disable FastStream RPC and Reply To auto responses or not.
TYPE:
|
title
|
Specification subscriber object title.
TYPE:
|
description
|
Specification subscriber object description. " "Uses decorated docstring as default.
TYPE:
|
include_in_schema
|
Whetever to include operation in Specification schema or not.
TYPE:
|
persistent
|
Whether to make the subscriber persistent or not.
TYPE:
|
Source code in faststream/kafka/broker/registrator.py
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 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 626 627 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 |
|
publisher
#
publisher(
topic: str,
*,
key: bytes | Any | None = None,
partition: int | None = None,
headers: dict[str, str] | None = None,
reply_to: str = "",
batch: Literal[False] = False,
persistent: bool = True,
middlewares: Sequence[PublisherMiddleware] = (),
title: str | None = None,
description: str | None = None,
schema: Any | None = None,
include_in_schema: bool = True,
autoflush: bool = False,
) -> DefaultPublisher
publisher(
topic: str,
*,
key: bytes | Any | None = None,
partition: int | None = None,
headers: dict[str, str] | None = None,
reply_to: str = "",
batch: Literal[True] = ...,
persistent: bool = True,
middlewares: Sequence[PublisherMiddleware] = (),
title: str | None = None,
description: str | None = None,
schema: Any | None = None,
include_in_schema: bool = True,
autoflush: bool = False,
) -> BatchPublisher
publisher(
topic: str,
*,
key: bytes | Any | None = None,
partition: int | None = None,
headers: dict[str, str] | None = None,
reply_to: str = "",
batch: bool = False,
middlewares: Sequence[PublisherMiddleware] = (),
title: str | None = None,
description: str | None = None,
schema: Any | None = None,
include_in_schema: bool = True,
autoflush: bool = False,
) -> Union[BatchPublisher, DefaultPublisher]
publisher(
topic,
*,
key=None,
partition=None,
headers=None,
reply_to="",
batch=False,
persistent=True,
middlewares=(),
title=None,
description=None,
schema=None,
include_in_schema=True,
autoflush=False,
)
Creates long-living and Specification-documented publisher object.
You can use it as a handler decorator (handler should be decorated by @broker.subscriber(...)
too) - @broker.publisher(...)
.
In such case publisher will publish your handler return value.
Or you can create a publisher object to call it lately - broker.publisher(...).publish(...)
.
PARAMETER | DESCRIPTION |
---|---|
topic
|
Topic where the message will be published."
TYPE:
|
key
|
A key to associate with the message. Can be used to
determine which partition to send the message to. If partition
is
TYPE:
|
partition
|
Specify a partition. If not set, the partition will be
selected using the configured
TYPE:
|
headers
|
Message headers to store metainformation.
content-type and correlation_id will be set automatically by framework anyway.
Can be overridden by
TYPE:
|
reply_to
|
Topic name to send response.
TYPE:
|
batch
|
Whether to send messages in batches or not.
TYPE:
|
middlewares
|
middlewares: Publisher middlewares to wrap outgoing messages.
TYPE:
|
title
|
Specification publisher object title.
TYPE:
|
description
|
Specification publisher object description.
TYPE:
|
schema
|
Specification publishing message type.
Should be any python-native object annotation or
TYPE:
|
include_in_schema
|
Whetever to include operation in Specification schema or not.
TYPE:
|
autoflush
|
Whether to flush the producer or not on every publish call.
TYPE:
|
persistent
|
Whether to make the publisher persistent or not.
TYPE:
|
Source code in faststream/kafka/broker/registrator.py
805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 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 |
|