This repository was archived by the owner on Mar 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 592
/
Copy pathbookie.yaml
222 lines (212 loc) · 8.02 KB
/
bookie.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
#
# 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.
#
## A reference of https://github.com/apache/incubator-pulsar/blob/master/kubernetes/google-container-engine/bookie.yaml
{{- $platform := .Values.platform }}
{{- $bookieReplicas := .Values.bookkeeper.replicas }}
{{- $bookieCpuMin := .Values.bookkeeper.resources.cpuMin }}
{{- $bookieCpuMax := .Values.bookkeeper.resources.cpuMax }}
{{- $bookieHeapMemory := .Values.bookkeeper.resources.heapMemory }}
{{- $bookieDirectMemory := .Values.bookkeeper.resources.directMemory }}
{{- $bookieJournalCapacity := .Values.bookkeeper.journal.capacity }}
{{- $bookieJournalHostPath := .Values.bookkeeper.journal.hostPath }}
{{- $bookieLedgersCapacity := .Values.bookkeeper.ledgers.capacity }}
{{- $bookieLedgersHostPath := .Values.bookkeeper.ledgers.hostPath }}
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ .Release.Name }}-bookie-config
data:
BK_BOOKIE_EXTRA_OPTS: "\"-Xms{{ $bookieHeapMemory }} -Xmx{{ $bookieHeapMemory }} -XX:MaxDirectMemorySize={{ $bookieDirectMemory }} -XX:+UseG1GC -XX:MaxGCPauseMillis=10 -XX:+ParallelRefProcEnabled -XX:+UnlockExperimentalVMOptions -XX:+AggressiveOpts -XX:+DoEscapeAnalysis -XX:ParallelGCThreads=32 -XX:ConcGCThreads=32 -XX:G1NewSizePercent=50 -XX:+DisableExplicitGC -XX:-ResizePLAB\""
BK_bookiePort: "3181"
BK_httpServerPort: "8080"
BK_journalDirectory: "/bookkeeper/data/journal"
BK_ledgerDirectories: "/bookkeeper/data/ledgers"
BK_indexDirectories: "/bookkeeper/data/ledgers"
BK_zkServers: {{ .Release.Name }}-zookeeper:{{ .Values.zookeeper.clientPort }}
BK_autoRecoveryDaemonEnabled: "true"
{{- if .Values.bookkeeper.useHostNameAsBookieID }}
BK_useHostNameAsBookieID: "true"
{{- end }}
# TODO: Issue 458: https://github.com/apache/bookkeeper/issues/458
{{- if eq .Values.bookkeeper.prometheus.enabled true }}
BK_enableStatistics: "true"
BK_enableTaskExecutionStats: "true"
BK_statsProviderClass: org.apache.bookkeeper.stats.prometheus.PrometheusMetricsProvider
{{- end }}
---
## BookKeeper servers need to access the local disks and the pods
## cannot be moved across different nodes.
## For this reason, we run BK as a daemon set, one for each node in the
## cluster, unless restricted by label selectors
{{- if .Values.bookkeeper.useStatefulSet }}
apiVersion: apps/v1
kind: StatefulSet
{{- else }}
apiVersion: apps/v1
kind: DaemonSet
{{- end }}
metadata:
name: {{ .Release.Name }}-bookie
labels:
app: {{ .Release.Name }}-bookkeeper
component: {{ .Release.Name }}-bookie
spec:
selector:
matchLabels:
app: {{ .Release.Name }}-bookkeeper
component: {{ .Release.Name }}-bookie
cluster: {{ .Release.Name }}-bookkeeper
{{- if .Values.bookkeeper.createReplicas }}
serviceName: {{ .Release.Name }}-bookie
replicas: {{ $bookieReplicas }}
{{- end }}
template:
metadata:
labels:
app: {{ .Release.Name }}-bookkeeper
component: {{ .Release.Name }}-bookie
# Specify cluster to allow aggregation by cluster in
# the metrics
cluster: {{ .Release.Name }}-bookkeeper
annotations:
prometheus.io/scrape: "true"
prometheus.io/port: "8000"
spec:
{{- if .Values.bookkeeper.affinityPods }}
# Make sure multiple pods of bookkeeper don't get scheduled on the
# same node, unless there are no other available nodes
affinity:
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- weight: 1
podAffinityTerm:
labelSelector:
matchExpressions:
- key: "app"
operator: In
values:
- {{ .Release.Name }}-bookkeeper
topologyKey: "kubernetes.io/hostname"
terminationGracePeriodSeconds: 0
{{- end }}
initContainers:
# Wait until the zookeeper pods are up and running
- name: bookie-init-container
image: {{ .Values.image }} # use heron image until bookkeeper has nc
command:
- sh
- -c
- >-
while true; do
status=$(echo ruok | nc -w 3 {{ .Release.Name }}-zookeeper {{ .Values.zookeeper.clientPort }});
writestatus=$(echo isro | nc -w 3 {{ .Release.Name }}-zookeeper {{ .Values.zookeeper.clientPort }})
if [ "$status" = "imok" ] && [ "$writestatus" = "rw" ]; then
break;
fi;
echo 'Zookeeper {{ .Release.Name }}-zookeeper:{{ .Values.zookeeper.clientPort }} not ready';
sleep 4;
done
containers:
- name: bookie
image: {{ .Values.bookkeeper.image }}
resources:
requests:
cpu: {{ $bookieCpuMin | quote }}
limits:
cpu: {{ $bookieCpuMax | quote }}
# use the patched entrypoint.sh - it will automatically created the desired distributedlog namespace
command: [ "/bin/bash", "/opt/bookkeeper/scripts/entrypoint.sh" ]
args: ["/opt/bookkeeper/bin/bookkeeper", "bookie"]
ports:
- name: client
containerPort: 3181
envFrom:
- configMapRef:
name: {{ .Release.Name }}-bookie-config
volumeMounts:
- name: journal-disk
mountPath: /bookkeeper/data/journal
- name: ledgers-disk
mountPath: /bookkeeper/data/ledgers
{{- if .Values.bookkeeper.useHostPath }}
volumes:
# Mount local disks
- name: journal-disk
hostPath:
path: {{ $bookieJournalHostPath }}
- name: ledgers-disk
hostPath:
path: {{ $bookieLedgersHostPath }}
{{- end }}
{{- if .Values.bookkeeper.useVolumeClaimTemplate }}
volumeClaimTemplates:
- metadata:
name: journal-disk
annotations:
volume.alpha.kubernetes.io/storage-class: default
labels:
component: {{ .Release.Name }}-bookkeeper
spec:
accessModes: [ "ReadWriteOnce" ]
{{- if ne .Values.bookkeeper.storageClassName "none" }}
storageClassName: {{ .Values.bookkeeper.storageClassName }}
{{- end }}
resources:
requests:
storage: {{ $bookieJournalCapacity }}
- metadata:
name: ledgers-disk
annotations:
volume.alpha.kubernetes.io/storage-class: default
labels:
component: {{ .Release.Name }}-bookkeeper
spec:
accessModes: [ "ReadWriteOnce" ]
{{- if ne .Values.bookkeeper.storageClassName "none" }}
storageClassName: {{ .Values.bookkeeper.storageClassName }}
{{- end }}
resources:
requests:
storage: {{ $bookieLedgersCapacity }}
{{- end }}
---
##
## Define the Bookie headless service
## In practice, in this case, it is only useful to have a view of
## all the bookie pods that are present
##
apiVersion: v1
kind: Service
metadata:
{{- if .Values.bookkeeper.tolerateUnreadyEndpoints }}
annotations:
service.alpha.kubernetes.io/tolerate-unready-endpoints: "true"
{{- end }}
name: {{ .Release.Name }}-bookie
labels:
app: {{ .Release.Name }}-bookkeeper
component: {{ .Release.Name }}-bookie
spec:
ports:
- port: 3181
name: server
clusterIP: None
selector:
app: {{ .Release.Name }}-bookkeeper
component: {{ .Release.Name }}-bookie