forked from phunt/zk-smoketest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzk-latencies.py
executable file
·377 lines (315 loc) · 13.9 KB
/
zk-latencies.py
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
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
#!/usr/bin/env python
# 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.
import datetime, time, os, re
from optparse import OptionParser
import zkclient
from zkclient import ZKClient, CountingWatcher, zookeeper
usage = "usage: %prog [options]"
parser = OptionParser(usage=usage)
parser.add_option("", "--servers", dest="servers",
default="localhost:2181", help="comma separated list of host:port (default %default), test each in turn")
parser.add_option("", "--cluster", dest="cluster",
default=None, help="comma separated list of host:port, test as a cluster, alternative to --servers")
parser.add_option("", "--config",
dest="configfile", default=None,
help="zookeeper configuration file to lookup cluster from")
parser.add_option("", "--timeout", dest="timeout", type="int",
default=5000, help="session timeout in milliseconds (default %default)")
parser.add_option("", "--root_znode", dest="root_znode",
default="/zk-latencies", help="root for the test, will be created as part of test (default /zk-latencies)")
parser.add_option("", "--znode_size", dest="znode_size", type="int",
default=25, help="data size when creating/setting znodes (default %default)")
parser.add_option("", "--znode_count", dest="znode_count", default=10000, type="int",
help="the number of znodes to operate on in each performance section (default %default)")
parser.add_option("", "--watch_multiple", dest="watch_multiple", default=1, type="int",
help="number of watches to put on each znode (default %default)")
parser.add_option("", "--force",
action="store_true", dest="force", default=False,
help="force the test to run, even if root_znode exists - WARNING! don't run this on a real znode or you'll lose it!!!")
parser.add_option("", "--synchronous",
action="store_true", dest="synchronous", default=False,
help="by default asynchronous ZK api is used, this forces synchronous calls")
parser.add_option("", "--locks",
action="store_true", dest="locks", default=False,
help="this tests latency of a ghetto synchronous shared lock implementation")
parser.add_option("-v", "--verbose",
action="store_true", dest="verbose", default=False,
help="verbose output, include more detail")
parser.add_option("-q", "--quiet",
action="store_true", dest="quiet", default=False,
help="quiet output, basically just success/failure")
(options, args) = parser.parse_args()
zkclient.options = options
zookeeper.set_log_stream(open("cli_log_%d.txt" % (os.getpid()),"w"))
class SharedLocker:
def __init__(self, client, path, root_lock_node):
self.client = client
self.path = path
self.root_lock_node = root_lock_node
self.root_lock_path = "%s/%s" % (root_lock_node, re.sub("/", "__", path))
self.lock_path = None
def unlock(self):
self.client.delete(self.lock_path)
self.client.delete(self.root_lock_path)
def lock(self):
while True:
try:
if self.lock_path and self.client.exists(self.lock_path):
pass
else:
self.lock_path = self.client.create("%s/%s" % (self.root_lock_path, "sh"), "", zookeeper.EPHEMERAL + zookeeper.SEQUENCE)
self.parent_stat = self.client.exists(self.root_lock_path)
return self.lock_path and not self.blocking_locks()
except:
self.mkdir_p(self.root_lock_path)
def mkdir_p(self, path):
while path:
try:
self.client.create(path)
except:
(path, _, _) = path.rpartition("/")
def blocking_locks(self):
self.client.get_children(self.root_lock_path)
return False
class SmokeError(Exception):
def __init__(self, value):
self.value = value
def __str__(self):
return repr(self.value)
def print_elap(start, msg, count):
elapms = (time.time() - start) * 1000
if int(elapms) != 0:
print("%s in %6d ms (%f ms/op %f/sec)"
% (msg, int(elapms), elapms/count, count/(elapms/1000.0)))
else:
print("%s in %6d ms (included in prior)" % (msg, int(elapms)))
def timer(ops, msg, count=options.znode_count):
start = time.time()
for op in ops:
pass
print_elap(start, msg, count)
def timer2(func, msg, count=options.znode_count):
start = time.time()
func()
print_elap(start, msg, count)
def child_path(i):
return "%s/session_%d" % (options.root_znode, i)
def cycle_lock(s, j, data):
lock = SharedLocker(s, "lock", "/shopify/shops/%d" % (j))
lock.lock()
lock.unlock()
def lock_latency_test(s, data):
timer((cycle_lock(s, j, data)
for j in xrange(options.znode_count)),
"cycled %7d locks " % (options.znode_count))
def synchronous_latency_test(s, data):
# create znode_count znodes (perm)
timer((s.create(child_path(j), data)
for j in xrange(options.znode_count)),
"created %7d permanent znodes " % (options.znode_count))
# set znode_count znodes
timer((s.set(child_path(j), data)
for j in xrange(options.znode_count)),
"set %7d znodes " % (options.znode_count))
# get znode_count znodes
timer((s.get(child_path(j))
for j in xrange(options.znode_count)),
"get %7d znodes " % (options.znode_count))
# delete znode_count znodes
timer((s.delete(child_path(j))
for j in xrange(options.znode_count)),
"deleted %7d permanent znodes " % (options.znode_count))
# create znode_count znodes (ephemeral)
timer((s.create(child_path(j), data, zookeeper.EPHEMERAL)
for j in xrange(options.znode_count)),
"created %7d ephemeral znodes " % (options.znode_count))
# watch znode_count znodes
watches = [CountingWatcher() for x in xrange(options.watch_multiple)]
def watch(j):
for watch in watches:
s.exists(child_path(j), watch)
timer((watch(j) for j in xrange(options.znode_count)),
"watched %7d znodes " %
(options.watch_multiple * options.znode_count),
options.watch_multiple * options.znode_count)
# # delete znode_count znodes
timer((s.delete(child_path(j))
for j in xrange(options.znode_count)),
"deleted %7d ephemeral znodes " % (options.znode_count))
start = time.time()
for watch in watches:
if watch.waitForExpected(options.znode_count, 60000) != options.znode_count:
raise SmokeError("wrong number of watches: %d" %
(watch.count))
print_elap(start,
"notif %7d watches" % (options.watch_multiple * options.znode_count),
(options.watch_multiple * options.znode_count))
def asynchronous_latency_test(s, data):
# create znode_count znodes (perm)
def func():
callbacks = []
for j in xrange(options.znode_count):
cb = zkclient.CreateCallback()
cb.cv.acquire()
s.acreate(child_path(j), cb, data)
callbacks.append(cb)
for j, cb in enumerate(callbacks):
cb.waitForSuccess()
if cb.path != child_path(j):
raise SmokeError("invalid path %s for operation %d on handle %d" %
(cb.path, j, cb.handle))
timer2(func, "created %7d permanent znodes " % (options.znode_count))
# set znode_count znodes
def func():
callbacks = []
for j in xrange(options.znode_count):
cb = zkclient.SetCallback()
cb.cv.acquire()
s.aset(child_path(j), cb, data)
callbacks.append(cb)
for cb in callbacks:
cb.waitForSuccess()
timer2(func, "set %7d znodes " % (options.znode_count))
# get znode_count znodes
def func():
callbacks = []
for j in xrange(options.znode_count):
cb = zkclient.GetCallback()
cb.cv.acquire()
s.aget(child_path(j), cb)
callbacks.append(cb)
for cb in callbacks:
cb.waitForSuccess()
if cb.value != data:
raise SmokeError("invalid data %s for operation %d on handle %d" %
(cb.value, j, cb.handle))
timer2(func, "get %7d znodes " % (options.znode_count))
# delete znode_count znodes (perm)
def func():
callbacks = []
for j in xrange(options.znode_count):
cb = zkclient.DeleteCallback()
cb.cv.acquire()
s.adelete(child_path(j), cb)
callbacks.append(cb)
for cb in callbacks:
cb.waitForSuccess()
timer2(func, "deleted %7d permanent znodes " % (options.znode_count))
# create znode_count znodes (ephemeral)
def func():
callbacks = []
for j in xrange(options.znode_count):
cb = zkclient.CreateCallback()
cb.cv.acquire()
s.acreate(child_path(j), cb, data, zookeeper.EPHEMERAL)
callbacks.append(cb)
for j, cb in enumerate(callbacks):
cb.waitForSuccess()
if cb.path != child_path(j):
raise SmokeError("invalid path %s for operation %d on handle %d" %
(cb.path, j, cb.handle))
timer2(func, "created %7d ephemeral znodes " % (options.znode_count))
watches = [CountingWatcher() for x in xrange(options.watch_multiple)]
# watched znode_count znodes
def func():
callbacks = []
for watch in watches:
for j in xrange(options.znode_count):
cb = zkclient.ExistsCallback()
cb.cv.acquire()
s.aexists(child_path(j), cb, watch)
callbacks.append(cb)
for cb in callbacks:
cb.waitForSuccess()
timer2(func, "watched %7d znodes " %
(options.watch_multiple * options.znode_count),
options.watch_multiple * options.znode_count)
# delete znode_count znodes (ephemeral)
def func():
callbacks = []
for j in xrange(options.znode_count):
cb = zkclient.DeleteCallback()
cb.cv.acquire()
s.adelete(child_path(j), cb)
callbacks.append(cb)
for cb in callbacks:
cb.waitForSuccess()
timer2(func, "deleted %7d ephemeral znodes " % (options.znode_count))
start = time.time()
for watch in watches:
if watch.waitForExpected(options.znode_count, 60000) != options.znode_count:
raise SmokeError("wrong number of watches: %d" %
(watch.count))
print_elap(start,
"notif %7d watches" % (options.watch_multiple * options.znode_count),
(options.watch_multiple * options.znode_count))
def read_zk_config(filename):
with open(filename) as f:
config = dict(tuple(line.rstrip().split('=', 1)) for line in f if line.rstrip())
return config
def get_zk_servers(filename):
if options.cluster:
return [options.cluster]
elif filename:
config = read_zk_config(options.configfile)
client_port = config['clientPort']
return [",".join("%s:%s" % (v.split(':', 1)[0], client_port)
for k, v in config.items() if k.startswith('server.'))]
else:
return options.servers.split(",")
if __name__ == '__main__':
data = options.znode_size * "x"
servers = get_zk_servers(options.configfile)
# create all the sessions first to ensure that all servers are
# at least available & quorum has been formed. otw this will
# fail right away (before we start creating nodes)
sessions = []
# create one session to each of the servers in the ensemble
for server in servers:
sessions.append(ZKClient(server, options.timeout))
# ensure root_znode doesn't exist
if sessions[0].exists(options.root_znode):
# unless forced by user
if not options.force:
raise SmokeError("Node %s already exists!" % (options.root_znode))
children = sessions[0].get_children(options.root_znode)
for child in children:
sessions[0].delete("%s/%s" % (options.root_znode, child))
else:
sessions[0].create(options.root_znode,
"smoketest root, delete after test done, created %s" %
(datetime.datetime.now().ctime()))
for i, s in enumerate(sessions):
if options.synchronous:
type = "syncronous"
elif options.locks:
type = "synchronous lock"
else:
type = "asynchronous"
print("Testing latencies on server %s using %s calls" %
(servers[i], type))
if options.synchronous:
synchronous_latency_test(s, data)
elif options.locks:
lock_latency_test(s, data)
else:
asynchronous_latency_test(s, data)
sessions[0].delete(options.root_znode)
# close sessions
for s in sessions:
s.close()
print("Latency test complete")