Hey Bhavesh,
This would only work if both topics happened to be on the same machine,
which generally they wouldn't.
-Jay
On Tue, Oct 21, 2014 at 9:14 AM, Bhavesh Mistry
wrote:
> Hi Neha,
>
> All, I am saying is that if same byte[] or data has to go to two topics
> then, I have to call send tw
Hi Neha,
All, I am saying is that if same byte[] or data has to go to two topics
then, I have to call send twice and with same data has to transfer over the
wire twice (assuming the partition is on same broker for two topics, then
it not efficient.). If Kafka Protocol allows to set multiple topi
I'm not sure I understood your concern about invoking send() twice, once
with each topic. Are you worried about the network overhead? Whether Kafka
does this transparently or not, sending messages to different topics will
carry some overhead. I think the design of the API is much more intuitive
and
Hi Neha,
Yes, I understand that but when transmitting single message (I can not set
List of all topics) Only Single one. So I will to add same message in
buffer with different topic. If Kakfa protocol, allows to add multiple
topic then message does not have to be re-transmited over the wire to a
Not really. You need producers to send data to Kafka.
On Mon, Oct 20, 2014 at 9:05 PM, Bhavesh Mistry
wrote:
> Hi Kakfa Team,
>
>
> I would like to send a single message to multiple topics (two for now)
> without re-transmitting the message from producer to brokers. Is this
> possible?
>
> Both
Hi Kakfa Team,
I would like to send a single message to multiple topics (two for now)
without re-transmitting the message from producer to brokers. Is this
possible?
Both Producers Scala and Java does not allow this. I do not have to do
this all the time only based on application condition.