You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in my kafka environment, the auto creation of topics is disabled: auto.create.topics.enable = false
When i produce a record to a non-existing topic in a transaction, this results in a timeout (default 30seconds): Current transaction failed in state BeginCommit: 1 message(s) failed delivery (see individual delivery reports) Broker: Unknown topic or partition
Is there a option to immediately abort a transaction if the topic does not exist?
Waiting for a non-existent topic with auto.create.topics.enable = false makes no sense.
The text was updated successfully, but these errors were encountered:
Hi,
in my kafka environment, the auto creation of topics is disabled:
auto.create.topics.enable = false
When i produce a record to a non-existing topic in a transaction, this results in a timeout (default 30seconds):
Current transaction failed in state BeginCommit: 1 message(s) failed delivery (see individual delivery reports)
Broker: Unknown topic or partition
Is there a option to immediately abort a transaction if the topic does not exist?
Waiting for a non-existent topic with
auto.create.topics.enable = false
makes no sense.The text was updated successfully, but these errors were encountered: