Bird
0
0

Given the following Kafka broker configuration snippet, what will be the effect on stored data?

medium📝 Predict Output Q4 of 15
Kafka - Security
Given the following Kafka broker configuration snippet, what will be the effect on stored data?
log.encryption.enable=true
log.encryption.key.provider=kms
AData will be sent encrypted over the network
BData will be stored without encryption
CData will be compressed before storage
DData will be encrypted at rest using keys from KMS
Step-by-Step Solution
Solution:
  1. Step 1: Analyze configuration properties

    log.encryption.enable=true enables encryption at rest; log.encryption.key.provider=kms specifies keys come from KMS.
  2. Step 2: Determine effect on stored data

    Stored data will be encrypted using keys managed by KMS, protecting data at rest.
  3. Final Answer:

    Data will be encrypted at rest using keys from KMS -> Option D
  4. Quick Check:

    Encryption enabled + KMS keys = Data encrypted at rest [OK]
Quick Trick: Enable encryption and specify KMS to encrypt stored data [OK]
Common Mistakes:
MISTAKES
  • Confusing encryption at rest with encryption in transit
  • Assuming data is compressed instead
  • Ignoring key provider setting

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Kafka Quizzes