How did you create Kafka in the k8s cluster? Can you share your config?
On Tue, Dec 5, 2017, 7:49 AM Artur Mrozowski wrote:
> Hi, has anyone experience with running Kafka streams application on
> Kuberentes?
>
> Do I have to define any in/outbound ports?
> Application fails because it cannot co
s=CLIENT://192.1.1.8:9092,REPLICATION://10.1.1.5:9093
,INTERNAL_PLAINTEXT://10.1.1.5:9094,INTERNAL_SASL://10.1.1.5:9095
On Fri, Nov 10, 2017 at 7:10 PM, Thomas Stringer
wrote:
Yep I'm familiar with that. Just curious where it's documented that, for
instance, the CLIENT listener is for cl
l+and+External+traffic
>
> On Fri, Nov 10, 2017 at 10:10 AM, Thomas Stringer
> wrote:
>
> > I've been working with Kafka broker listeners and I'm curious is there
> > any documentation that explains what all of them apply to? Such as
> > CLIENT, PLAINTEXT, SA
I've been working with Kafka broker listeners and I'm curious is there
any documentation that explains what all of them apply to? Such as
CLIENT, PLAINTEXT, SASL/SSL, etc. I see the encryption part of the
documentation, but is it just inferred what these listeners apply to?
Thank you in advance!
I've been working with Kafka broker listeners and I'm curious is there
any documentation that explains what all of them apply to? Such as
CLIENT, PLAINTEXT, SASL/SSL, etc. I see the encryption part of the
documentation, but is it just inferred what these listeners apply to?
Thank you in advanc
me:9090,PLAINTEXT://:9092
Also as I mentioned before the DNS should be only in the
"advertised.listeners".
Jakub
On Wed, Nov 8, 2017 at 10:06 PM, Thomas Stringer
wrote:
Thank you for the reply! I think I'm doing something wrong. I tried using
exactly verbatim what you had for li
2
advertised.listeners=CLIENT://my.public.dns.name:9090,PLAINTEXT://:9092
This will tell the listener to listen on your local ip addresses but to
advertise the DNS name.
Jakub
On Tue, Nov 7, 2017 at 11:04 PM, Thomas Stringer
wrote:
I can't seem to get a listeners and advertised.listeners con
I can't seem to get a listeners and advertised.listeners configuration for
server properties figured out so I can connect remotely with my producer
and consumers.
If I set it like this...
listeners=CLIENT://:9090,PLAINTEXT://:9092
advertised.listeners=CLIENT://:9090,PLAINTEXT://:9092
>From my ex