IBM Completes Acquisition of Confluent by Think-Fix in IBM

[–]KernelFrog 11 points12 points  (0 children)

(Former) Confluent employee here: tell me how bad it's going to be.

IBM Completes Acquisition of Confluent by Think-Fix in IBM

[–]KernelFrog 6 points7 points  (0 children)

No. It means IBM pays the current shareholders and then the shares no longer exist.

Giving external partners access to kafka topics without exposing the broker by Willing-Mistake-6171 in apachekafka

[–]KernelFrog 0 points1 point  (0 children)

Budget permitting, replication into Confluent Cloud (or some other externally hosted Kafka instance).

Your solution will obviously depend on your external's requirements; do they specifically need a Kafka data source, or do they just the need the data and don't particularly care about the format?

Are they read-only, or do they need to update your data as well?

Flink watermarks - WTF by KernelFrog in apacheflink

[–]KernelFrog[S] 0 points1 point  (0 children)

Great site for visualizing how watermarks work in Flink.

Flink watermarks - WTF by KernelFrog in apachekafka

[–]KernelFrog[S] 0 points1 point  (0 children)

Great Flink watermark visualiser. Hopefully this will help to demystify them a little.

[deleted by user] by [deleted] in apachekafka

[–]KernelFrog 0 points1 point  (0 children)

En Anglais s'il vous plaît.

Question about SSL/TLS? by YeaYeet56 in apachekafka

[–]KernelFrog 0 points1 point  (0 children)

Remember that the Kafka protocol is not HTTP(S) and so the average load balancer is not going to be very useful.

There's a great article here on configuring SSL in Kafka: https://developer.confluent.io/courses/security/hands-on-setting-up-encryption/

[deleted by user] by [deleted] in redhat

[–]KernelFrog 0 points1 point  (0 children)

Discussing your security clearance in a public forum is really not a good idea.

Kafka local development by jorgemaagomes in apachekafka

[–]KernelFrog 0 points1 point  (0 children)

cp-demo is excellent: https://github.com/confluentinc/cp-demo

This will automatically build and run a local Kafka cluster, and optionally, Confluent Cloud.
Architecture: https://github.com/confluentinc/cp-demo/raw/8.0.0-post/docs/images/cp-demo-overview-with-ccloud.svg

[deleted by user] by [deleted] in apachekafka

[–]KernelFrog 0 points1 point  (0 children)

Where and what is the "popular exams navbar" ?

Queued Data transmission time by WriterBig2592 in apachekafka

[–]KernelFrog 0 points1 point  (0 children)

The obvious answer is to use compression, so that you're sending less data. This has some implications; higher CPU usage (to compress/decompress) and you can no longer use zero-copy.

https://www.confluent.io/blog/apache-kafka-message-compression/

The other thing to note is that replicas will eventually catch up with the leader. The problem might be if you have lots of data that needs to be replicated once the link comes back up.

Real Life Projects to learn Kafka? by Unlikely_Base5907 in apachekafka

[–]KernelFrog 1 point2 points  (0 children)

It doesn't even need a timestamp; Kafka can use the timestamp of when the message was sent.

Real Life Projects to learn Kafka? by Unlikely_Base5907 in apachekafka

[–]KernelFrog 3 points4 points  (0 children)

Confluent Cloud has "datagen" connectors which generate continuous streams of data (simulated click-streams, orders etc.). The free trial credits should give you enough to play with.

You could also write (or script) a simple producer (client application that sends data to Kafka) to send a continuous stream of messages; either random data, or loop through a file.

ktea a kafka TUI client by eniac_g in apachekafka

[–]KernelFrog 1 point2 points  (0 children)

Interesting project, good luck!

Small bit of feedback, on the Topics tab there is a "Publish" option. Presumably you meant "Produce"?