Solution
As the error message says, the reason for this error is that you're reaching the limit of tag writes per second. One of the reasons for it might be hidden in your code. For example, when writing multiple tags, you should first create an array of clusters containing tag information using the Generate Tag Cluster.vi, to then write them all at once using the the Multi Write.vi. If this array grows unexpectedly, you'll eventually get the error -251927.
The code snippet below shows an example of an accidental uninitialized shift register that is causing the tag array to indefinitely grow up at every while loop iteration increasing the value of Number of Tag Values to be Written indicator increases.
In this case, the solution is to initialize the shift register with an empty array constant. If you do that an monitor the value of Number of Tag Values To Be Written, you'll see it remains constant, which is the expected behavior.
