Opcua Operations Limit #1548
-
Hello, i have an Error (specifically, opcua.ua.uaerrors._auto.BadNotSupported) i know that the server only process 50 operations per second .when executing my code. This issue arises due to the numerous requests made at the beginning of the script. I'm seeking guidance on how to modify my script to obtain the first 70 nodes just once during the initial script execution, even as it enters the subscription phase. How can I achieve this?
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
for subscribing large numbers of nodes: for reading multiple nodes at once: opcua-asyncio/asyncua/client/client.py Line 906 in b9e2af4 |
Beta Was this translation helpful? Give feedback.
then use "read_values(node_list)" -> it creates just one request/response and is most efficient!
currently you ask in a for loop -> request/response x length of your list which is inefficient