forked from SvenskaSpel/locust-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
kafka_ex.py
49 lines (43 loc) · 1.74 KB
/
kafka_ex.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
from locust_plugins import run_single_user
from locust_plugins.users import KafkaUser
from locust import task
import os
class MyUser(KafkaUser):
bootstrap_servers = os.environ["LOCUST_KAFKA_SERVERS"]
@task
def t(self):
self.client.send("lafp_test", b"payload")
# if you dont poll immediately after sending message your timings will be incorrect
# (but if throughput is most important then you may want to delay it)
self.client.producer.poll(1)
# How to set up a (global) consumer and read the last message. Consider this as inspiration, it might not work for you.
# And it is probably out of date. Probably best to ignore this.
#
# @events.init.add_listener
# def on_locust_init(environment, **_kwargs):
# consumer = KafkaConsumer(MyUser.bootstrap_servers)
# tp = TopicPartition("my_topic", 0)
# consumer.assign([tp])
# last_offset = consumer.position(tp)
# consumer.seek(tp, last_offset - 1)
# last_message = next(consumer)
# last = someProtobufObject()
# last.ParseFromString(last_message.value)
# environment.events.request_success.fire(
# request_type="CONSUME", name="retrans1", response_time=0, response_length=0,
# )
# control_consumer(environment)
# gevent.spawn(wait_for_retrans, environment, consumer)
#
# def wait_for_retrans(environment: Environment, consumer):
# for message in consumer:
# with sema:
# control_message = someProtobufObject().FromString(message.value)
# environment.events.request_success.fire(
# request_type="CONSUME",
# name="retrans2",
# response_time=0,
# response_length=0,
# )
if __name__ == "__main__":
run_single_user(MyUser)