Trigger Resetting in SQL Bridge Module

Look at your device status screen on the gateway. What is the overload factor on the 50ms poll group? I would bet money its more than 0%. Normally Ignition's drivers don't do well beyond 250ms, if you have pturmel's ethernet/IP driver, you can get to 100ms with work done on the PLC side for optimization.

Consider the approach outlined in this post:

It basically boils down to having a ring buffer in your PLC that stores enough data for x seconds of runtime and offloads in smaller chunks of y seconds at slower poll rate in Ignition. This does mean scripting the transaction instead of using the SQL bridge module.

1 Like