You need to correctly join data from two Kafka topics.
Which two scenarios will allow for co-partitioning?
(Select two.)
Which configuration allows more time for the consumer poll to process records?
Your Kafka cluster has five brokers. The topic t1 on the cluster has:
Two partitions
Replication factor = 4
min.insync.replicas = 3You need strong durability guarantees for messages written to topic t1.You configure a producer acks=all and all the replicas for t1 are in-sync.How many brokers need to acknowledge a message before it is considered committed?
Which two producer exceptions are examples of the class RetriableException? (Select two.)
Which configuration determines how many bytes of data are collected before sending messages to the Kafka broker?
This schema excerpt is an example of which schema format?
package com.mycorp.mynamespace;
message SampleRecord {
int32 Stock = 1;
double Price = 2;
string Product_Name = 3;
}
What are three built-in abstractions in the Kafka Streams DSL?
(Select three.)
Which statement describes the storage location for a sink connector’s offsets?
You are building a system for a retail store selling products to customers.
Which three datasets should you model as a GlobalKTable?
(Select three.)
An application is consuming messages from Kafka.
The application logs show that partitions are frequently being reassigned within the consumer group.
Which two factors may be contributing to this?
(Select two.)
You create a topic named loT-Data with 10 partitions and replication factor of three.
A producer sends 1 MB messages compressed with Gzip.
Which two statements are true in this scenario?
(Select two.)