Bird
0
0

Given this Kafka broker configuration snippet:

medium📝 Predict Output Q4 of 15
Kafka - Cluster Architecture
Given this Kafka broker configuration snippet:
num.network.threads=3
num.io.threads=8
socket.request.max.bytes=104857600

What is the maximum size in bytes of a request the broker will accept?
A3 bytes
B8 bytes
C104857600 bytes
DNot limited by these settings
Step-by-Step Solution
Solution:
  1. Step 1: Identify the relevant configuration for request size

    socket.request.max.bytes sets the maximum size in bytes for a request the broker accepts.
  2. Step 2: Read the value from the configuration

    The value is 104857600 bytes, which equals 100 MB.
  3. Final Answer:

    104857600 bytes -> Option C
  4. Quick Check:

    socket.request.max.bytes = max request size [OK]
Quick Trick: socket.request.max.bytes sets max request size in bytes [OK]
Common Mistakes:
  • Confusing thread counts with size limits
  • Assuming no limit without explicit setting
  • Mixing socket buffer sizes with request size

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Kafka Quizzes