Is there a limit to how many events per second the PI Web API can send to the data archive?

We are working with a PI Adapter and are egressing the data to the PI Web API. I believe the adapter has the ability to send 20k events per second to the PI Web API but that the PI Web API can only comfortably accept 4-9k events per second. Does that mean the PI Web API can also only send 4-9k events per second to the data archive? If we have more than 9k tags that we want sent to the PI Web API, do we have to create additional PI Web API instances?

Parents
  • Hi,

     

    There is also a bug in the OPC UA adapter when dealing with enumeration types of signals e.g. RUNNING/STOPPED/STANDBY or TRUE/FALSE or OPEN/CLOSE.

     

    The adapter tries to create a new Digital State for each and every tag, without considering the fact that multiple tags have the same set of enums. e.g. if you have 1000 valves and there are then 1000 tags which can say OPEN/CLOSE, then the adapter will first start to create 1000 digital states in your PI Data Archive before it writes a single data point. The effect is that (1) your digital states list will be a total mess, and (2) it may seem like there is a performance limit at the webAPI.

     

    This is contrasted with the OPC UA Connector which is aware that multiple tags may share a single Digital State, and does not create a mess in that case.

Reply
  • Hi,

     

    There is also a bug in the OPC UA adapter when dealing with enumeration types of signals e.g. RUNNING/STOPPED/STANDBY or TRUE/FALSE or OPEN/CLOSE.

     

    The adapter tries to create a new Digital State for each and every tag, without considering the fact that multiple tags have the same set of enums. e.g. if you have 1000 valves and there are then 1000 tags which can say OPEN/CLOSE, then the adapter will first start to create 1000 digital states in your PI Data Archive before it writes a single data point. The effect is that (1) your digital states list will be a total mess, and (2) it may seem like there is a performance limit at the webAPI.

     

    This is contrasted with the OPC UA Connector which is aware that multiple tags may share a single Digital State, and does not create a mess in that case.

Children
No Data