Skip to content

Commit 15503ac

Browse files
author
Davinder Pal
committed
1. added bug fixes
2. added mirror maker configs 3. add splunk and newrelic configs
1 parent 0f8dfae commit 15503ac

35 files changed

+480
-52
lines changed

NewRelic-Infra.md

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# NewRelic Infra Configuration
2+
3+
* **Agent Version:** 1.30.0 or higher
4+
5+
**Example**
6+
```
7+
license_key: 1cfxxxxxxxxxxxxxxxxxxxxxxxxxxx72cd
8+
collector_url: https://infra-api.newrelic.com
9+
display_name: xxxxxxxxxxxxxxxxx
10+
11+
event_queue_depth: 5000
12+
13+
custom_attributes:
14+
label.env: xxx-kafka
15+
```

Readme.md

+24-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# Apache Kafka Ansible
22

3-
It is group of playbooks to manage apache kafka. It is also 100% compliant with ansible-lint rules.
3+
It is group of playbooks to manage apache kafka in paysafe group. It is also 100% compliant with ansible-lint rules.
44

55
## **Requirements**
66
* Download Apache Kafka Tar on Ansible Server ( Mandatory )
77
* vagrant (optional)
88
* Any OS with SystemD
9-
* ansible
9+
* Ansible
1010

1111
## **Notes***
1212
```
@@ -21,6 +21,8 @@ https://github.com/116davinder/zookeeper-cluster-ansible
2121

2222
# **Production Environment Setup**
2323

24+
## Apache Kafka Playbooks
25+
2426
### **To start new cluster**
2527
* Update Required vars in ```inventory/<environment>/group_vars/all.yml``` .
2628
* Update Required vars in ```inventory/<environment>/cluster.ini``` .
@@ -79,13 +81,32 @@ https://github.com/116davinder/zookeeper-cluster-ansible
7981

8082
```ansible-playbook -i inventory/<environment>/cluster.ini clusterRemoveNodes.yml```
8183

84+
## Apache Kafka Mirror Maker Playbooks
85+
86+
### **To start new cluster**
87+
* Update Required vars in ```inventory/<environment>/group_vars/kafka-mirror-maker.yml``` .
88+
* Update Required vars in ```inventory/<environment>/mirror-maker.ini``` .
89+
90+
```ansible-playbook -i inventory/<environment>/mirror-maker.ini clusterKafkaMirrorMaker.yml```
91+
92+
### **To Remove nodes from cluster**
93+
* Update Required vars in ```inventory/<environment>/group_vars/kafka-mirror-maker.yml``` .
94+
* Update Required vars in ```inventory/<environment>/mirror-maker.ini``` .
95+
96+
```ansible-playbook -i inventory/<environment>/mirror-maker.ini clusterKafkaMirrorMakerRemoveNodes.yml```
97+
98+
### **Rolling restart cluster**
99+
100+
```ansible-playbook -i inventory/<environment>/mirror-maker.ini clusterKafkaMirrorMakerRollingRestart.yml```
101+
102+
82103
### **Tested OS**
83104
* CentOS 7
84105
* RedHat 7
85106

86107
### **Tested Ansible Version**
87108
```
88-
ansible 2.7.10
109+
ansible 2.8.1
89110
config file = None
90111
configured module search path = ['/home/davinderpal/.ansible/plugins/modules', '/usr/share/ansible/plugins/modules']
91112
ansible python module location = /usr/local/lib/python3.6/dist-packages/ansible

Splunk-Config.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Splunk Logging Configuration
2+
3+
**Example**
4+
```
5+
[default]
6+
host = $HOSTNAME
7+
8+
[monitor:///kafka/kafka-logs/*.log]
9+
disabled = false
10+
index = kafka
11+
sourcetype = kafka
12+
crcSalt = <SOURCE>
13+
```

clusterAddNodes.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
include_role:
2424
name: portCheck
2525
vars:
26-
PortNumber: "{{ item }}"
27-
PortStatus: started
26+
portNumber: "{{ item }}"
27+
portStatus: started
2828
loop:
2929
- "{{ kafkaPort }}"
3030
- "{{ kafkaJmxPort }}"

clusterBrokerProperties.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
include_role:
2323
name: portCheck
2424
vars:
25-
PortNumber: "{{ item }}"
26-
PortStatus: started
25+
portNumber: "{{ item }}"
26+
portStatus: started
2727
loop:
2828
- "{{ kafkaPort }}"
2929
- "{{ kafkaJmxPort }}"

clusterDownGradeVersion.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@
3838
include_role:
3939
name: portCheck
4040
vars:
41-
PortNumber: "{{ item }}"
42-
PortStatus: started
41+
portNumber: "{{ item }}"
42+
portStatus: started
4343
loop:
4444
- "{{ kafkaPort }}"
4545
- "{{ kafkaJmxPort }}"

clusterJvmConfigs.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
include_role:
2121
name: portCheck
2222
vars:
23-
PortNumber: "{{ item }}"
24-
PortStatus: started
23+
portNumber: "{{ item }}"
24+
portStatus: started
2525
loop:
2626
- "{{ kafkaPort }}"
2727
- "{{ kafkaJmxPort }}"

clusterKafkaMirrorMaker.yml

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
---
2+
3+
- hosts: kafka-mirror-maker
4+
gather_facts: true
5+
roles:
6+
- java
7+
- common
8+
- install
9+
10+
- hosts: kafka-mirror-maker
11+
gather_facts: true
12+
tasks:
13+
- include_role:
14+
name: configure
15+
tasks_from: mirrorMaker.yml
16+
17+
- include_role:
18+
name: service
19+
tasks_from: kafka-mirror-maker.yml
20+
21+
- include_role:
22+
name: serviceState
23+
vars:
24+
serviceName: "kafka-mirror-maker-{{ item }}"
25+
serviceState: started
26+
loop: "{{ range(1, kafkaMirrorMakerProcessCountPerNode + 1, 1) | list }}"
27+
28+
- include_role:
29+
name: portCheck
30+
vars:
31+
portNumber: "{{ kafkaMirrorMakerJmxInitialPort + item }}"
32+
portStatus: started
33+
loop: "{{ range(1, kafkaMirrorMakerProcessCountPerNode + 1, 1) | list }}"
34+
35+
- hosts: kafka-mirror-maker
36+
gather_facts: true
37+
tasks:
38+
- include_role:
39+
name: nri-kafka
40+
tasks_from: kafka-mirror-maker.yml
+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
3+
- hosts: kafka-mirror-maker-remove-nodes
4+
gather_facts: true
5+
any_errors_fatal: true
6+
serial: 1
7+
tasks:
8+
- include_role:
9+
name: decomissionNodes
10+
tasks_from: kafka-mirror-maker.yml
+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
3+
- hosts: kafka-mirror-maker
4+
gather_facts: true
5+
serial: 1
6+
tasks:
7+
- include_role:
8+
name: serviceState
9+
vars:
10+
serviceName: "kafka-mirror-maker-{{ item }}"
11+
serviceState: restarted
12+
loop: "{{ range(1, kafkaMirrorMakerProcessCountPerNode + 1, 1) | list }}"
13+
14+
- include_role:
15+
name: portCheck
16+
vars:
17+
portNumber: "{{ kafkaMirrorMakerJmxInitialPort + item }}"
18+
portStatus: started
19+
loop: "{{ range(1, kafkaMirrorMakerProcessCountPerNode + 1, 1) | list }}"

clusterLogging.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
include_role:
2323
name: portCheck
2424
vars:
25-
PortNumber: "{{ item }}"
26-
PortStatus: started
25+
portNumber: "{{ item }}"
26+
portStatus: started
2727
loop:
2828
- "{{ kafkaPort }}"
2929
- "{{ kafkaJmxPort }}"

clusterRollingRestart.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
include_role:
1616
name: portCheck
1717
vars:
18-
PortNumber: "{{ item }}"
19-
PortStatus: started
18+
portNumber: "{{ item }}"
19+
portStatus: started
2020
loop:
2121
- "{{ kafkaPort }}"
2222
- "{{ kafkaJmxPort }}"

clusterSetup.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
include_role:
2626
name: portCheck
2727
vars:
28-
PortNumber: "{{ item }}"
29-
PortStatus: started
28+
portNumber: "{{ item }}"
29+
portStatus: started
3030
loop:
3131
- "{{ kafkaPort }}"
3232
- "{{ kafkaJmxPort }}"

clusterUpgrade.yml

+2-7
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,6 @@
2929
- hosts: clusterNodes:clusterAddNodes
3030
gather_facts: false
3131
serial: 1
32-
pre_tasks:
33-
- name: Switching Kafka Version to {{ kafkaVersion }} on all nodes (Rolling fashion)
34-
pause:
35-
prompt: "press enter to confirm or ctrl-c to cancel"
36-
run_once: true
3732
tasks:
3833
- name: switching kafka version to latest
3934
import_role:
@@ -51,8 +46,8 @@
5146
include_role:
5247
name: portCheck
5348
vars:
54-
PortNumber: "{{ item }}"
55-
PortStatus: started
49+
portNumber: "{{ item }}"
50+
portStatus: started
5651
loop:
5752
- "{{ kafkaPort }}"
5853
- "{{ kafkaJmxPort }}"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
3+
# Common vars
4+
kafkaMirrorMakerReplicateTopicWhiteListPattern: ".*kafka-perf-test.*" # java regex based pattern
5+
kafkaMirrorMakerHeapSize: 2G
6+
kafkaMirrorMakerProcessCountPerNode: 2
7+
kafkaMirrorMakerJmxInitialPort: 9980 # Port will be used like 9981 & 9982 if kafkaMirrorMakerProcessCountPerNode is set 2
8+
9+
# Kafka Mirror Maker Consumer Settings
10+
kafkaMirrorMakerSourceDcClusterAddressString: 192.168.56.100:9092,192.168.56.101:9092,192.168.56.102:9092 #no need to put all the hosts here
11+
kafkaMirrorMakerGroupId: "kafka-mirror-maker-consumer-{{ kafkaClusterName }}"
12+
kafkaMirrorMakerAutoOffsetReset: "earliest"
13+
kafkaMirrorMakerPartitionAssignmentStrategy: "org.apache.kafka.clients.consumer.RoundRobinAssignor"
14+
kafkaMirrorMakerFetchMaxBytes: 52428800
15+
kafkaMirrorMakerFetchMinBytes: 1000012
16+
kafkaMirrorMakerFetchMaxWaitMs: 500
17+
18+
# Kafka Mirror Maker Producer Settings
19+
kafkaMirrorMakerDestinationDcClusterAddressString: 192.168.56.100:9092,192.168.56.101:9092,192.168.56.102:9092 #no need to put all the hosts here
20+
kafkaMirrorMakerCompressionType: "none"
21+
kafkaMirrorMakerPartitionerClass: "org.apache.kafka.clients.producer.internals.DefaultPartitioner"
22+
kafkaMirrorMakerRequestTimeoutMs: 30000
23+
kafkaMirrorMakerMaxBlockMs: 60000
24+
kafkaMirrorMakerLingerMs: 15000
25+
kafkaMirrorMakerMaxRequestSize: 1000000
26+
kafkaMirrorMakerBatchSize: 500000
27+
kafkaMirrorMakerBufferMemory: 200000000
28+
kafkaMirrorMakerMaxInFlightRequestsPerConnection: 5
29+
kafkaMirrorMakerClientId: "kafka-mirror-maker-producer-{{ kafkaClusterName }}"
30+
kafkaMirrorMakerAcks: "all"
+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
[all:vars]
2+
ansible_connection=ssh
3+
ansible_become_method=sudo
4+
ansible_become=true
5+
6+
[kafka-mirror-maker]
7+
10.0.0.[1:3]
8+
9+
[kafka-mirror-maker-remove-nodes]
10+
10.0.0.[1:3]

roles/configure/tasks/mirrorMaker.yml

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
3+
- name: Creating kafka Mirror Maker configurations | properties files
4+
template:
5+
src: "{{ item }}"
6+
dest: "{{ kafkaInstallDir }}/kafka_{{ kafkaScalaVersion }}-{{ kafkaVersion }}/config/{{ item }}"
7+
owner: "{{ kafkaUser }}"
8+
group: "{{ kafkaGroup }}"
9+
mode: 0775
10+
loop:
11+
- kafka-mirror-maker-consumer.properties
12+
- kafka-mirror-maker-producer.properties
13+
14+
- name: Creating kafka Mirror Maker configurations | properties files
15+
template:
16+
src: "tools-log4j.properties"
17+
dest: "{{ kafkaInstallDir }}/kafka_{{ kafkaScalaVersion }}-{{ kafkaVersion }}/config/kafka-mirror-log4j-{{ item }}.properties"
18+
owner: "{{ kafkaUser }}"
19+
group: "{{ kafkaGroup }}"
20+
mode: 0775
21+
loop: "{{ range(1, kafkaMirrorMakerProcessCountPerNode + 1, 1) | list }}"
22+
23+
- name: Creating kafka Mirror Maker configurations | kafka-mirror-maker.sh
24+
template:
25+
src: kafka-mirror-maker.sh
26+
dest: "{{ kafkaInstallDir }}/kafka_{{ kafkaScalaVersion }}-{{ kafkaVersion }}/bin/kafka-mirror-maker-{{ item }}.sh"
27+
owner: "{{ kafkaUser }}"
28+
group: "{{ kafkaGroup }}"
29+
mode: 0775
30+
loop: "{{ range(1, kafkaMirrorMakerProcessCountPerNode + 1, 1) | list }}"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
bootstrap.servers={{ kafkaMirrorMakerSourceDcClusterAddressString }}
2+
3+
# consumer group id
4+
group.id={{ kafkaMirrorMakerGroupId }}
5+
6+
# What to do when there is no initial offset in Kafka or if the current
7+
# offset does not exist any more on the server: latest, earliest, none
8+
auto.offset.reset={{ kafkaMirrorMakerAutoOffsetReset }}
9+
partition.assignment.strategy={{ kafkaMirrorMakerPartitionAssignmentStrategy }}
10+
fetch.max.bytes={{ kafkaMirrorMakerFetchMaxBytes }}
11+
fetch.min.bytes={{ kafkaMirrorMakerFetchMinBytes }}
12+
fetch.max.wait.ms={{ kafkaMirrorMakerFetchMaxWaitMs }}
13+
exclude.internal.topics=true
14+
allow.auto.create.topics=false
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
############################# Producer Basics #############################
2+
3+
bootstrap.servers={{ kafkaMirrorMakerDestinationDcClusterAddressString }}
4+
5+
# specify the compression codec for all data generated: none, gzip, snappy, lz4, zstd
6+
compression.type={{ kafkaMirrorMakerCompressionType }}
7+
8+
# name of the partitioner class for partitioning events; default partition spreads data randomly
9+
partitioner.class={{ kafkaMirrorMakerPartitionerClass }}
10+
11+
# the maximum amount of time the client will wait for the response of a request
12+
request.timeout.ms={{ kafkaMirrorMakerRequestTimeoutMs }}
13+
14+
# how long `KafkaProducer.send` and `KafkaProducer.partitionsFor` will block for
15+
max.block.ms={{ kafkaMirrorMakerMaxBlockMs }}
16+
17+
# the producer will wait for up to the given delay to allow other records to be sent so that the sends can be batched together
18+
linger.ms={{ kafkaMirrorMakerLingerMs }}
19+
20+
# the maximum size of a request in bytes
21+
max.request.size={{ kafkaMirrorMakerMaxRequestSize }}
22+
23+
# the default batch size in bytes when batching multiple records sent to a partition
24+
batch.size={{ kafkaMirrorMakerBatchSize }}
25+
26+
# the total bytes of memory the producer can use to buffer records waiting to be sent to the server
27+
buffer.memory={{ kafkaMirrorMakerBufferMemory }}
28+
29+
max.in.flight.requests.per.connection={{ kafkaMirrorMakerMaxInFlightRequestsPerConnection }}
30+
31+
client.id={{ kafkaMirrorMakerClientId }}
32+
33+
acks={{ kafkaMirrorMakerAcks }}

0 commit comments

Comments
 (0)