Go to file
devad ad3a651558 ♻️ refactor RegisterParticipant impl
Signed-off-by: devad <cossjie@foxmail.com>

Former-commit-id: 9ff3815f5643a7b10638528127129988c58c9772
2023-07-26 18:28:36 +08:00
api 移除service——name 2023-07-26 17:33:29 +08:00
deploy/goctl/1.5.3 feat: Add registerParticipant impl 2023-07-24 17:33:00 +08:00
model 移除service——name 2023-07-26 17:33:29 +08:00
rpc ♻️ refactor RegisterParticipant impl 2023-07-26 18:28:36 +08:00
.gitignore feat: Add schedule model 2023-07-21 10:06:44 +08:00
LICENSE Initial commit 2022-03-01 22:24:21 +08:00
Makefile feat: 增加pcm-ceph容器话配置文件 2023-04-26 14:51:20 +08:00
README.md remove .git suffix 2023-07-14 08:47:26 +08:00
go.mod ♻️ refactor RegisterParticipant impl 2023-07-25 11:18:42 +08:00
go.sum ♻️ refactor RegisterParticipant impl 2023-07-25 11:18:42 +08:00

README.md

PCM: Peer Collaboration Mechanism

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.

pcm

Requirements


Quick Start


# clone
git clone https://gitlink.org.cn/JCCE/PCM

# get required packages
go mod tidy

# build pcm components
make build

# start service
nohup ./pcm-gateway &> pcm-gateway.log &
nohup ./pcm-pod &> pcm-pod.log &
nohup ./pcm-vm &> pcm-vm.log &
nohup ./pcm-slurm &> pcm-slurm.log &

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.