cluster.go 655 B

12345678910111213141516171819202122232425262728293031
  1. package models
  2. type ClusterConfig struct {
  3. FirstPart ClusterfirstPart
  4. SecondParts []ClustersecondPart
  5. }
  6. type ClusterfirstPart struct {
  7. MaxNodes string
  8. MasterGrps string
  9. Protocol string
  10. MsgPortNum string
  11. MaxSendWin string
  12. MsgHaveCRC string
  13. MergeSmallMsg string
  14. MsgSize string
  15. Timeout string
  16. RPCWindow string
  17. EJEWindow string
  18. MaxShakeTime string
  19. MyNID string
  20. CheckRack string
  21. }
  22. type ClustersecondPart struct {
  23. NID string
  24. RACK string
  25. PORTS string
  26. ROLE string
  27. LPU string
  28. StoreWeight string
  29. STATE string
  30. }