-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrabbitpy_perf.py
249 lines (186 loc) · 6.81 KB
/
rabbitpy_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
"""Performance tests for rabbitpy
"""
import logging
from optparse import OptionParser
import sys
import rabbitpy
g_log = logging.getLogger("rabbitpy_perf")
#logging.getLogger("rabbitpy").setLevel(logging.DEBUG)
ROUTING_KEY = "test"
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 rabbitpy interfaces.")
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"
"rabbitpy interface") % (ROUTING_KEY,)
parser = OptionParser(helpString)
implChoices = [
"AMQP", # The less opinionated interface
"Channel", # The opinionated interface
]
parser.add_option(
"--impl",
action="store",
type="choice",
dest="impl",
choices=implChoices,
help=("Selection of rabbitpy interface "
"[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 == "AMQP":
runBlockingAMQPPublishTest(
implClassName=options.impl,
exchange=options.exchange,
numMessages=options.numMessages,
messageSize=options.messageSize,
deliveryConfirmation=options.deliveryConfirmation)
elif options.impl == "Channel":
runBlockingChannelPublishTest(
implClassName=options.impl,
exchange=options.exchange,
numMessages=options.numMessages,
messageSize=options.messageSize,
deliveryConfirmation=options.deliveryConfirmation)
else:
parser.error("unexpected impl=%r" % (options.impl,))
def runBlockingAMQPPublishTest(implClassName,
exchange,
numMessages,
messageSize,
deliveryConfirmation):
g_log.info(
"runBlockingAMQPPublishTest: impl=%s; exchange=%s; numMessages=%d; "
"messageSize=%s; deliveryConfirmation=%s", implClassName, exchange,
numMessages, messageSize, deliveryConfirmation)
implClass = getattr(rabbitpy, implClassName)
assert implClass is rabbitpy.AMQP, implClass
with rabbitpy.Connection(getConnectionParameters()) as conn:
g_log.info("%s: opened connection", implClassName)
with conn.channel() as channel:
g_log.info("%s: opened channel", implClassName)
amqp = rabbitpy.AMQP(channel)
g_log.info("%s: wrapped channel", implClassName)
if deliveryConfirmation:
amqp.confirm_select()
g_log.info("%s: enabled message delivery confirmation", implClassName)
# Publish
message = "a" * messageSize
for i in xrange(numMessages):
amqp.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, implClass)
g_log.info("%s: closing channel", implClassName)
g_log.info("%s: closing connection", implClassName)
g_log.info("%s: DONE", implClassName)
def runBlockingChannelPublishTest(implClassName,
exchange,
numMessages,
messageSize,
deliveryConfirmation):
g_log.info(
"runBlockingChannelPublishTest: impl=%s; exchange=%s; numMessages=%d; "
"messageSize=%s; deliveryConfirmation=%s", implClassName, exchange,
numMessages, messageSize, deliveryConfirmation)
implClass = getattr(rabbitpy, implClassName)
assert implClass is rabbitpy.Channel, implClass
with rabbitpy.Connection(getConnectionParameters()) as conn:
g_log.info("%s: opened connection", implClassName)
with conn.channel() as channel:
g_log.info("%s: opened channel", implClassName)
if deliveryConfirmation:
channel.enable_publisher_confirms()
g_log.info("%s: enabled message delivery confirmation", implClassName)
# Publish
payload = "a" * messageSize
for i in xrange(numMessages):
message = rabbitpy.Message(channel, payload)
res = message.publish(exchange=exchange, routing_key=ROUTING_KEY,
immediate=False, mandatory=False)
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, implClass)
g_log.info("%s: closing channel", implClassName)
g_log.info("%s: closing connection", implClassName)
g_log.info("%s: DONE", implClassName)
def getConnectionParameters():
"""
:returns: URL string respresenting broker connection parameters
"""
return "amqp://guest:guest@localhost:5672/%2F"
if __name__ == '__main__':
main()