-
Notifications
You must be signed in to change notification settings - Fork 0
/
pika_perf.py
297 lines (221 loc) · 8.48 KB
/
pika_perf.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
""" Performance test for pika
"""
import logging
from optparse import OptionParser
import sys
import pika
g_log = logging.getLogger("pika_perf")
ROUTING_KEY = "test"
#logging.getLogger("pika").setLevel(logging.DEBUG)
def main():
logging.basicConfig(
level=logging.INFO,
format='%(asctime)-15s %(name)s(%(process)s) - %(levelname)s - %(message)s',
disable_existing_loggers=False)
topHelpString = (
"\n"
"\t%prog COMMAND OPTIONS\n"
"\t%prog --help\n"
"\t%prog COMMAND --help\n"
"\n"
"Supported COMMANDs:\n"
"\tpublish - publish messages using one of several pika connection classes")
topParser = OptionParser(topHelpString)
if len(sys.argv) < 2:
topParser.error("Missing COMMAND")
command = sys.argv[1]
if command == "publish":
_handlePublishTest(sys.argv[2:])
elif not command.startswith("-"):
topParser.error("Unexpected action: %s" % (command,))
else:
try:
topParser.parse_args()
except:
raise
else:
topParser.error("Unknown command=%s" % command)
def _handlePublishTest(args):
""" Parse args and invoke the publish test using the requested connection
class
:param args: sequence of commandline args passed after the "publish" keyword
"""
helpString = (
"\n"
"\t%%prog publish OPTIONS\n"
"\t%%prog publish --help\n"
"\t%%prog --help\n"
"\n"
"Publishes the given number of messages of the\n"
"given size to the given exchange and routing_key=%s using the specified\n"
"pika connection class") % (ROUTING_KEY,)
parser = OptionParser(helpString)
implChoices = ["BlockingConnection",
"SynchronousConnection",
"SelectConnection"]
parser.add_option(
"--impl",
action="store",
type="choice",
dest="impl",
choices=implChoices,
help=("Selection of pika connection class "
"[REQUIRED; must be one of: %s]" % ", ".join(implChoices)))
parser.add_option(
"--exg",
action="store",
type="string",
dest="exchange",
help="Destination exchange [REQUIRED]")
parser.add_option(
"--msgs",
action="store",
type="int",
dest="numMessages",
default=1000,
help="Number of messages to send [default: %default]")
parser.add_option(
"--size",
action="store",
type="int",
dest="messageSize",
default=1024,
help="Size of each message in bytes [default: %default]")
parser.add_option(
"--pubacks",
action="store_true",
dest="deliveryConfirmation",
default=False,
help="Publish in delivery confirmation mode [defaults to OFF]")
options, positionalArgs = parser.parse_args(sys.argv[2:])
if positionalArgs:
raise parser.error("Unexpected to have any positional args, but got: %r"
% positionalArgs)
if not options.impl:
parser.error("--impl is required")
if options.exchange is None:
parser.error("--exg must be specified with a valid destination exchange name")
if options.impl in ["BlockingConnection", "SynchronousConnection"]:
runBlockingPublishTest(implClassName=options.impl,
exchange=options.exchange,
numMessages=options.numMessages,
messageSize=options.messageSize,
deliveryConfirmation=options.deliveryConfirmation)
else:
assert options.impl == "SelectConnection", options.impl
runSelectPublishTest(implClassName=options.impl,
exchange=options.exchange,
numMessages=options.numMessages,
messageSize=options.messageSize,
deliveryConfirmation=options.deliveryConfirmation)
def runBlockingPublishTest(implClassName,
exchange,
numMessages,
messageSize,
deliveryConfirmation):
g_log.info("runBlockingPublishTest: impl=%s; exchange=%s; numMessages=%d; "
"messageSize=%s; deliveryConfirmation=%s", implClassName, exchange,
numMessages, messageSize, deliveryConfirmation)
connectionClass = getattr(pika, implClassName)
connection = connectionClass(getPikaConnectionParameters())
g_log.info("%s: opened connection", implClassName)
message = "a" * messageSize
channel = connection.channel()
g_log.info("%s: opened channel", implClassName)
if deliveryConfirmation:
channel.confirm_delivery()
g_log.info("%s: enabled message delivery confirmation", implClassName)
for i in xrange(numMessages):
res = channel.basic_publish(exchange=exchange, routing_key=ROUTING_KEY,
immediate=False, mandatory=False, body=message)
if deliveryConfirmation:
assert res is True, repr(res)
else:
assert res is None, repr(res)
else:
g_log.info("Published %d messages of size=%d via=%s",
i+1, messageSize, connectionClass)
g_log.info("%s: closing channel", implClassName)
channel.close()
g_log.info("%s: closing connection", implClassName)
connection.close()
g_log.info("%s: DONE", implClassName)
def runSelectPublishTest(implClassName,
exchange,
numMessages,
messageSize,
deliveryConfirmation):
g_log.info("runSelectPublishTest: impl=%s; exchange=%s; numMessages=%d; "
"messageSize=%s; deliveryConfirmation=%s", implClassName, exchange,
numMessages, messageSize, deliveryConfirmation)
message = "a" * messageSize
class Counter(object):
numPublishConfirms = 0
lastConfirmedDeliveryTag = 0
def onDeliveryConfirmation(ch, methodFrame):
# Got Basic.Ack or Basic.Nack
if isinstance(methodFrame.method, pika.spec.Basic.Ack):
Counter.numPublishConfirms += 1
Counter.lastConfirmedDeliveryTag = methodFrame.method.delivery_tag
if Counter.lastConfirmedDeliveryTag == numMessages:
g_log.info("All messages confirmed, closing Select channel...")
ch.close()
else:
msg = "Failed: message was not Ack'ed; got instead %r" % (methodFrame,)
g_log.error(msg)
raise Exception(msg)
def onMessageReturn(*args):
msg = "Failed: message was returned: %s" % (args,)
g_log.error(msg)
raise Exception(msg)
def onChannelOpen(ch):
if deliveryConfirmation:
ch.confirm_delivery(
callback=lambda *args: onDeliveryConfirmation(ch, *args))
g_log.info("%s: enabled message delivery confirmation", implClassName)
g_log.info("Select publishing...")
for i in xrange(numMessages):
ch.basic_publish(exchange=exchange, routing_key=ROUTING_KEY,
immediate=False, mandatory=False, body=message)
else:
g_log.info("Published %d messages of size=%d via=%s",
i+1, messageSize, connectionClass)
if not deliveryConfirmation:
g_log.info("Closing Select channel...")
ch.close()
def onChannelClosed(ch, reasonCode, reasonText):
g_log.info("Select channel closed (%s): %s", reasonCode, reasonText)
g_log.info("Closing Select connection...")
ch.connection.close()
def onConnectionOpen(connection):
g_log.info("Select opening channel...")
ch = connection.channel(on_open_callback=onChannelOpen)
ch.add_on_close_callback(onChannelClosed)
ch.add_on_return_callback(onMessageReturn)
def onConnectionClosed(connection, reasonCode, reasonText):
g_log.info("Select connection closed (%s): %s", reasonCode, reasonText)
connectionClass = getattr(pika, implClassName)
connection = connectionClass(
getPikaConnectionParameters(),
on_open_callback=onConnectionOpen,
on_close_callback=onConnectionClosed)
connection.ioloop.start()
if deliveryConfirmation:
assert Counter.lastConfirmedDeliveryTag == numMessages, (
"lastConfirmedDeliveryTag=%s, numPublishConfirms=%s" % (
Counter.lastConfirmedDeliveryTag, Counter.numPublishConfirms))
else:
assert Counter.numPublishConfirms == 0, Counter.numPublishConfirms
g_log.info("%s: DONE", implClassName)
def getPikaConnectionParameters():
"""
:returns: instance of pika.ConnectionParameters for the AMQP broker (RabbitMQ
most likely)
"""
host = "localhost"
vhost = "/"
credentials = pika.PlainCredentials("guest", "guest")
return pika.ConnectionParameters(host=host, virtual_host=vhost,
credentials=credentials)
if __name__ == '__main__':
main()