Hello.
I would like to receive some guiding in how enhance my application. I am collecting data from different PLCs, I am using regular transaction groups for logging data in a SQL server, I use integer tag as a trigger and I save the timestamp when the trigger was set to "1". I am checking my DB and I noticed there is a huge difference between the trigger change its value and when the data arrives.
This is the configuration for the transaction group I am using
Trigger change is managed by a gateway Script executed every second, in the DB omq_createdateGroup corresponds to the time when the trigger is ON and omq_createdate is a column with default query for getting current timestamp.
What do you recommend me to change? I understand a delay of 1 or 2 seconds is expected due to Gateway Script delay execution but more time seems something is wrong.
Post code, not pictures of code. It helps to speed up responses by letting people copy and paste instead of reading and typing. Please see Wiki - how to post code on this forum.
You can edit your post by clicking the pencil icon in the bottom right.
If you are triggering the transaction from a gateway script, you might as well just do the sql insert from that script, it will be faster and the entire transaction control and process will be in one place. You can define a named query and call it from that script. Or assemble the query on the fly and use system.db.runPrepUpdate
Additionally, I'm pretty sure you can consolidate a lot of your tag writes into fewer calls to system.tag.writeBlocking
. It accepts a list of tags and list of values.
2 Likes
Do you have store and forward enabled on these transaction groups? If you do, the success/failure handshake only means that the "store" succeeded, not that the record has actually been delivered to the DB by the "forward" operation.
If you have complex trigger/handshake requirements, I strongly recommend you not use transaction groups at all, but script all of your operations. Also, when writing scripts, be sure to merge tag reads into as few system.tag.readBlocking()
calls as possible, and merge OPC reads into as few system.opc.readValues()
as possible. Similar for writes.
3 Likes