setting up opc ua moniotring for the first time , can i use this to read 60k tags at once every minute #412
-
I working on ua client for one of the projects. i recently stared with golang and wanted to be sure the solution will work for ua. |
Beta Was this translation helpful? Give feedback.
Answered by
magiconair
Mar 26, 2021
Replies: 1 comment 3 replies
-
I think 60k nodes in a single read might be pushing it since the response most likely exceeds the maximum response size. I think that this will probably also put some burden on your UA server. I would suggest you spread this out over the minute. Even 1000 tags per second might be a lot. The library can handle it. I'm just not sure if the protocol or the UA server can. |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
magiconair
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I think 60k nodes in a single read might be pushing it since the response most likely exceeds the maximum response size. I think that this will probably also put some burden on your UA server. I would suggest you spread this out over the minute. Even 1000 tags per second might be a lot. The library can handle it. I'm just not sure if the protocol or the UA server can.