Hi, I have a question on Kafka transaction.id config related to atomic writes feature of Kafka11. If I have multiple producers across different JVMs, do i need to set transactional.id differently for each JVM. Does transaction.id controls the begin and ending of transactions.
If its not set unique, how would the following case be handled. T1.begin (Producer 1) T1.begin (Producer 2) T2.end (Producer 2) T2.end (Producer 1) -Sameer.