You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

slurm_node.proto 1.1 kB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. syntax = "proto3";
  2. package slurm;
  3. option go_package = "/slurmpb";
  4. import "idl/static.proto";
  5. message NodeInfo{
  6. string Arch = 1 ;
  7. uint32 Boards = 2 ;
  8. int64 Boot_time = 3 ;
  9. uint32 Cores = 4 ;
  10. uint32 Cpu_load = 5 ;
  11. uint32 Cpus = 6 ;
  12. string Features = 7;
  13. string Gres = 8 ;
  14. string Name = 9 ;
  15. string Node_addr = 10 ;
  16. string Node_hostname = 11 ;
  17. uint32 Node_state = 12 ;
  18. string Os = 13 ;
  19. uint64 Real_memory = 14 ;
  20. string Reason = 15 ;
  21. int64 Reason_time = 16 ;
  22. uint32 Reason_uid = 17 ;
  23. int64 Slurmd_start_time = 18 ;
  24. uint32 Sockets = 19 ;
  25. uint32 Threads = 20 ;
  26. uint32 Tmp_disk = 21 ;
  27. uint32 Weight = 22 ;
  28. }
  29. message ListNodesReq{
  30. SlurmVersion slurm_version = 1;
  31. }
  32. message ListNodesResp {
  33. repeated NodeInfo node_infos = 1;
  34. }
  35. message GetNodeReq{
  36. SlurmVersion slurm_version = 1;
  37. string node_name = 2;
  38. }
  39. message GetNodeResp {
  40. repeated NodeInfo node_infos = 1;
  41. }
  42. /*message Nodes_info_msg{
  43. int64 Last_update =1;
  44. uint32 Record_count =2;
  45. uint32 Error_code =3;
  46. repeated NodeInfo node_infos =4;
  47. }*/

PCM is positioned as Software stack over Cloud, aiming to build the standards and ecology of heterogeneous cloud collaboration for JCC in a non intrusive and autonomous peer-to-peer manner.