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
|
# --------------------------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
from uuid import uuid4
from datetime import datetime
from devtools_testutils.perfstress_tests import BatchPerfTest, EventPerfTest, get_random_bytes
from azure.eventhub import EventHubProducerClient, EventHubConsumerClient, EventData, TransportType
from azure.eventhub.aio import (
EventHubProducerClient as AsyncEventHubProducerClient,
EventHubConsumerClient as AsyncEventHubConsumerClient,
)
class _EventHubProcessorTest(EventPerfTest):
consumer_group = "$Default"
def __init__(self, arguments):
super().__init__(arguments)
connection_string = self.get_from_env("AZURE_EVENTHUB_CONNECTION_STRING")
eventhub_name = self.get_from_env("AZURE_EVENTHUB_NAME")
self.checkpoint_store = None
self.async_checkpoint_store = None
if arguments.use_storage_checkpoint:
storage_connection_str = self.get_from_env("AZURE_STORAGE_CONNECTION_STRING")
from azure.eventhub.extensions.checkpointstoreblob import BlobCheckpointStore
from azure.eventhub.extensions.checkpointstoreblobaio import BlobCheckpointStore as AsyncBlobCheckpointStore
from azure.eventhub.extensions.checkpointstoreblobaio._vendor.storage.blob import BlobServiceClient
self.container_name = "checkpointstore-" + str(uuid4())
self.blob_service_client = BlobServiceClient.from_connection_string(storage_connection_str)
self.checkpoint_store = BlobCheckpointStore.from_connection_string(
storage_connection_str, self.container_name
)
self.async_checkpoint_store = AsyncBlobCheckpointStore.from_connection_string(
storage_connection_str, self.container_name
)
transport_type = TransportType.AmqpOverWebsocket if arguments.transport_type == 1 else TransportType.Amqp
self.consumer = EventHubConsumerClient.from_connection_string(
connection_string,
_EventHubProcessorTest.consumer_group,
eventhub_name=eventhub_name,
checkpoint_store=self.checkpoint_store,
load_balancing_strategy=arguments.load_balancing_strategy,
transport_type=transport_type,
uamqp_transport=arguments.uamqp_transport,
)
self.async_consumer = AsyncEventHubConsumerClient.from_connection_string(
connection_string,
_EventHubProcessorTest.consumer_group,
eventhub_name=eventhub_name,
checkpoint_store=self.async_checkpoint_store,
load_balancing_strategy=arguments.load_balancing_strategy,
transport_type=transport_type,
uamqp_transport=arguments.uamqp_transport,
)
if arguments.preload:
self.data = get_random_bytes(self.args.event_size)
self.async_producer = AsyncEventHubProducerClient.from_connection_string(
connection_string,
eventhub_name=eventhub_name,
transport_type=transport_type,
uamqp_transport=arguments.uamqp_transport,
)
def _build_event(self):
event = EventData(self.data)
if self.args.event_extra:
event.raw_amqp_message.header.first_acquirer = True
event.raw_amqp_message.properties.subject = "perf"
event.properties = {"key1": b"data", "key2": 42, "key3": datetime.now(), "key4": "foobar", "key5": uuid4()}
return event
async def _preload_eventhub(self):
async with self.async_producer as producer:
partitions = await producer.get_partition_ids()
total_events = 0
for partition in partitions:
properties = await producer.get_partition_properties(partition_id=partition)
total_events += properties["last_enqueued_sequence_number"] - properties["beginning_sequence_number"]
print(f"Detected {total_events} events across {len(partitions)} partitions.")
if total_events < self.args.preload:
events_to_add = self.args.preload - total_events
batch = await producer.create_batch()
for i in range(events_to_add):
try:
batch.add(self._build_event())
except ValueError:
# Batch full
await producer.send_batch(batch)
print(f"Loaded {i} of {events_to_add} events.")
batch = await producer.create_batch()
batch.add(self._build_event())
await producer.send_batch(batch)
print(f"Finished loading {events_to_add} events.")
async def global_setup(self):
await super().global_setup()
if self.args.preload:
await self._preload_eventhub()
async def setup(self):
"""
Create the checkpoint store Blob container before starting the Event processors.
"""
if self.args.use_storage_checkpoint:
await self.blob_service_client.create_container(self.container_name)
await super().setup()
async def cleanup(self):
"""
Delete the checkpoint store Blob container after closing the Event processors.
"""
await super().cleanup()
if self.args.use_storage_checkpoint:
await self.blob_service_client.delete_container(self.container_name)
def stop_events_sync(self) -> None:
"""
Stop the process for receiving events.
"""
self.consumer.close()
async def stop_events_async(self) -> None:
"""
Stop the process for receiving events.
"""
await self.async_consumer.close()
@staticmethod
def add_arguments(parser):
super(_EventHubProcessorTest, _EventHubProcessorTest).add_arguments(parser)
parser.add_argument(
"--event-size", nargs="?", type=int, help="Size of a single event. Defaults to 100 bytes", default=100
)
parser.add_argument(
"--prefetch-count",
nargs="?",
type=int,
help="Number of events to receive locally per request. Defaults to 300",
default=300,
)
parser.add_argument(
"--load-balancing-strategy",
nargs="?",
type=str,
help="Event Processor load balancing strategy, 'greedy' or 'balanced'. Default is 'greedy'.",
default="greedy",
)
parser.add_argument(
"--checkpoint-interval",
nargs="?",
type=int,
help="Interval between checkpoints (in number of events). Default is no checkpoints.",
default=None,
)
parser.add_argument(
"--max-wait-time",
nargs="?",
type=float,
help="Maximum time to wait for an event to be received.",
default=0,
)
parser.add_argument(
"--processing-delay", nargs="?", type=int, help="Delay when processing each event (in ms).", default=None
)
parser.add_argument(
"--processing-delay-strategy",
nargs="?",
type=str,
help="Whether to 'sleep' or 'spin' during processing delay. Default is 'sleep'.",
default="sleep",
)
parser.add_argument(
"--preload",
nargs="?",
type=int,
help="Ensure the specified number of events are available across all partitions. Default is 0.",
default=0,
)
parser.add_argument(
"--use-storage-checkpoint",
action="store_true",
help="Use Blob storage for checkpointing. Default is False (in-memory checkpointing).",
default=False,
)
parser.add_argument(
"--uamqp-transport",
action="store_true",
help="Switch to use uamqp transport. Default is False (pyamqp).",
default=False,
)
parser.add_argument(
"--transport-type",
nargs="?",
type=int,
help="Use Amqp (0) or Websocket (1) transport type. Default is Amqp.",
default=0,
)
parser.add_argument(
"--event-extra",
action="store_true",
help="Add properties to the events to increase payload and serialization. Default is False.",
default=False,
)
class _SendTest(BatchPerfTest):
consumer_group = "$Default"
def __init__(self, arguments):
super().__init__(arguments)
connection_string = self.get_from_env("AZURE_EVENTHUB_CONNECTION_STRING")
eventhub_name = self.get_from_env("AZURE_EVENTHUB_NAME")
transport_type = TransportType.AmqpOverWebsocket if arguments.transport_type == 1 else TransportType.Amqp
self.producer = EventHubProducerClient.from_connection_string(
connection_string,
eventhub_name=eventhub_name,
transport_type=transport_type,
uamqp_transport=arguments.uamqp_transport,
)
self.async_producer = AsyncEventHubProducerClient.from_connection_string(
connection_string,
eventhub_name=eventhub_name,
transport_type=transport_type,
uamqp_transport=arguments.uamqp_transport,
)
self.data = get_random_bytes(self.args.event_size)
def _build_event(self):
event = EventData(self.data)
if self.args.event_extra:
event.raw_amqp_message.header.first_acquirer = True
event.raw_amqp_message.properties.subject = "perf"
event.properties = {"key1": b"data", "key2": 42, "key3": datetime.now(), "key4": "foobar", "key5": uuid4()}
return event
async def setup(self):
await super().setup()
# First time calling create_batch would communicate with the service to
# get the max allowed frame size on the link and the value will be cached.
# Explicitly calling the method in setup to eliminate overhead in test run methods.
self.producer.create_batch()
await self.async_producer.create_batch()
async def close(self):
self.producer.close()
await self.async_producer.close()
await super().close()
@staticmethod
def add_arguments(parser):
super(_SendTest, _SendTest).add_arguments(parser)
parser.add_argument(
"--event-size",
nargs="?",
type=int,
help="Size of event body (in bytes). Defaults to 100 bytes",
default=100,
)
parser.add_argument(
"--batch-size",
nargs="?",
type=int,
help="The number of events that should be included in each batch. Defaults to 100",
default=100,
)
parser.add_argument(
"--uamqp-transport",
action="store_true",
help="Switch to use uamqp transport. Default is False (pyamqp).",
default=False,
)
parser.add_argument(
"--transport-type",
nargs="?",
type=int,
help="Use Amqp (0) or Websocket (1) transport type. Default is Amqp.",
default=0,
)
parser.add_argument(
"--event-extra",
action="store_true",
help="Add properties to the events to increase payload and serialization. Default is False.",
default=False,
)
|