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.

README.md 1.5 kB

3 years ago
12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. # PCM: Peer Collaboration Mechanism
  2. PCM is positioned as Software stack over Cloud, aiming to build the standards and ecology of heterogeneous cloud collaboration in a non intrusive and autonomous peer-to-peer manner. It focuses on how to make full use of the computing and storage capabilities of multiple source clouds without changing the heterogeneous cloud computing software stack, rather than implementing a new cloud software stack. From the cloud perspective, PCM superimposes on the cloud and focuses more on collaboration between clouds than on the cloud itself.
  3. ![pcm](docs/imges/pcm.png)
  4. ## Requirements
  5. ---
  6. * Linux amd64
  7. * [Slurm-2-6-9-1](https://github.com/SchedMD/slurm/archive/refs/tags/slurm-2-6-9-1.tar.gz)
  8. * [Go](https://go.dev/) 1.19 or higher
  9. * [GCC](https://gcc.gnu.org/) 4.8.5 or higher
  10. ## Quick Start
  11. ---
  12. ```
  13. # clone
  14. git clone https://gitlink.org.cn/JCCE/PCM
  15. # get required packages
  16. go mod tidy
  17. # build pcm components
  18. make build
  19. # start service
  20. nohup ./pcm-gateway &> pcm-gateway.log &
  21. nohup ./pcm-pod &> pcm-pod.log &
  22. nohup ./pcm-vm &> pcm-vm.log &
  23. nohup ./pcm-slurm &> pcm-slurm.log &
  24. ```
  25. If the startup is successful, the 'gateway' will listen on the '8880' port by default, and no error is reported in the log. The above is a simple demonstration using nohup. It is recommended that the production environment should be hosted by systemd. The relevant service files can be found in the etc/service directory for reference.

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.