12345678910111213141516171819202122232425262728293031 |
- package models
- type ClusterConfig struct {
- FirstPart ClusterfirstPart
- SecondParts []ClustersecondPart
- }
- type ClusterfirstPart struct {
- MaxNodes string
- MasterGrps string
- Protocol string
- MsgPortNum string
- MaxSendWin string
- MsgHaveCRC string
- MergeSmallMsg string
- MsgSize string
- Timeout string
- RPCWindow string
- EJEWindow string
- MaxShakeTime string
- MyNID string
- CheckRack string
- }
- type ClustersecondPart struct {
- NID string
- RACK string
- PORTS string
- ROLE string
- LPU string
- StoreWeight string
- STATE string
- }
|