opc ua client get value very slow|OPC UA Standard|Forum|OPC Foundation

Avatar
Search
Forum Scope


Match



Forum Options



Minimum search word length is 3 characters - maximum search word length is 84 characters
Lost password?
sp_Feed sp_PrintTopic sp_TopicIcon
opc ua client get value very slow
Avatar
Stitch35
Member
Members
Forum Posts: 9
Member Since:
06/04/2018
sp_UserOfflineSmall Offline
1
10/24/2018 - 01:43
sp_Permalink sp_Print sp_EditHistory

I have 1000 tag 

every 1 sec I want to read 1000 tag

 

foreach (var eachTag in Tag)
{
    DataValue read = session.ReadValue(eachTag.NodeId);

}

1000 tag Time elapsed: 00:00:15.1166664

Avatar
Paul Hunkar
Cleveland, Ohio, USA
Moderator
Members

Moderators-Specifications

Moderators-Companion

Moderators-Implementation

Moderators-Certification

Moderators-COM
Forum Posts: 109
Member Since:
02/24/2014
sp_UserOfflineSmall Offline
2
10/25/2018 - 13:39
sp_Permalink sp_Print

Why would you want to read 1000 tags, why not use subscriptions?  OPC UA is designed to have a very efficient system for getting the latest value of a variable.  Reads are used to get static information from a system, or to get a single value (i.e. not something that is updated periodically).

In any case if you are reading - why issue a 1000 single point reads vs one read for 1000 points?  you have created a lot of round trips to the server.

  So the last question would be what server are you communicating with?  what is the network speed?  a small embedded device will perform very differently from a large server.

Paul Hunkar - DSInteroperability

Forum Timezone: America/Phoenix
Most Users Ever Online: 510
Currently Online:
Guest(s) 20
Currently Browsing this Page:
1 Guest(s)
Top Posters:
Forum Stats:
Groups: 2
Forums: 10
Topics: 1349
Posts: 4579