-
Notifications
You must be signed in to change notification settings - Fork 408
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use Leshan library to simulate several clients #1585
Comments
About thread limitation, using https://github.com/golioth/xk6-coap, which is Go-based (a similar solution to Java 21 virtual threads), will overcome this (with some extra benefits of the k6 performance framework) Another solution for the number of ports is to run multiple interfaces on the client machine because the 16-bit port limitation is a per-interface limitation. I wonder if you can do this by running one docker container for the server and multiple docker containers for the client and keeping the traffic in the docker network. Also, you can get more ports per interface by changing this kernel parameter: /proc/sys/net/ipv4/ip_local_port_range |
Tell, me If I misunderstood : this is an alternative of "Using Leshan library to simulate several clients", if you use it then you don't use Leshan client at all ? |
Yes you are right. When I need to do these kinds of tests I often need to simulate the CoAP part (for example the registration) and also use some HTTP API to verify things on the server or trigger more commands like LWM2M reads. So that's why I'm exploring this way of load testing CoAP/LWM2M servers. |
Tried virtual thread, it is helping, (client count per machine(16u32g) increase from 20000 to 60000). The things I do based on M15:
Sorry for unable to submit a mr because of the security policy of my company. |
@Nick-The-Uncharted Thx for taking time to share this 🙏 |
@Nick-The-Uncharted Thank you so much, these points will be helpful. I've tried a similar setup, but faced an issue where the communication sooner or later hungs with large number of devices. Will try again with these in mind. Could you clarify couple points:
What do you mean by this, can you give an example? Isn't synchronization already doing the locking?
I assume this is with One last one - how many receiverthreads are you using on the DTLSConnector? The default config for this is 1. |
It's a problem with virtual thread implementation: if the code use synchronized, the thread will be pinned, with lock it will not: |
@Ozame I set soTimeout to 50000, actually any number less than Long.MAX_VALUE / 2 is good, see my question at https://stackoverflow.com/questions/78837170/java-22-0-2-virtualthread-unparker-seems-parked-forever.
I didn't change that, it's still 1. If all your client stucks, maybe all your virtualthread is pinned, try using |
Ok, will check all of these things. Thanks for the pointers @jvermillard @Nick-The-Uncharted ! |
This issue aims to centralize information about using Leshan to simulate several clients.
Here is known issue, generally this is about using too many thread:
UDPConnector
of californium need at least 2 thread by clientDTLSConnector
of californium need at least 1 thread by clientDefaultRegistrationEngine
blocking issuePossible solution/workaround about using too many thread:
Number of port limitation:
Using several clients on the same machine may reach to the limit of available ports. (see : #1406 (comment))
A solution could be to implement queue mode and so sleeping client could free IP port and so you will be able to simulate more client by machine but the maximum of client talking at the same time is still limited by the maximum number of port (~35k).
Here is old issue related to that:
Here is a tool which aims to to that : https://github.com/sbernard31/benchmark-clients
(Content of this issue will be updated when we get new information)
The text was updated successfully, but these errors were encountered: