KafkaBroker
faststream.confluent.broker.KafkaBroker
#
KafkaBroker(
bootstrap_servers="localhost",
*,
request_timeout_ms=40 * 1000,
retry_backoff_ms=100,
metadata_max_age_ms=5 * 60 * 1000,
connections_max_idle_ms=9 * 60 * 1000,
client_id=SERVICE_NAME,
allow_auto_create_topics=True,
config=None,
acks=EMPTY,
compression_type=None,
partitioner="consistent_random",
max_request_size=1024 * 1024,
linger_ms=0,
enable_idempotence=False,
transactional_id=None,
transaction_timeout_ms=60 * 1000,
graceful_timeout=15.0,
decoder=None,
parser=None,
dependencies=(),
middlewares=(),
routers=(),
security=None,
specification_url=None,
protocol=None,
protocol_version="auto",
description=None,
tags=(),
logger=EMPTY,
log_level=INFO,
apply_types=True,
provider=None,
serializer=EMPTY,
context=None,
)
Bases: KafkaRegistrator
, BrokerUsecase[Message | tuple[Message, ...], Callable[..., AsyncConfluentConsumer]]
Initialize KafkaBroker.
PARAMETER | DESCRIPTION |
---|---|
bootstrap_servers
|
A This does not have to be the full node list. It just needs to have at least one broker that will respond to a Metadata API Request. Default port is 9092.
TYPE:
|
request_timeout_ms
|
Client request timeout in milliseconds.
TYPE:
|
retry_backoff_ms
|
Milliseconds to backoff when retrying on errors.
TYPE:
|
metadata_max_age_ms
|
The period of time in milliseconds after which we force a refresh of metadata even if we haven't seen any partition leadership changes to proactively discover any new brokers or partitions.
TYPE:
|
connections_max_idle_ms
|
Close idle connections after the number
of milliseconds specified by this config. Specifying
TYPE:
|
client_id
|
A name for this client. This string is passed in
each request to servers and can be used to identify specific
server-side log entries that correspond to this client. Also
submitted to :class:
TYPE:
|
allow_auto_create_topics
|
Allow automatic topic creation on the broker when subscribing to or assigning non-existent topics.
TYPE:
|
config
|
Extra configuration for the confluent-kafka-python
producer/consumer. See
TYPE:
|
acks
|
One of
If unset, defaults to
TYPE:
|
compression_type
|
The compression type for all data generated bythe producer. Compression is of full batches of data, so the efficacy of batching will also impact the compression ratio (more batching means better compression).
TYPE:
|
partitioner
|
Callable used to determine which partition
each message is assigned to. Called (after key serialization):
TYPE:
|
max_request_size
|
The maximum size of a request. This is also effectively a cap on the maximum record size. Note that the server has its own cap on record size which may be different from this. This setting will limit the number of record batches the producer will send in a single request to avoid sending huge requests.
TYPE:
|
linger_ms
|
The producer groups together any records that arrive
in between request transmissions into a single batched request.
Normally this occurs only under load when records arrive faster
than they can be sent out. However in some circumstances the client
may want to reduce the number of requests even under moderate load.
This setting accomplishes this by adding a small amount of
artificial delay; that is, if first request is processed faster,
than
TYPE:
|
enable_idempotence
|
When set to
TYPE:
|
transactional_id
|
Transactional ID for the producer.
TYPE:
|
transaction_timeout_ms
|
Transaction timeout in milliseconds.
TYPE:
|
graceful_timeout
|
Graceful shutdown timeout. Broker waits for all running subscribers completion before shut down.
TYPE:
|
decoder
|
Custom decoder object.
TYPE:
|
parser
|
Custom parser object.
TYPE:
|
dependencies
|
Dependencies to apply to all broker subscribers.
TYPE:
|
middlewares
|
Middlewares to apply to all broker publishers/subscribers.
TYPE:
|
routers
|
Routers to apply to broker.
TYPE:
|
security
|
Security options to connect broker and generate AsyncAPI server security information.
TYPE:
|
specification_url
|
AsyncAPI hardcoded server addresses. Use
TYPE:
|
protocol
|
AsyncAPI server protocol.
TYPE:
|
protocol_version
|
AsyncAPI server protocol version.
TYPE:
|
description
|
AsyncAPI server description.
TYPE:
|
tags
|
AsyncAPI server tags. |
logger
|
User specified logger to pass into Context and log service messages.
TYPE:
|
log_level
|
Service messages log level.
TYPE:
|
apply_types
|
Whether to use FastDepends or not.
TYPE:
|
serializer
|
Serializer for FastDepends.
TYPE:
|
provider
|
Provider for FastDepends.
TYPE:
|
context
|
Context for FastDepends.
TYPE:
|
Source code in faststream/confluent/broker/broker.py
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 |
|
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,
partitions: Sequence[TopicPartition] = (),
polling_interval: float = 0.1,
group_id: str | None = None,
group_instance_id: str | None = None,
fetch_max_wait_ms: int = 500,
fetch_max_bytes: int = 50 * 1024 * 1024,
fetch_min_bytes: int = 1,
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[str] = (
"roundrobin",
),
max_poll_interval_ms: int = 5 * 60 * 1000,
session_timeout_ms: int = 10 * 1000,
heartbeat_interval_ms: int = 3 * 1000,
isolation_level: Literal[
"read_uncommitted", "read_committed"
] = "read_uncommitted",
batch: Literal[False] = False,
max_records: int | None = None,
persistent: bool = True,
dependencies: Iterable[Dependant] = (),
parser: Optional[CustomCallable] = None,
decoder: Optional[CustomCallable] = None,
middlewares: Sequence[
SubscriberMiddleware[KafkaMessage]
] = (),
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,
partitions: Sequence[TopicPartition] = (),
polling_interval: float = 0.1,
group_id: None = None,
group_instance_id: None = None,
fetch_max_wait_ms: int = 500,
fetch_max_bytes: int = 50 * 1024 * 1024,
fetch_min_bytes: int = 1,
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[str] = (
"roundrobin",
),
max_poll_interval_ms: int = 5 * 60 * 1000,
session_timeout_ms: int = 10 * 1000,
heartbeat_interval_ms: int = 3 * 1000,
isolation_level: Literal[
"read_uncommitted", "read_committed"
] = "read_uncommitted",
batch: Literal[True] = ...,
max_records: int | None = None,
persistent: bool = True,
dependencies: Iterable[Dependant] = (),
parser: Optional[CustomCallable] = None,
decoder: Optional[CustomCallable] = None,
middlewares: Sequence[
SubscriberMiddleware[KafkaMessage]
] = (),
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,
partitions: Sequence[TopicPartition] = (),
polling_interval: float = 0.1,
group_id: str | None = None,
group_instance_id: str | None = None,
fetch_max_wait_ms: int = 500,
fetch_max_bytes: int = 50 * 1024 * 1024,
fetch_min_bytes: int = 1,
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[str] = (
"roundrobin",
),
max_poll_interval_ms: int = 5 * 60 * 1000,
session_timeout_ms: int = 10 * 1000,
heartbeat_interval_ms: int = 3 * 1000,
isolation_level: Literal[
"read_uncommitted", "read_committed"
] = "read_uncommitted",
batch: Literal[False] = False,
max_records: int | None = None,
persistent: bool = True,
dependencies: Iterable[Dependant] = (),
parser: Optional[CustomCallable] = None,
decoder: Optional[CustomCallable] = None,
middlewares: Sequence[
SubscriberMiddleware[KafkaMessage]
] = (),
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,
partitions: Sequence[TopicPartition] = (),
polling_interval: float = 0.1,
group_id: str | None = None,
group_instance_id: str | None = None,
fetch_max_wait_ms: int = 500,
fetch_max_bytes: int = 50 * 1024 * 1024,
fetch_min_bytes: int = 1,
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[str] = (
"roundrobin",
),
max_poll_interval_ms: int = 5 * 60 * 1000,
session_timeout_ms: int = 10 * 1000,
heartbeat_interval_ms: int = 3 * 1000,
isolation_level: Literal[
"read_uncommitted", "read_committed"
] = "read_uncommitted",
batch: bool = False,
max_records: int | None = None,
persistent: bool = True,
dependencies: Iterable[Dependant] = (),
parser: Optional[CustomCallable] = None,
decoder: Optional[CustomCallable] = None,
middlewares: Sequence[
SubscriberMiddleware[KafkaMessage]
] = (),
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,
]
subscriber(
*topics,
partitions=(),
polling_interval=0.1,
group_id=None,
group_instance_id=None,
fetch_max_wait_ms=500,
fetch_max_bytes=50 * 1024 * 1024,
fetch_min_bytes=1,
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=("roundrobin",),
max_poll_interval_ms=5 * 60 * 1000,
session_timeout_ms=10 * 1000,
heartbeat_interval_ms=3 * 1000,
isolation_level="read_uncommitted",
batch=False,
max_records=None,
persistent=True,
dependencies=(),
parser=None,
decoder=None,
middlewares=(),
no_ack=EMPTY,
ack_policy=EMPTY,
no_reply=False,
title=None,
description=None,
include_in_schema=True,
max_workers=None,
)
Create a subscriber for Kafka topics.
PARAMETER | DESCRIPTION |
---|---|
*topics
|
Kafka topics to consume messages from.
TYPE:
|
partitions
|
Sequence of topic partitions.
TYPE:
|
polling_interval
|
Polling interval in seconds.
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:
|
group_instance_id
|
A unique string that identifies the consumer instance. If set, the consumer is treated as a static member of the group and does not participate in consumer group management (e.g. partition assignment, rebalances). This can be used to assign partitions to specific consumers, rather than letting the group assign partitions based on consumer metadata.
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:
|
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:
|
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:
|
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:
|
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
|
Whether to consume messages in batches or not.
TYPE:
|
max_records
|
Number of messages to consume as one batch.
TYPE:
|
dependencies
|
Dependencies list (
TYPE:
|
parser
|
Parser to map original Message 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:
|
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
|
Whether to include operation in Specification schema or not.
TYPE:
|
max_workers
|
Number of workers to process messages concurrently.
TYPE:
|
persistent
|
Whether to make the subscriber persistent or not.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
Union[DefaultSubscriber, BatchSubscriber, ConcurrentDefaultSubscriber]
|
Union of DefaultSubscriber, BatchSubscriber, or ConcurrentDefaultSubscriber depending on the configuration. |
Source code in faststream/confluent/broker/registrator.py
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 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 |
|
publisher
#
publisher(
topic: str,
*,
key: bytes | str | 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 | str | 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 | str | None = None,
partition: int | None = None,
headers: dict[str, str] | None = None,
reply_to: str = "",
batch: bool = 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,
) -> 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
|
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/confluent/broker/registrator.py
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 |
|
include_router
#
Source code in faststream/confluent/broker/registrator.py
include_routers
#
connect
async
#
stop
async
#
Source code in faststream/confluent/broker/broker.py
close
async
#
Source code in faststream/confluent/broker/broker.py
start
async
#
publish
async
#
publish(
message: SendableMessage,
topic: str,
*,
key: bytes | str | None = None,
partition: int | None = None,
timestamp_ms: int | None = None,
headers: dict[str, str] | None = None,
correlation_id: str | None = None,
reply_to: str = "",
no_confirm: Literal[True] = ...,
) -> Future[Message | None]
publish(
message: SendableMessage,
topic: str,
*,
key: bytes | str | None = None,
partition: int | None = None,
timestamp_ms: int | None = None,
headers: dict[str, str] | None = None,
correlation_id: str | None = None,
reply_to: str = "",
no_confirm: Literal[False] = False,
) -> Message | None
publish(
message: SendableMessage,
topic: str,
*,
key: bytes | str | None = None,
partition: int | None = None,
timestamp_ms: int | None = None,
headers: dict[str, str] | None = None,
correlation_id: str | None = None,
reply_to: str = "",
no_confirm: bool = False,
) -> Future[Message | None] | Message | None
publish(
message,
topic,
*,
key=None,
partition=None,
timestamp_ms=None,
headers=None,
correlation_id=None,
reply_to="",
no_confirm=False,
)
Publish message directly.
This method allows you to publish message in not AsyncAPI-documented way. You can use it in another frameworks applications or to publish messages from time to time.
Please, use @broker.publisher(...)
or broker.publisher(...).publish(...)
instead in a regular way.
PARAMETER | DESCRIPTION |
---|---|
message
|
Message body to send.
TYPE:
|
topic
|
Topic where the message will be published.
TYPE:
|
key
|
Message key for partitioning.
TYPE:
|
partition
|
Specific partition to publish to.
TYPE:
|
timestamp_ms
|
Message timestamp in milliseconds.
TYPE:
|
headers
|
Message headers to store metainformation.
TYPE:
|
correlation_id
|
Manual message correlation_id setter. correlation_id is a useful option to trace messages.
TYPE:
|
reply_to
|
Reply message topic name to send response.
TYPE:
|
no_confirm
|
Do not wait for Kafka publish confirmation.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
Future[Message | None] | Message | None
|
asyncio.Future: Future object representing the publish operation. |
Source code in faststream/confluent/broker/broker.py
request
async
#
request(
message,
topic,
*,
key=None,
partition=None,
timestamp_ms=None,
headers=None,
correlation_id=None,
timeout=0.5,
)
Source code in faststream/confluent/broker/broker.py
publish_batch
async
#
publish_batch(
*messages,
topic,
partition=None,
timestamp_ms=None,
headers=None,
reply_to="",
correlation_id=None,
no_confirm=False,
)