Limit on reading nodes? #594
-
I've tested opcua async python and my server can handle one request reads 500, 1000, 1500, and 2000. With go lib I made a ua.ReadValueId array and passed it to the ua.ReadRequest I can read a handful of items, but I tried 500 and instantly got a read timeout request. What's the best way to read lots of nodes? My server can handle it. |
Beta Was this translation helpful? Give feedback.
Answered by
magiconair
Nov 14, 2022
Replies: 1 comment 1 reply
-
You might need to adjust the |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
TheFern2
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You might need to adjust the
ReadBufferSize
,WriteBufferSize
and theMaxChunkCount
to allow larger packages.