Prepare Interview

Mock Exams

Make Homepage

Bookmark this page

Subscribe Email Address

Apache Kafka Interview Questions and Answers

Ques 21. What can you do with Kafka?

It can perform in several ways, such as:

  • In order to transmit data between two systems, we can build a real-time stream of data pipelines with it.
  • Also, we can build a real-time streaming platform with Kafka, that can actually react to the data.

Is it helpful? Add Comment View Comments
 

Ques 22. What is the purpose of retention period in Kafka cluster?

However, retention period retains all the published records within the Kafka cluster. It doesn’t check whether they have been consumed or not. Moreover, the records can be discarded by using a configuration setting for the retention period. And, it results as it can free up some space.

Is it helpful? Add Comment View Comments
 

Ques 23. What are the types of traditional method of message transfer?

Basically, there are two methods of the traditional message transfer method, such as:
  • Queuing: It is a method in which a pool of consumers may read a message from the server and each message goes to one of them.
  • Publish-Subscribe: Whereas in Publish-Subscribe, messages are broadcasted to all consumers.

Is it helpful? Add Comment View Comments
 

Ques 24. What does ISR stand in Kafka environment?

ISR refers to In Sync Replicas. These are generally classified as a set of message replicas which are synced to be leaders.

Is it helpful? Add Comment View Comments
 

Ques 25. What is Geo-Replication in Kafka?

For our cluster, Kafka MirrorMaker offers geo-replication. Basically, messages are replicated across multiple data centers or cloud regions, with MirrorMaker. So, it can be used in active/passive scenarios for backup and recovery; or also to place data closer to our users, or support data locality requirements.

Is it helpful? Add Comment View Comments
 

Most helpful rated by users:

©2024 WithoutBook