From Friday, April 19th (11:00 PM CDT) through Saturday, April 20th (2:00 PM CDT), 2024, ni.com will undergo system upgrades that may result in temporary service interruption.

We appreciate your patience as we improve our online experience.

LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Sharing ethernet fieldpoint

We need to build a redundant data acquisition system with 2 PCs, one of them would intervene whenever the other fails.
The task is to acquire data from some instruments and manage light and acoustic alarm devices using relays.

The question is: it's possible to use one (or more) fieldpoint for the relay output, given that programs on both PCs are running simultaneously?
Remark that actual writings on the fieldpoint should not be simultaneous, only one of the programs at a time need to manage this.

Thanks

Paolo
Paolo
-------------------
LV 7.1, 2011, 2017, 2019, 2021
0 Kudos
Message 1 of 3
(2,105 Views)

You can call an FP from 2 different PCs at the same time with no problems. You will need to determine which PC is the master so that the other PC will avoid setting outputs on the FP when it's not a master. You can place some code on the FP which will decide which PC is the master and inform the PCs.

The real trick in such a system is making sure that both PCs are synchronized so that when the master PC drops the slave can take over flawlessly. Another problem is what to do if you want to use the slave PC as a UI access point to your system. Since you have the same program running on both sides (so you can have your hot backup) you have to figure out ways to do things differently when the PC is not the master - it needs to send requests to the master which can then decide what to do. You also need to decide what to do with data which is missing because the computer was disconnected.

I have written such a system employing several PCs and FPs and designed to be extensible and I can tell you this is not a simple thing if you want full functionality in your slave PC and if you want to make sure you don't miss anything. What you might want to do is use a single PC as the UI PC and have both PCs log the data all the time and combine it later.


___________________
Try to take over the world!
Message 2 of 3
(2,102 Views)
Thank you for the useful answer.
Actually I plan to build a system where both PCs are aware to each other. The slave should disable most of the UI, taking relevant parameters, statuses and current data from the master until possible. When the master fails, it should take over the acquisition and enable complete UI functionality. Details are still to be defined, though.
Thanks again, tst.

Paolo
Paolo
-------------------
LV 7.1, 2011, 2017, 2019, 2021
0 Kudos
Message 3 of 3
(2,094 Views)