Formulas

Be aware of the following formulas in order to identify when a process of outgoing messages are suspended or resumed.

Using Default Load Capacity

  • Node(Member) Load Capacity: MLC= DLC *PCN/ MRUN
    • DLC = default load capacity
    • PCN= Number of different PC in execution status (e.g PC1+ PC2 = 2).
    • MRUN = sum of running Members.
  • Node(Member) Activation Threshold: ACT=MLC*PER
    • PER= Activation Threshold as a % of Load Capacity for throttling
  • Suspend Condition: TC>MLC
    • TC = Total Count of Planitems in execution status.
  • Resume Condition: TC< ACT
    • TC = Total Count of Planitems in execution status.

Using Individual Load Capacity

  • Node(Member) Load Capacity: MLC=SLC / MRUN
    • SLC = sum of PC load capacity(Using the property file)
    • MRUN = sum of Members that are only running
  • Node(Member) Activation Threshold: ACT=MLC*PER
    • PER= Activation Threshold as a % of Load Capacity for throttling
  • Suspend Condition per Member: TCM>MLC
    • TCM = Total Count of Planitems in execution status for a Member
  • Resume Condition: TCM< ACT
    • TCM = Total Count of Planitems in execution status for a Member

Mixing Default and Individual Load Capacity

  • Node(Member) Load Capacity: MLC=S LC / MRUN
    • SLC = sum of PC load capacity(Using the Property file) +( number of unregistered PC*Default Load Capacity)
      • Unregistered PC = PC’s that are not included in the Property File, those PC’s will use the Default Load Capacity
    • MRUN = sum of Members that are only running
  • Node(Member) Activation Threshold : ACT=MLC*PER
    • PER= Activation Threshold as a % of Load Capacity for throttling
  • Suspend Condition per Member: TCM>MLC
    • TCM = Total Count of Planitems in execution status for a Member
  • Resume Condition: TCM< ACT
    • TCM = Total Count of Planitems in execution status for a Member