File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
inventory/development/group_vars Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
3
3
javaVersion : 8
4
- updateJava : false # only when you need to update java version
4
+ updateJava : false # only when you need to update java version
5
5
6
6
useSystemFirewall : false
7
7
@@ -44,8 +44,8 @@ kafkaOldScalaVersion: 2.12
44
44
kafkaDefaultReplicationFactor : 3
45
45
kafkaMinInsyncReplicas : " {{ kafkaDefaultReplicationFactor | int - 1 }}"
46
46
kafkaBackgroundThread : 10
47
- kafkaMessagesMaxBytes : 1000012 # 1MB approx
48
- kafkaReplicaFetchMaxBytes : 2000000 # this should be higher than kafkaMessagesMaxBytes
47
+ kafkaMessagesMaxBytes : 1000012 # 1MB approx
48
+ kafkaReplicaFetchMaxBytes : 2000000 # this should be higher than kafkaMessagesMaxBytes
49
49
kafkaQuededMaxRequests : 500
50
50
kafkaNumReplicaFetchers : 1
51
51
kafkaNumNetworkThreads : 6
@@ -68,6 +68,6 @@ kafkaGroupInitRebalanceDelayMs: 3
68
68
69
69
# Only for AWS Based Cluster
70
70
aws_kafka_ec2_region : " eu-central-1"
71
- aws_kafka_ebs_device : /dev/xvdc
72
- aws_kafka_ebs_device_fs : xfs
71
+ aws_kafka_ebs_device : " /dev/xvdc"
72
+ aws_kafka_ebs_device_fs : " xfs" # currently tested with xfs only.
73
73
aws_kafka_ebs_device_mount_location : " {{ kafkaInstallDir }}"
Original file line number Diff line number Diff line change 25
25
ansible.posix.mount :
26
26
path : " {{ aws_kafka_ebs_device_mount_location }}"
27
27
src : " {{ aws_kafka_ebs_device }}"
28
- fstype : xfs
28
+ fstype : " {{ aws_kafka_ebs_device_fs }} "
29
29
state : mounted
You can’t perform that action at this time.
0 commit comments