1) Configure authorization in the broker
Configure Apache Kafka as per the previous tutorial. To enforce some custom authorization rules in Kafka, we will need to implement the Kafka Authorizer interface. This interface contains an "authorize" method, which supplies a Session Object, where you can obtain the current principal, as well as the Operation and Resource upon which to enforce an authorization decision.
In terms of the example detailed in the previous post, we created broker, service (producer) and client (consumer) principals. We want to enforce authorization decisions as follows:
- Let the broker principal do anything
- Let the producer principal read/write on all topics
- Let the consumer principal read/describe only on topics starting with "test".
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Override | |
public boolean authorize(Session arg0, Operation arg1, Resource arg2) { | |
if (arg0.principal() == null) { | |
return false; | |
} | |
String principal = arg0.principal().getName(); | |
if (principal.startsWith("CN=Client") | |
&& ("Read".equals(arg1.name()) || "Describe".equals(arg1.name())) | |
&& arg2.name().startsWith("test")) { | |
return true; | |
} else if (principal.startsWith("CN=Service") && ("Read".equals(arg1.name()) || "Describe".equals(arg1.name()) | |
|| "Write".equals(arg1.name()) || "Create".equals(arg1.name()))) { | |
return true; | |
} else if (principal.startsWith("CN=Broker")) { | |
return true; | |
} | |
return false; | |
} |
- authorizer.class.name=org.apache.coheigea.bigdata.kafka.CustomAuthorizer
Now lets test the authorization logic. Restart the broker and the producer:
- bin/kafka-server-start.sh config/server.properties
- bin/kafka-console-producer.sh --broker-list localhost:9092 --topic test --producer.config config/producer.properties
- bin/kafka-console-consumer.sh --bootstrap-server localhost:9092 --topic test --from-beginning --consumer.config config/consumer.properties --new-consumer
- bin/kafka-topics.sh --create --zookeeper localhost:2181 --replication-factor 1 --partitions 1 --topic messages
No comments:
Post a Comment