Formulas

Be aware of the following formulas 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 (Example: 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 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