| # |
| # Licensed to the Apache Software Foundation (ASF) under one |
| # or more contributor license agreements. See the NOTICE file |
| # distributed with this work for additional information |
| # regarding copyright ownership. The ASF licenses this file |
| # to you under the Apache License, Version 2.0 (the |
| # "License"); you may not use this file except in compliance |
| # with the License. You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| # See the License for the specific language governing permissions and |
| # limitations under the License. |
| # |
| |
| ######### Notification Configs ######### |
| atlas.notification.embedded=true |
| |
| atlas.kafka.zookeeper.connect=localhost:19026 |
| atlas.kafka.bootstrap.servers=localhost:19027 |
| atlas.kafka.data=${sys:atlas.data}/kafka |
| atlas.kafka.zookeeper.session.timeout.ms=4000 |
| atlas.kafka.zookeeper.sync.time.ms=20 |
| atlas.kafka.consumer.timeout.ms=100 |
| atlas.kafka.auto.commit.interval.ms=100 |
| atlas.kafka.hook.group.id=atlas |
| atlas.kafka.entities.group.id=atlas_entities |
| atlas.kafka.auto.commit.enable=false |
| |
| ######## JAAS configs ################## |
| |
| atlas.jaas.KafkaClient.loginModuleName = com.sun.security.auth.module.Krb5LoginModule |
| atlas.jaas.KafkaClient.loginModuleControlFlag = required |
| atlas.jaas.KafkaClient.option.useKeyTab = true |
| atlas.jaas.KafkaClient.option.storeKey = true |
| atlas.jaas.KafkaClient.option.serviceName = kafka |
| atlas.jaas.KafkaClient.option.keyTab = /etc/security/keytabs/kafka_client.keytab |
| atlas.jaas.KafkaClient.option.principal = kafka-client-1/_HOST@EXAMPLE.COM |
| |
| atlas.jaas.myClient.0.loginModuleName = com.sun.security.auth.module.Krb5LoginModule |
| atlas.jaas.myClient.0.loginModuleControlFlag = required |
| atlas.jaas.myClient.0.option.useKeyTab = true |
| atlas.jaas.myClient.0.option.storeKey = true |
| atlas.jaas.myClient.0.option.serviceName = kafka |
| atlas.jaas.myClient.0.option.keyTab = /etc/security/keytabs/kafka_client.keytab |
| atlas.jaas.myClient.0.option.principal = kafka-client-1/abcd@EXAMPLE.COM |
| |
| atlas.jaas.myClient.1.loginModuleName = com.sun.security.auth.module.Krb5LoginModule |
| atlas.jaas.myClient.1.loginModuleControlFlag = optional |
| atlas.jaas.myClient.1.option.useKeyTab = true |
| atlas.jaas.myClient.1.option.storeKey = true |
| atlas.jaas.myClient.1.option.serviceName = kafka |
| atlas.jaas.myClient.1.option.keyTab = /etc/security/keytabs/kafka_client.keytab |
| atlas.jaas.myClient.1.option.principal = kafka-client-1@EXAMPLE.COM |
| |
| |
| atlas.jaas.ticketBased-KafkaClient.loginModuleControlFlag=required |
| atlas.jaas.ticketBased-KafkaClient.loginModuleName=com.sun.security.auth.module.Krb5LoginModule |
| atlas.jaas.ticketBased-KafkaClient.option.useTicketCache=true |