Online Forums
Technical support is provided through Support Forums below. Anybody can view them; you need to Register/Login to our site (see links in upper right corner) in order to Post questions. You do not have to be a licensed user of our product.
Please read Rules for forum posts before reporting your issue or asking a question. OPC Labs team is actively monitoring the forums, and replies as soon as possible. Various technical information can also be found in our Knowledge Base. For your convenience, we have also assembled a Frequently Asked Questions page.
Do not use the Contact page for technical issues.
Slow read speed with C/COM client
We can have a closer look at the "speed per byte payload" at some future point, however it is likely that the main contributing factor is our use of the .NET stack, which we cannot change.
Best regards
Please Log in or Create an account to join the conversation.
- pfp.meijers
-
Topic Author
- Offline
- Senior Member
-
- Posts: 4
- Thank you received: 0
These are measurements from one PC using indicated client stacks to a another PC that runs an open62541 server.
(I tried to attach a picture with a graph showing the measurement results, but then I get an error page when submitting)
Please Log in or Create an account to join the conversation.
Yes, it is quite realistic that you get such results. There are two main reasons:
1) QuickOPC is actually based on the .NET stack, and has a COM layer on top. The other stacks you have tested are probably native C/C++. The .NET is slower.
2) We do some high-level stuff that others don't - the API is actually designed for implied correctness and usability, not for speed. To give you one typical example: You need to specify the full node id, including the namespace (as a string), in each call to EasyUAClient.ReadXXXX method. This makes it easy to write correct programs, because the namespace string is what is stable and should be persisted. Looking up the namespace index each time slows things down. However the other toolkits tend to work with namespace index, which is faster, however the index is internal to the low-level communication, and the server is free to change the namespace index of any namespace with each session. Consequently there are many incorrect clients out there that would misbehave if the server does this. And this is just one example.
The test you have used (with a single 4-byte variable) is actually the most harsh that can be made, and not very realistic. No matter which toolkit you use, you should combine as many nodes as possible into a single call. I believe that if you repeat the measurements with e.g. 1000 nodes in each call, the results will be better for QuickOPC (though probably still not as fast as native C/C++ toolkits).
Best regards
Please Log in or Create an account to join the conversation.
- pfp.meijers
-
Topic Author
- Offline
- Senior Member
-
- Posts: 4
- Thank you received: 0
They all talk to the same server. Reading a single int32 variable value in a loop during 1 second. The transaction time statistics (durations of the do_ipc() call) are listed.
I added a first dummy transaction in the setup function to cancel out the initial overhead.
For a real application we indeed would use a monitoring approach (push, instead of pull). But for now I use this to measure communication speed of the stack.
Please Log in or Create an account to join the conversation.
And, here are some factors that may influence the performance:
1. First time you read, a connection process must take places. Therefore the first operation can take considerably longer, and that would be normal.
2. How frequently do you call the operation (Read?). If you make a delay longer than a (configurable) "hold period" (default to couple of seconds), EasyUAClient would disconnect, and then the connection process (under #1 above) would have to take place again, making it slower.
3. The default read parameters (an object that can be passed to the ReadXXXX method) specify a max age of 1 second. This means that the server must obtain each value form the device if it does not have a "fresh enough" value, younger than 1 second. This, of course, can take time - this depends on the server, the protocol etc. The max age can be changed from your side.
Note that any periodic reads of the same tags over and over are not a good idea in OPC world, performance-wise. Such read loop is better replaced by a subscription.
Best regards
Please Log in or Create an account to join the conversation.
- pfp.meijers
-
Topic Author
- Offline
- Senior Member
-
- Posts: 4
- Thank you received: 0
For some reason it is much slower than expected.
Maybe I am doing something fundamentally wrong?
See code below.
The setup_ipc() function is called once and next the do_ipc() function is called in a loop many times, measuring its duration. The ipc.h file contains global variables such as server, port, variable name, array size/count, etc. which are set by the application.
Please Log in or Create an account to join the conversation.
- pfp.meijers
-
Topic Author
- Offline
- Senior Member
-
- Posts: 4
- Thank you received: 0
Please Log in or Create an account to join the conversation.