-
@cadzchua asked |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Fanout in Zilla manages the number of clients that connect to a Kafka cluster and provides a caching layer. Thousands of unique clients may need to read or write data. Zilla maintains an active connection pool to Kafka with just a few connections open to support all the traffic from the different clients. The caching layer in Zilla will improve read times for all clients. Zilla natively stays updated with changes on the underlying Kafka topics, ensuring that all clients experience enhanced performance. Another practical benefit of Fanout is that it removes the need for developers to understand the complexities of a Kafka topic. Zilla allows devs to stream data inside an application using standard protocols. |
Beta Was this translation helpful? Give feedback.
Fanout in Zilla manages the number of clients that connect to a Kafka cluster and provides a caching layer.
Thousands of unique clients may need to read or write data. Zilla maintains an active connection pool to Kafka with just a few connections open to support all the traffic from the different clients.
The caching layer in Zilla will improve read times for all clients. Zilla natively stays updated with changes on the underlying Kafka topics, ensuring that all clients experience enhanced performance.
Another practical benefit of Fanout is that it removes the need for developers to understand the complexities of a Kafka topic. Zilla allows devs to stream data inside an application using …