CCAAK · Question #2
When is the resource authorization checked while using Kafka ACLs?
The correct answer is A. Each time the resource is accessed. Kafka ACLs (Access Control Lists) perform authorization checks every time a client attempts to access a resource (e.g., topic, consumer group). This ensures continuous enforcement of permissions, not just at connection time or intervals. This approach provides fine-grained…
Question
When is the resource authorization checked while using Kafka ACLs?
Options
- AEach time the resource is accessed.
- BThe first time the resource is accessed.
- CEach time the resource is accessed within the configured authorization interval.
- DWhen the client connection is first established.
How the community answered
(61 responses)- A80% (49)
- B3% (2)
- C10% (6)
- D7% (4)
Explanation
Kafka ACLs (Access Control Lists) perform authorization checks every time a client attempts to access a resource (e.g., topic, consumer group). This ensures continuous enforcement of permissions, not just at connection time or intervals. This approach provides fine-grained security, preventing unauthorized actions at any time during a session.
Topics
Community Discussion
No community discussion yet for this question.